mirror of
https://github.com/PyP-Quant/quant-trading-strategy-templates.git
synced 2026-08-20 06:13:00 +00:00
32 lines
716 B
JSON
32 lines
716 B
JSON
{
|
|
"pair": "XAUUSD",
|
|
"timeframe": "1m",
|
|
"model_family": "custom Python",
|
|
"runtime_target": "modal",
|
|
"artifact_format": "python_bundle",
|
|
"parameters": {
|
|
"lookback": 96,
|
|
"atr_window": 14,
|
|
"breakout_window": 45,
|
|
"atr_mult": 0.02,
|
|
"near_breakout_atr": 0.18,
|
|
"pullback_atr": 0.35,
|
|
"min_momentum_atr": 0,
|
|
"fast_ema": 8,
|
|
"slow_ema": 34,
|
|
"enable_near_breakout": false,
|
|
"enable_continuation": false
|
|
},
|
|
"training_requirements": [
|
|
"numpy",
|
|
"pandas"
|
|
],
|
|
"inference_requirements": [
|
|
"numpy",
|
|
"pandas"
|
|
],
|
|
"symbol": "XAUUSD",
|
|
"description": "XAUUSD ATR breakout rule baseline",
|
|
"disclaimer": "Educational template only. Not financial advice."
|
|
}
|