Files
quant-trading-strategy-temp…/templates/xauusd-atr-breakout/quant.config.json
T

32 lines
716 B
JSON
Raw Normal View History

2026-04-06 10:59:38 +00:00
{
"pair": "XAUUSD",
2026-04-07 21:29:29 +00:00
"timeframe": "1m",
"model_family": "custom Python",
2026-04-06 13:40:10 +00:00
"runtime_target": "modal",
2026-04-06 10:59:38 +00:00
"artifact_format": "python_bundle",
"parameters": {
2026-04-06 15:33:49 +00:00
"lookback": 96,
2026-04-06 10:59:38 +00:00
"atr_window": 14,
2026-04-07 21:29:29 +00:00
"breakout_window": 45,
"atr_mult": 0.02,
2026-04-06 15:33:49 +00:00
"near_breakout_atr": 0.18,
"pullback_atr": 0.35,
2026-04-07 20:52:31 +00:00
"min_momentum_atr": 0,
2026-04-06 15:33:49 +00:00
"fast_ema": 8,
2026-04-07 20:52:31 +00:00
"slow_ema": 34,
"enable_near_breakout": false,
"enable_continuation": false
2026-04-06 10:59:38 +00:00
},
2026-04-06 13:40:10 +00:00
"training_requirements": [
"numpy",
"pandas"
],
"inference_requirements": [
"numpy",
"pandas"
],
"symbol": "XAUUSD",
"description": "XAUUSD ATR breakout rule baseline",
"disclaimer": "Educational template only. Not financial advice."
2026-04-06 10:59:38 +00:00
}