FundedNext Buy Steady Climber
- Experts
- Version: 1.7
input group "General Settings"
input long MagicNumber = 1000; // Magic number for this EA
input double StartLots = 0.01; // Lots amount to start
input long MaxOrders = 3; // Maximum number of positions this EA can open
input bool PrintDebugLogs = false; // Print detailed logs true/false
input group "Risk Settings"
input double MaxLossInAccountCurrencyToSetStopLossForEachOrder = 0.0; // 0: disabled
input group "Grid Settings"
input bool EqualVolumeGrid = false; // true: all grid positions use StartLots
input long MinDistance = 1000; // Distance to open the next order (points)
input double MinDistanceMultiplier = 2.0; // Distance multiplier for each additional order
input group "Target Settings"
input long TakeTarget = 1000; // Profit target above the volume-weighted entry (points)
