mirror of
https://github.com/PyP-Quant/quant-trading-strategy-templates.git
synced 2026-07-27 18:47:47 +00:00
29 lines
596 B
JSON
29 lines
596 B
JSON
{
|
|
"pair": "EURUSD",
|
|
"timeframe": "1h",
|
|
"model_family": "sklearn to ONNX",
|
|
"runtime_target": "container",
|
|
"artifact_format": "onnx",
|
|
"parameters": {
|
|
"lookback": 120,
|
|
"horizon": 3,
|
|
"threshold": 0.001,
|
|
"min_confidence": 0.5
|
|
},
|
|
"training_requirements": [
|
|
"numpy",
|
|
"pandas",
|
|
"scikit-learn",
|
|
"joblib",
|
|
"skl2onnx",
|
|
"onnx"
|
|
],
|
|
"inference_requirements": [
|
|
"numpy",
|
|
"onnxruntime"
|
|
],
|
|
"symbol": "EURUSD",
|
|
"description": "Sklearn classifier starter for ONNX export",
|
|
"disclaimer": "Educational template only. Not financial advice."
|
|
}
|