MT4 18 INDICATORS SWITCH

MQL4 지표

작업 종료됨

실행 시간 33 분
고객의 피드백
useful coder and helpful
피고용인의 피드백
thank you

명시

mt4 indicators switch 

 This tool gives the ea  , the very first signal  from any set of 3 indicators  from 18 indicators on mt4

Either first 3 indicators or next three indicators or next 3 indicators   or following 3 indicators     , either  set of 3 indicators (from six sets)   will trigger an entry

if any set showing opposite signal , entry is invalid 

signals from all three indicators on each set must be valid  , if all three indicators in a set trigger value  is not met , entry is not valid  , even if  indicator in different set  has valid signal.

comment on include  file    //  where you add code

 

mql4 source codes required as part of job  for testing and two weeks required to test .FULLY TESTED  AND COMMENTED   , must work first time  (FULLY DEBUGGED) (otherwise job cancelled  on receipt).you time waster will waste your time  NOT MINE

Each version you supply will be codded as  #1 , #2 #3 

MOST AMATEUR CODERS HERE , WILL CODE BUYS AND SELL SIGNALS , -1 +1-1+1-1+1    TOGETHER AND IT WILL NOT WORK

 

Code an include file WITH   6 SETS   OF 3 INDICATORS    called setindicatormt4   .See attached sketch

 // Signals

  //DEFINE SET1, SET2 , SET3, SET4 ,SET5 AND SET6)    

  static bool _SET1  = false;

  static bool _SET2  = false;

  static bool _SET3  = false;

  static bool _SET4  = false;

  static bool _SET5  = false;

  static bool _SET6  = false;

SET1 INDICATORS   :rsi 14 , stocch 28 6 10  , momentum14

SET2 INDICATORS    :rsi28 , stoch 56 12 20    momenum 28

SET3  INDICATORS   :rsi 14 ,  rsi28  ,  stocch 28 6 10

SET 4 INDICATORS   :rsi 14 , rsi28  ,   momentum 28

SET 5 INDICATORS   :rsi28 , stoch 28 6 10 ,   momenum 14

SET 6 INDICATORS    ;stoch 28  6 10,   stoch 56 12 20  ,   rsi14

 

3 functions to be coded  

1)Read indicators /code indicators into INCLUDE

2)CODE SETS     6 SETS /DEFINE THEM

3)CODE SET COUNT

4)SIGNALS TO EA

 

 CODE FUNCTION  :SET COUNT

//this function will count SET  INDICATOR BUY SIGNALS    AND SET INDICATORS SELL SIGNALS

 int _SET1_BUY  = 0;

    int _SET1_SELL  = 0;

  //    if(SET1 _indicator XYZ-BUY COUNT ) _BUY_++;

 //    if(SET1 _indicator XUZ _SELL COUNT ) _SELL_++;

 //    if(SET1 _indicator VXY -BUY COUNT ) _BUY_++;

 //    if(SET1 _indicator XXZ _SELL COUNT ) _SELL_++;

 //    if(SET1 _indicator XYY -BUY COUNT ) _BUY_++;

 //    if(SET1 _indicator XYY _SELL COUNT ) _SELL_++;

  _buytrue   = _set1buy  >= 3;

    _selltrue = _set1_sell  >= -3;

 

 in each set   of  6 sets , code   3 MT4 indicators  = total  MT4 indicators = 18  , in the include file   

Each set of 3 indicators   , must all show true    , to get valid signal to buy or sell  +1/-1 

all 3 indicators in a set   must all be above 80   for buy signal    or   below  20 for sell signal ,  but each indicator to have own separate level  mom > 100/<100 , ris  >70buy  30>  sell

If any set = true     +1     , signal will be +1

if any  set =  true  -1     , signal will be -1

if any set has   3  MT4  indicators as     -1 ,-1   0  =     signal = zero for set  (MINIMUM SIGNAL =  + 3 )

 if any set has   3  MT4  indicators as     1 ,-1  ,1  =     signal = zero for set     (MINIMUM SIGNAL =  - 3 )

if any set has  +1, +1 and +1  =  signal   set  = +1    (IF SET EQUALS MINIMUM SIGNAL +3 , SIGNAL = +1  , else 0)

if any set  has -1 , -1 and -1     = signal    set   = -1   (IF SET EQUALS  MINIMUM SIGNAL  -3  , SIGNAL = - 1 , else 0)

 

//(SET1 = 3    =SIGNAL   =1  ), (SET 1  = -3 ,SIGNAL =  -1)=  zero

