You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

79 lines
2.1 KiB
YAML

# ORB Strategy — Aggressive Configuration (high-return target)
# Same signals as orb_default (max_candidates=20, min_rvol=1.0)
# Only changes: 8x position sizing (2% risk, 60% cap) and tighter SPY filter
strategy_mode: orb
orb_strategy:
# ORB window
orb_minutes: 5
sim_bar_minutes: 30 # 30-min bars for breakout/stop management (ORB candle stays 5-min)
# Entry — identical to default
entry_direction: long_only
order_timeout_minutes: 45
# Universe quality filters — identical to default
min_price: 10.0
min_avg_dollar_volume: 25000000
min_atr_14: 0.50
# RVOL-based candidate selection — identical to default (keep the 51% WR edge)
min_rvol: 1.0
max_candidates: 20
min_candidates_to_trade: 3
# Composite ranking weights — identical to default
weight_rvol: 0.60
weight_gap: 0.25
weight_dollar_vol: 0.15
# ATR-based stop management — identical to default
atr_stop_multiplier: 0.50
breakeven_at_r: 1.0
trailing_at_r: 2.0
# AGGRESSIVE position sizing — 8x default
risk_per_trade_pct: 0.02 # 2% risk per trade (vs 0.25% default)
max_position_pct: 0.60 # 60% max per position (vs 20% default)
daily_max_loss_pct: 0.06 # 6% daily loss limit (vs 1.25% default)
max_stops_per_day: 5 # 5 stops (vs 3 default)
# Exit — identical to default
exit_minutes_before_close: 5
# Execution
slippage_bps: 5.0
initial_capital: 10000
ticker_cooldown_days: 0
# Cash account GFV constraint (same as orb_default)
settlement_days: 1
# Max opening gap filter (same as orb_default)
max_gap_pct: 0.03
# Market regime — ETF gap filter disabled (breadth filter below is superior)
market_regime_spy_threshold: null
# Candidate breadth: disabled (per-trade risk controls sufficient, no filter = higher return)
min_candidate_breadth: null
universe:
source: midlarge
min_price: 10.0
backtest:
start_date: null
end_date: null
lookback_trading_days: 200
pre_screen_threshold: 0.01
cache:
enabled: true
dir: data/cache/intraday
output:
dir: runs/intraday_orb
verbose: false