mirror of
https://github.com/PyP-Quant/quant-trading-strategy-templates.git
synced 2026-08-18 21:18:05 +00:00
28 lines
638 B
JSON
28 lines
638 B
JSON
{
|
|
"pair": "AUDUSD",
|
|
"timeframe": "1m",
|
|
"model_family": "sklearn RandomForest",
|
|
"runtime_target": "edge",
|
|
"artifact_format": "weights_bundle",
|
|
"parameters": {
|
|
"lookback": 100,
|
|
"horizon": 1,
|
|
"threshold": 0.0004,
|
|
"min_confidence": 0.5
|
|
},
|
|
"training_requirements": [
|
|
"numpy",
|
|
"pandas",
|
|
"scikit-learn",
|
|
"joblib"
|
|
],
|
|
"inference_requirements": [
|
|
"numpy",
|
|
"pandas",
|
|
"scikit-learn",
|
|
"joblib"
|
|
],
|
|
"symbol": "AUDUSD",
|
|
"description": "AUDUSD multi-timeframe trend filter strategy using RandomForestClassifier",
|
|
"disclaimer": "Educational template only. Not financial advice."
|
|
} |