//SAME LOGIC APPLIES TO SETS 2 , 3 ,4 , 5 AND 6 

 

 everything will be defined correctly   in the include file , so there will be no more defining to be done in ea , adding the include file into any ea   , will compile ea   without any errors or further function defining  or changing codes in EA

 

The mqh file   will start with FALSE  

until a TRUE   signal is generated

if no true signal  is generated  , SIGNAL  = FALSE 

 

SIGNAL MUST BE CHECKED AS OK BUT    IF NO TRUE SIGNAL IS GENERATED  , NO SIGNAL WILL BE GENERATED  IF NO CHECK IS MADE.CHECK OK

응답함

1
개발자 1
등급
(49)
프로젝트
134
27%
중재
62
13% / 53%
기한 초과
58
43%
무료
게재됨: 300 기고글, 1 코드
2
개발자 2
등급
(187)
프로젝트
367
56%
중재
45
22% / 56%
기한 초과
188
51%
무료
게재됨: 1 기고글, 6 코드
3
개발자 3
등급
(90)
프로젝트
159
61%
중재
40
18% / 63%
기한 초과
70
44%
무료
4
개발자 4
등급
(257)
프로젝트
341
58%
중재
7
14% / 71%
기한 초과
9
3%
무료
비슷한 주문
#property indicator_chart_window #property indicator_buffers 2 #property indicator_plots 2 #property indicator_type1 DRAW_ARROW #property indicator_color1 Blue #property indicator_label1 "Buy Signal" #property indicator_type2 DRAW_ARROW #property indicator_color2 Red #property indicator_label2 "Sell Signal" double BuyBuffer[]; double SellBuffer[]; input int MA_Period = 50; input int RSI_Period = 14; int maHandle;
Need Python developer to use MetaApi.cloud Python API (ready SDK) to build a real-time equity curve chart. Project is simple and details will be shared privately. Only apply if you have strong Python experience
A robot 30+ USD
Code pour créer un robot //+------------------------------------------------------------------+ #include <Trade/Trade.mqh> CTrade trade; // SYMBOLS string symbols[3] = {"Volatility 10 Index","Volatility 25 Index","Volatility 75 Index"}; string bestSymbol = ""; // VARIABLES double startBalance; int tradeCount = 0; int lossStreak = 0; bool tradingStopped = false; bool profitMode = false; datetime lastDay; // PARAMÈTRES
I need someone to recreate this indicator for mt5 for $60 it has to be non repaint ,I've been trying to code this indicator so if someone can do it my contact is , sebokomorobi6@gmail.com ,or 073 923 0151 you can contact the number on Whatsapp no calls allowed
Hi Im working with a Crypto trading company and we want to branch out with our indicator, i'm researching the bot automation and need some hands on board. i i want to hear your opinion about the indicator that i would like you to build. in the PDF i explain the whole indicator and how it need to look like. happy to hear form you
I want someone to hold a session for me and explain in details on how to implement them in. I would really appreciate your guidance on how to properly set up GoCharting and get access to CME futures data
When the super trend changes from buy to sell and crosses the fast moving average and the 200 moving average is above the price, send email notification and/or sms (text) to sell . When the super trend change from sell to buy and crosses the fast moving average and the 200 moving average is below the price, send email notification and /or sms (text) to buy. Please note that there are two moving averages(fast and
Hola comunidad, Estoy buscando un desarrollador que tenga el archivo de instalación de MetaTrader 4 build 1443 o que pueda ayudarme a volver a esa versión. Tengo un robot (EA) que funcionaba perfectamente en build 1443, pero mi plataforma se actualizó automáticamente a build 1470 y ahora el robot ya no funciona correctamente. Necesito alguien que: • Tenga el instalador de MT4 build 1443, o • Sepa cómo reinstalar esa
have the Beatrix Inventor Expert Advisor (EA) that was profitable in the past but has been losing money recently. I need an experienced EA developer/optimizer to study the trade history (especially Stop Loss hits, drawdown periods, SL/TP behavior, win/loss ratio, etc.) and recommend + implement specific tweaks so it becomes consistently profitable again. Your job: 1. Deep analysis of why the EA is no longer
want to develop a trading robot (EA) for MetaTrader 5 based on 10 specific rules. The robot should include a professional interface to control all settings, including: Fixed lot size (0.50), Stop Loss (10 USD), RSI indicators for entry/exit, News filter, Trailing stop, and daily profit targets. I have the full logic ready to discuss with the developer. Please ensure high-quality code and testing

프로젝트 정보

예산