Files
FX-ML-Trading-Engine/QuantTrader/config/usdjpy_multi_strategy.yaml
T
2025-11-14 22:56:44 +00:00

47 lines
819 B
YAML

symbol: USDJPY
csv: QuantResearch/data/raw/USDJPY_H1_full.csv
cash: 100000
qty: 10000
account_ccy: USD
fast: 20
slow: 80
spread: 2.0
slip: 0.3
comm: 0.25
atr_sl: 1.5
atr_tp: 3.0
atr_window: 14
risk_per_trade_pct: 0.01
max_drawdown_pct: 0.05
allow_short: true
strategy_mode: weighted
strategy_vote_threshold: 0.0
strategies:
- name: xgb_signal
weight: 0.4
params:
prob_long: 0.64
prob_exit: 0.50
cooldown_bars: 8
size_mult: 1.0
- name: ma_crossover
weight: 0.35
params:
size_mult: 1.0
cooldown_bars: 8
exit_buffer_pct: 0.0004
allow_short: true
- name: momentum_breakout
weight: 0.25
params:
lookback: 36
enter_threshold: 0.0012
exit_threshold: 0.0005
size_mult: 1.0
allow_short: true
cooldown_bars: 10