Skip to content

Commit

Permalink
Merge pull request #23 from EA31337/dev
Browse files Browse the repository at this point in the history
Sets Bulls Power as default strategy
  • Loading branch information
kenorb authored Sep 20, 2021
2 parents e3423e0 + 1040294 commit 43c64aa
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/include/inputs.h
Original file line number Diff line number Diff line change
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 ENUM_STRATEGY EA_Strategy = STRAT_ALLIGATOR; // Strategy
input group "Trading strategy"
#endif
input ENUM_STRATEGY EA_Strategy = STRAT_BULLS_POWER; // 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 All @@ -39,7 +39,7 @@ extern string __EA_Risk_Params__ = "-- Risk management --"; // >>> RISK <<<
#else
input group "Risk management"
#endif
input float EA_Risk_MarginMax = 5.0f; // Max margin to risk (in %)
input float EA_Risk_MarginMax = 1.0f; // Max margin to risk (in %)

#ifdef __MQL4__
input string __Logging_Params__ = "-- Logging & messaging --"; // >>> LOGS & MESSAGES <<<
Expand Down

0 comments on commit 43c64aa

Please sign in to comment.