Watch how to download trading robots for free
Find us on Twitter!
Join our fan page
Interesting script?
So post a link to it -
let others appraise it
You liked the script? Try it in the MetaTrader 5 terminal
Experts

GO - expert for MetaTrader 5

Published by:
Vladimir Karputov
Views:
2674
Rating:
(14)
Published:
2017.01.26 09:07
Updated:
2018.06.15 12:30
GO.mq5 (20.4 KB) view
Need a robot or indicator based on this code? Order it on Freelance Go to Freelance

Author of the idea — Victor Chebotariovauthor of the MQL5 code — barabashkakvn.

Signals based on four iMA (MA) indicators, by PRICE_OPEN, PRICE_HIGH, PRICE_LOW, PRICE_CLOSE prices. Trades only on hedge accounts.

Block for determining the signal direction:

   double open =iMAGet(handle_iMA_open,0);
   double high =iMAGet(handle_iMA_high,0);
   double low  =iMAGet(handle_iMA_low,0);
   double close=iMAGet(handle_iMA_close,0);
   double GO=((close-open)+(high-open)+(low-open)+(close-low)+(close-high))*iTickVolume(0);

The number of positions is limited by the parameter 

input int               MaxPositions   =5;

Translated from Russian by MetaQuotes Ltd.
Original code: https://www.mql5.com/ru/code/16968

Expert MACD EURUSD 1 Hour Expert MACD EURUSD 1 Hour

Works based on the iMACD (MACD) indicators

Fractal_Bands_HTF Fractal_Bands_HTF

The Fractal_Bands indicator with the timeframe selection option available in the input parameters.

Fractal_Keltner_HTF Fractal_Keltner_HTF

The Fractal_Keltner indicator with the timeframe selection option available in the input parameters.

Fractal_DeMarker Fractal_DeMarker

Fractal DeMarker oscillator.