Buy Steady Climber
- Experts
- Versão: 1.2
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
-- Grid Setting --
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
-- Target Setting --
input long TakeTarget = 1000 // Profit target above the volume-weighted entry (points)
