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

The MasterMind 3 - expert for MetaTrader 5

Published by:
Vladimir Karputov
Views:
3108
Rating:
(19)
Published:
2017.01.26 09:12
Updated:
2018.06.15 13:05
Need a robot or indicator based on this code? Order it on Freelance Go to Freelance

Author of the idea — L.Biggerauthor of the MQL5 code — barabashkakvn.

The Expert Advisor processes signals from four iWPR indicators with different averaging periods: iWPR(26), iWPR(27), iWPR(29), iWPR(30). The OBJ_TEXT objects are displayed on the chart, keeps a log file. 

   sig_buy=iWPRGet(handle_iWPR_26,0);
   sig_sell=iWPRGet(handle_iWPR_27,0);
   sig_high=iWPRGet(handle_iWPR_29,0);
   sig_low=iWPRGet(handle_iWPR_30,0);

//Comment("sig_buy=",sig_buy," sig_sell=",sig_sell);

   if(sig_buy<-99.99 && sig_sell<-99.99 && sig_high<-99.99 && sig_low<-99.99)
     {
      BuyValue=1;
     }

   if(sig_buy>-0.01 && sig_sell>-0.01 && sig_high>-0.01 && sig_low>-0.01)
     {
      SellValue=1;
     }


 

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

VR---STEALS-2 VR---STEALS-2

The Expert Advisor manages positions using labels.

Fractal_WPR_HTF Fractal_WPR_HTF

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

Fractal_DeMarker_HTF Fractal_DeMarker_HTF

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

Exp_Fractal_WPR Exp_Fractal_WPR

The simplest EA based on the fractal WPR.