mirror of
https://github.com/PyP-Quant/quant-trading-strategy-templates.git
synced 2026-08-07 07:47:47 +00:00
952 B
952 B
How To Use These Templates
Each folder is a PyP Quant project skeleton. Copy the files into a new PyP Quant project and run training from the dashboard.
Required Files
strategy.pycontainstrain()andpredict().quant.config.jsondeclares pair, timeframe, model family, artifact format, and requirements.README.mdexplains the project intent and tuning knobs.
Recommended Workflow
- Train the model.
- Run PPE simulation.
- Inspect trade count, drawdown, profit factor, win rate, and session behavior.
- Adjust label thresholds or signal gates.
- Train again.
- Deploy only after out-of-sample validation.
Common Tuning Knobs
threshold: minimum forward move for UP/DOWN labels.horizon: bars ahead used for training labels.min_confidence: inference confidence gate.lookback: bars required before prediction.sl_percentandtp_percent: stop-loss and take-profit defaults for simulations.