Portfolio Replication

Free JSON endpoints to replicate our 5 specialized scanner strategies. Updated every trading session (~23:00 UTC weekdays).

Live No auth 49 endpoints 6 modes

Quick Start

1

Fetch signals

Call /portfolio/v1/{mode}/signals.json after the scan to get picks with entry, stop, and target levels.

2

Track positions

Use /portfolio/v1/{mode}/positions.json to see current open positions with live P&L and days remaining.

3

Allocation

Turbo: 1 slot (100%, all strategies).
Dynamic: 1 slot (100%, all strategies).
Balanced: 3 slots (33% ea, mom_bo filter).
Secured: 2 slots (50% ea, breakout_only).
Fortress: 4 slots (13% ea, half-sized, mom_bo).

Endpoints

Default conservative strategy with 2 slots and balanced risk/reward parameters.

GET /portfolio/v1/signals.json Latest scanner signals
Loading...
GET /portfolio/v1/positions.json Open positions with P&L
Loading...
GET /portfolio/v1/trades.json Closed trade history
Loading...
GET /portfolio/v1/equity.json Stats + equity curve
Loading...
GET /portfolio/v1/orders.json Buy/rotate orders to place
Loading...
GET /portfolio/v1/actions.json Positions to close or check
Loading...
GET /portfolio/v1/all.json Full state — feed to any LLM
Loading...

OpenAPI 3.0

openapi.yaml 3.0.3 Download

Full OpenAPI 3.0.3 specification with schemas, examples, and descriptions for all 7 endpoints. Import into Swagger UI, Postman, or any OpenAPI-compatible tool. Open interactive docs →

Code Examples

# Fetch the latest signals for the balanced mode
curl -s https://articles.dailytickers.com/portfolio/v1/balanced/signals.json | jq .

# All modes at once
for m in turbo dynamic balanced secured fortress; do
  curl -s https://articles.dailytickers.com/portfolio/v1/$m/signals.json \
    | jq -c '{mode, date, count: (.signals|length)}'
done

# Full state in one call (positions + signals + trades + equity)
curl -s https://articles.dailytickers.com/portfolio/v1/balanced/all.json \
  | jq '{stats, positions: (.positions|length), signals: (.signals|length)}'

Endpoints are plain public JSON, no auth, CORS open. The same path exists under each mode prefix: /portfolio/v1/{turbo|dynamic|balanced|secured|fortress}/{resource}.json.

Related

Portfolio Live

Real-time dashboard with equity curve, open positions, signals, and trade history.

/scanner/status/ →

Daily Scanner

Full analysis of 10 A+ setups published every weekday evening with charts and levels.

Scanner tab →

All Integrations

MCP Server, embeddable widgets, Chrome Extension, and more.

/integrations/ →

Disclaimer

For informational purposes only. Nothing on this page or in these endpoints constitutes financial advice, investment advice, or a solicitation to buy or sell any financial instrument. Past scanner performance is not indicative of future results. Always conduct your own due diligence before trading.