Reverse Trades For All Symbols Script – script MetaTrader 4

Reverse Trades For All Symbols Script - script for MetaTrader 4
The strategy implemented in the script “Reverse_Trades_For_all_Trades_and_Symbols_V1.mq4” reverses all open trades for all symbols on the trading platform. When executed, the script iterates through all open trades, closing each one and opening an opposite trade for the same symbol. This effectively reverses the direction of each trade, allowing traders to profit from changes in market

MA Reverse – EA MetaTrader 4

MA Reverse - expert for MetaTrader 4
Strategy Tester Report MA Reverse Alpari-Demo (Build 220) Symbol EURUSD (Euro vs US Dollar) Period 1 Hour (H1) 2008.09.01 00:00 – 2008.10.31 22:00 (2008.09.01 – 2008.11.01) Model Control points (a very crude method the results must not be considered) Bars in test 2071 Ticks modelled 27425 Modelling quality n/a Missmathced charts errors 8 Initial deposit

MA Reverse – EA MetaTrader 5

MA Reverse algo
Trading by Moving Average. Checking for sufficiency of funds. Author of the idea is Konstantin Grand, author of the MQL5 code is barabashkakvn.    Operation Principle: Performance result on EURUSD, M30 from 2016.05.08 to 2016.12.28:   Also, before each operation, we should check if we have sufficient funds:          //— check volume before OrderSend to avoid “not enough money” error

Reverse Day Fractal – EA MetaTrader 4

Reverse Day Fractal - expert for MetaTrader 4
The algorithm is based on the idea of returning the current fractal to the opening price of the day. Often this happens with a sharp change of trend, which allows you to earn. // — bool op_buy_sig() {         if(((e_Low() < e_Low_1()) && (e_Low() < e_Low_2())) && (e_Close() > e_Open()))                 return true;         // —         return false;