mirror of
https://github.com/PyP-Quant/quant-trading-strategy-templates.git
synced 2026-08-21 22:58:06 +00:00
25 lines
525 B
JSON
25 lines
525 B
JSON
{
|
|
"pair": "XAUUSD",
|
|
"timeframe": "15m",
|
|
"model_family": "custom Python",
|
|
"runtime_target": "modal",
|
|
"artifact_format": "python_bundle",
|
|
"parameters": {
|
|
"lookback": 64,
|
|
"atr_window": 14,
|
|
"breakout_window": 12,
|
|
"atr_mult": 0.05
|
|
},
|
|
"training_requirements": [
|
|
"numpy",
|
|
"pandas"
|
|
],
|
|
"inference_requirements": [
|
|
"numpy",
|
|
"pandas"
|
|
],
|
|
"symbol": "XAUUSD",
|
|
"description": "XAUUSD ATR breakout rule baseline",
|
|
"disclaimer": "Educational template only. Not financial advice."
|
|
}
|