Lazy Bot MT5 (Daily Breakout EA) – EA MetaTrader 5

Lazy Bot MT5 (Daily Breakout EA) - expert for MetaTrader 5
Input parameters //Import External class #include <TradePositionInfo.mqh> #include <TradeTrade.mqh> #include <TradeSymbolInfo.mqh>   #include <TradeAccountInfo.mqh> #include <TradeOrderInfo.mqh> //— introduce predefined variables for code readability #define Ask    SymbolInfoDouble(_Symbol, SYMBOL_ASK) #define Bid    SymbolInfoDouble(_Symbol, SYMBOL_BID) //— input parameters input string  EASettings = “———————————————“; //——– <EA Settings> ——– input int      InpMagicNumber = 123456;   //Magic Number input string   InpBotName = “LazyBot_V1”; //Bot Name input string  TradingSettings = … Read more

RSI Bot MT5 – EA MetaTrader 5

RSI Bot MT5 - expert for MetaTrader 5
RSI Bot, send alert buy when RSI<=20, send alert sell when RSI>=80 Parameter: input group             “RSI Setting” input int                  Inp_RSI_ma_period    = 30;             // RSI: averaging period  input ENUM_APPLIED_PRICE   Inp_RSI_applied_price= PRICE_WEIGHTED; // RSI: type of price  input … Read more

Ranged Grid Bot EA with pending orders – EA MetaTrader 4

Ranged Grid Bot EA with pending orders - expert for MetaTrader 4
UPDATE: v1.01 Added magic number Added control on symbol (it can be now attached to different charts on the same account) Added time control for trading Added an option to forcibly close all the trades after the end hour The EA creates a grid of equally spaced pending limit orders taking into account:  – The … Read more