From 1b44c0bc6824c35d03d75bf91cc87671a6f29f33 Mon Sep 17 00:00:00 2001 From: kenorb Date: Thu, 2 Sep 2021 14:00:02 +0100 Subject: [PATCH] Sets AC strategy by default --- src/include/inputs.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/include/inputs.h b/src/include/inputs.h index df62599..85bdc94 100644 --- a/src/include/inputs.h +++ b/src/include/inputs.h @@ -26,10 +26,10 @@ input string __EA_Params__ = ">> " + ea_name + " v" + ea_version + " build " + (string)(int)__DATETIME__ + " <<"; // >>> EA31337 Libre <<< #ifdef __MQL4__ input static string __EA_Strategy__ = "-- Trading strategy --"; // >>> TRADING STRATEGY <<< +input ENUM_STRATEGY EA_Strategy = STRAT_AC; // Strategy #else -input group "Trading strategy" +input group "Trading strategy" input ENUM_STRATEGY EA_Strategy = STRAT_ALLIGATOR; // Strategy #endif -input ENUM_STRATEGY EA_Strategy = STRAT_ALLIGATOR; // Strategy input unsigned int EA_Strategy_Active_Tf = (1 << H1) + (1 << H2) + (1 << H3) + (1 << H4) + (1 << H6) + (1 << H8); // Timeframes (M1=1,M2=2,M5=16,M15=256,M30=1024,H1=2048,H2,H3,H4,H6,H8)