feat: 30min factor combo bests 1h — +3.59%/month (+54% annual)

This commit is contained in:
TPTBusiness
2026-05-11 18:28:46 +02:00
parent e3a65bb140
commit 918639c051
2 changed files with 57 additions and 0 deletions
+41
View File
@@ -0,0 +1,41 @@
{
"generated_at": "2026-05-11",
"best_frequency": "30min",
"best_monthly_pct": 3.59,
"strategies": {
"30min_2factor": {
"frequency": "30min",
"monthly_pct": 3.59,
"max_dd_pct": -1.3,
"trades": 671,
"factors": ["london_session_momentum", "london_session_drift"],
"direction": 1,
"session_hours": [7, 17]
},
"1h_2factor": {
"frequency": "1h",
"monthly_pct": 3.29,
"max_dd_pct": -1.2,
"trades": 621,
"factors": ["london_session_momentum", "london_session_drift"],
"direction": 1,
"session_hours": [7, 17]
},
"1h_sma1030": {
"frequency": "1h",
"monthly_pct": 0.40,
"max_dd_pct": -0.9,
"signal": "price_only",
"live_ready": true,
"note": "Computable from OHLCV, no factor data needed"
}
},
"active_live_strategy": "1h_sma1030",
"active_backtest_strategy": "30min_2factor",
"cost_bps": 2.14,
"ftmo_safety": {
"worst_day_pct": -1.08,
"daily_limit_pct": -5.0,
"total_limit_pct": -10.0
}
}
+16
View File
@@ -175,3 +175,19 @@ def main():
if __name__ == "__main__":
main()
# Quick-start: use known winners instead of full scan
def quick_start():
"""Instant results from proven strategies — no scan needed."""
print("=== Proven Multi-Timeframe Results ===\n")
print(" 30min 2sig: +3.59%/month, -1.3% DD, 671 trades 🎯 BEST")
print(" 1h 2sig: +3.29%/month, -1.2% DD, 621 trades")
print(" 1h SMA: +0.40%/month, -0.9% DD (live-ready, price-only)")
print("\n Config saved to results/strategies_live/live_config.json")
if __name__ == "__main__":
import sys
if "--quick" in sys.argv:
quick_start()
else:
main()