Fix missing input declarations in OrdersEA_Smart_Grid

Added missing input variables:
- input int EquityFactorPercent= 0;
- input int LotsFactorPercent= 0;

These were referenced in CalcLots() function but not declared.
This commit is contained in:
2026-03-24 15:02:01 -04:00
parent 0a26f3469f
commit 2bdaee0fe5

View File

@@ -53,6 +53,8 @@ input string OpenNewTrades="Y";
input bool Opposite= false;
input int TakeProfitLevelPercent= 50;
input int TakeProfitLevelDollarAmount= 2000;
input int EquityFactorPercent= 0;
input int LotsFactorPercent= 0;
input int BaseEquity= 10000;
input bool Master= false;
input bool DiagnosticModeOn= false;