Files
biggfish/config/config.example.json
T
sami7777 82c68fa8b0 Scalping strategy overhaul: bidirectional trading, oil/JPY focus
- Switch to oil stocks (USO, XLE, OXY, CVX, XOM, SLB, HAL, DVN, MPC, VLO)
- Add JPY/USD forex pairs for Japan targeting
- 7-action RL space: long, short, close (was 5 long-only actions)
- Bollinger Band mean-reversion scalp entries both directions
- 5-minute candles with 60-second cycles for scalping
- 35 features (added VWAP, fast RSI, fast ROC for scalping)
- Short position support in backtest, executor, and RL environment
- GA tuned for scalping: tighter SL/TP, shorter hold times

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-03-12 16:45:19 -07:00

38 lines
944 B
JSON

{
"alpaca": {
"api_key": "YOUR_ALPACA_PAPER_API_KEY",
"secret_key": "YOUR_ALPACA_PAPER_SECRET_KEY",
"base_url": "https://paper-api.alpaca.markets"
},
"trading": {
"initial_capital": 100,
"target_capital": 1000,
"max_position_size_pct": 20,
"max_daily_loss_pct": 5,
"max_total_loss_pct": 15,
"require_approval": true
},
"portfolio": {
"small_cap_threshold": 2000000000,
"mid_cap_threshold": 10000000000,
"initial_focus": "small_cap",
"transition_rules": {
"at_200": "80% small, 20% mid",
"at_400": "60% small, 30% mid, 10% large",
"at_700": "40% small, 30% mid, 30% large"
}
},
"research": {
"screening_interval_hours": 6,
"news_check_interval_hours": 2,
"max_watchlist_size": 50,
"min_volume": 500000,
"min_price": 2.0
},
"reporting": {
"daily_report_time": "16:30",
"telegram_enabled": true,
"save_to_file": true
}
}