Skip to content

Commit

Permalink
Sets AC strategy by default
Browse files Browse the repository at this point in the history
  • Loading branch information
kenorb committed Sep 2, 2021
1 parent 8e926b6 commit 1b44c0b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/include/inputs.h
Expand Up @@ -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)
Expand Down

0 comments on commit 1b44c0b

Please sign in to comment.