MT5 Grid Expert Advisor
- Эксперты
- Priyanka Sahu
- Версия: 1.5
- Обновлено: 8 августа 2024
- Активации: 20
This Expert Advisor offers two strategies in one: you can choose between RSI-based or grid-based order placements. Additionally, it allows trading based on a specified price range of the symbol.
//--- input parameters
input group "========== Trade Settings =========="
input string BotName = "Grid";
input bool useRsi = true;
input bool limiOrderGrid = false;
input bool BuyTrade = true; // Buy Trade
input bool SellTrade = true; // Sell Trade
input double Buy_Entry = 0; // Buy Below Price
input double Sell_Entry = 0; // Sell Above Price
input group "========== Grid Settings =========="
input int MaxPositions = 50; // Maximum Position
input int InpStep = 6000; // Step Points
input bool UseTrailingStop = true; // Trailing Stop
input int InpTrigger = 5000; // Trigger Point from Open Position
input int InpSlPoints = 500; // SL from Trigger Point
input group "========== General Settings =========="
input double InpLots = 0.01; // Volume
input int MagicNumber = 55555; // MagicNumber
input ENUM_TIMEFRAMES Timeframe = PERIOD_M5;
input int Max_slippage = 10; // Maximum slippage allow
input group "========== Indicators Settings =========="
input int oversoldThreshold = 30;
input int overboughtThreshold = 70;
input ENUM_TIMEFRAMES rsiTimeframe = PERIOD_CURRENT;
input int rsiPeriod = 14;