Multicurrency trading panel or a game system – EA MetaTrader 5

Fig. 1. The multicurrency game trade panel
The game panel for multicurrency manual and automated trading demonstrates the possibilities of the MasterWindows library. The panel code has been automatically generated using the environment for visual design of interface windows MasterWindows for MQL5. By analyzing the price databases of the ENUM_APPLIED_PRICE type of three symbols (EURUSD, USDJPY and GBPUSD), you can make an … Read more

Multi-currency night scalper – Night Scalper Multi – EA MetaTrader 5

Multi-currency night scalper - Night Scalper Multi - expert for MetaTrader 5
The Night Scalper Multi multi-currency night scalper trades until 0 am terminal time within a narrow range (r), determined using the Bollinger Bands indicator. BBHandle=iBands(symb,0,per,0,dev,0);    CopyBuffer(BBHandle,1,0,1,up);    CopyBuffer(BBHandle,2,0,1,dn);    double r=up[0]-dn[0]; Position is opened after the hour specified in Start, and if there are no open positions on the symbol. if(CountTrades(symb)<1 && TimeCurrent()>StringToTime(s)) Buy, … Read more

Multicurrency hedge example EA (overlay hedge) – EA MetaTrader 4

Multicurrency hedge example EA (overlay hedge) - expert for MetaTrader 4
The Expert Advisor looks for correlations of the Market Watch list symbols, calculates Average True Range ratios for every hedging combination and assigns different magic numbers for them. Then the subsequent operations can be easily carried out with the prepared data. For precision, statistics like correlation and ATR ratio are recalculated every day. The Expert … Read more