mirror of
https://github.com/BrentNeale1/fx-quant.git
synced 2026-08-01 04:47:43 +00:00
17b80b7d17
Implemented and backtested 5 ranging-market M15 strategies across 3 periods (Training 2021-2023, Test Set 2023-2024, 2025) and 4 pairs (EUR_USD, GBP_USD, GBP_JPY, GBP_AUD). All 5 fail Phase 1 validation: - S17 BB Rejection: PF 0.55-0.92, -1208p on 2025 (347 trades) - S18 Failed Breakout: PF 0.53-0.84, -1905p on 2025 (747 trades) - S19 VWAP Deviation: PF 0.23-1.65, -87p on 2025 (37 trades) - S20 Range Compression: only 5 trades on 2025 (too restrictive) - S21 EMA Ribbon Bounce: PF 0.64-0.89, -3358p on 2025 (1088 trades) Also added midnight-reset VWAP indicator and downloaded 2025 M15 data for EUR_USD, GBP_JPY, GBP_AUD. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
118 lines
2.2 KiB
JSON
118 lines
2.2 KiB
JSON
{
|
|
"EUR_USD": {
|
|
"training": {
|
|
"trades": 233,
|
|
"wr": 45.5,
|
|
"pf": 0.68,
|
|
"sharpe": -2.79,
|
|
"pnl_pips": -512.2,
|
|
"max_dd_pips": -533.1,
|
|
"expectancy": -2.2
|
|
},
|
|
"test_set": {
|
|
"trades": 92,
|
|
"wr": 47.8,
|
|
"pf": 0.6,
|
|
"sharpe": -3.8,
|
|
"pnl_pips": -221.2,
|
|
"max_dd_pips": -228.3,
|
|
"expectancy": -2.4
|
|
},
|
|
"2025": {
|
|
"trades": 91,
|
|
"wr": 45.1,
|
|
"pf": 0.63,
|
|
"sharpe": -3.36,
|
|
"pnl_pips": -261.3,
|
|
"max_dd_pips": -355.4,
|
|
"expectancy": -2.87
|
|
}
|
|
},
|
|
"GBP_USD": {
|
|
"training": {
|
|
"trades": 205,
|
|
"wr": 47.3,
|
|
"pf": 0.77,
|
|
"sharpe": -1.86,
|
|
"pnl_pips": -456.6,
|
|
"max_dd_pips": -699.4,
|
|
"expectancy": -2.23
|
|
},
|
|
"test_set": {
|
|
"trades": 98,
|
|
"wr": 53.1,
|
|
"pf": 0.92,
|
|
"sharpe": -0.61,
|
|
"pnl_pips": -48.7,
|
|
"max_dd_pips": -126.6,
|
|
"expectancy": -0.5
|
|
},
|
|
"2025": {
|
|
"trades": 81,
|
|
"wr": 44.4,
|
|
"pf": 0.55,
|
|
"sharpe": -4.17,
|
|
"pnl_pips": -363.9,
|
|
"max_dd_pips": -373.7,
|
|
"expectancy": -4.49
|
|
}
|
|
},
|
|
"GBP_JPY": {
|
|
"training": {
|
|
"trades": 231,
|
|
"wr": 46.8,
|
|
"pf": 0.67,
|
|
"sharpe": -2.82,
|
|
"pnl_pips": -1115.2,
|
|
"max_dd_pips": -1274.8,
|
|
"expectancy": -4.83
|
|
},
|
|
"test_set": {
|
|
"trades": 126,
|
|
"wr": 43.7,
|
|
"pf": 0.67,
|
|
"sharpe": -2.9,
|
|
"pnl_pips": -661.8,
|
|
"max_dd_pips": -918.0,
|
|
"expectancy": -5.25
|
|
},
|
|
"2025": {
|
|
"trades": 91,
|
|
"wr": 42.9,
|
|
"pf": 0.69,
|
|
"sharpe": -2.78,
|
|
"pnl_pips": -506.0,
|
|
"max_dd_pips": -838.9,
|
|
"expectancy": -5.56
|
|
}
|
|
},
|
|
"GBP_AUD": {
|
|
"training": {
|
|
"trades": 240,
|
|
"wr": 49.6,
|
|
"pf": 0.84,
|
|
"sharpe": -1.28,
|
|
"pnl_pips": -528.7,
|
|
"max_dd_pips": -702.0,
|
|
"expectancy": -2.2
|
|
},
|
|
"test_set": {
|
|
"trades": 126,
|
|
"wr": 46.0,
|
|
"pf": 0.74,
|
|
"sharpe": -2.24,
|
|
"pnl_pips": -384.6,
|
|
"max_dd_pips": -410.5,
|
|
"expectancy": -3.05
|
|
},
|
|
"2025": {
|
|
"trades": 84,
|
|
"wr": 48.8,
|
|
"pf": 0.92,
|
|
"sharpe": -0.56,
|
|
"pnl_pips": -76.3,
|
|
"max_dd_pips": -216.1,
|
|
"expectancy": -0.91
|
|
}
|
|
}
|
|
} |