Watch how to download trading robots for free
Find us on Telegram!
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

MACD signal - expert for MetaTrader 5

Published by:
Vladimir Karputov
Views:
6518
Rating:
(19)
Published:
2017.01.26 09:25
Updated:
2018.02.27 13:08
MACD signal.mq5 (26.14 KB) view
Need a robot or indicator based on this code? Order it on Freelance Go to Freelance

Author of the idea — Collectorauthor of the MQL5 code — barabashkakvn. 

Uses signals from the indicators: ATR, MACD.

Block of getting the indicators:

   Range=iATRGet(1);
   rr=Range*LEVEL;
   Delta=iMACDGet(MAIN_LINE,0)-iMACDGet(SIGNAL_LINE,0);
   Delta1=iMACDGet(MAIN_LINE,1)-iMACDGet(SIGNAL_LINE,1);

Open Buy if:

      if(Delta>rr && Delta1<rr)

Open Sell if:  

      if(Delta<-rr && Delta1>-rr)


 

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

Universum 3.0 Universum 3.0

Increasing the lot after a losing trade. Entry signals are based on the DeMarker indicator.

Exp_WeightOscillator Exp_WeightOscillator

The simplest EA based on the WeightOscillator weighted oscillator.

Chart on Chart Chart on Chart

The Chart on Chart indicator displays a chart of other symbol on the current chart.

Fractional_Bands_HTF Fractional_Bands_HTF

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