Free JSON endpoints to replicate our 5 specialized scanner strategies. Updated every trading session (~23:00 UTC weekdays).
Call /portfolio/v1/{mode}/signals.json after the scan to get picks with entry, stop, and target levels.
Use /portfolio/v1/{mode}/positions.json to see current open positions with live P&L and days remaining.
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).
Default conservative strategy with 2 slots and balanced risk/reward parameters.
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 →
# 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.
Real-time dashboard with equity curve, open positions, signals, and trade history.
/scanner/status/ →Full analysis of 10 A+ setups published every weekday evening with charts and levels.
Scanner tab →