Create an MT5 RSI Alerts Indicator with pop up messages for Phone, Mobile, & Email

工作已完成

执行时间2 天
客户反馈
Excellent Developer. Highly talented and knowledgeable. I wish you well and will return to you for more tasks.
员工反馈
A respectable and professional person. I enjoyed working with them

指定

MT5 indicator that sends pop up alerts based on overbought and oversold conditions.

  I want alerts for:

1st RSI Period              = 14
1st RSI Oversold          = 70

1st RSI Overbought     = 70

 

2nd RSI Period             = 2
2nd RSI Oversold         = 99

2nd RSI Overbought    = 01

 

The alerts should be on the following timeframes with true/false switch on separate lines such as:

M30 = True/False

H1    = True/False

H4    = True/False

D1    = True/False

W1   = True/False

 

Alerts should be triggered on the closing price.

I also need to turn on or off Buy Alerts & Sell Alerts so I will need:

Trigger Buy Alerts - True/False

Trigger Sell Alerts - True/False

 

I need it to only give 1 alert per symbol. The alert message should read:

Symbol - Company name - Buy (RSI Period) (RSI Reading) (Timeframe) or

Symbol - Company name - Sell (RSI Period) (RSI Reading) (Timeframe)

 

I want to be able to select with true/false the charts it will monitor:

Major Forex       = True/False

Minor Forex       = True/False

US Shares           = True/False

UK Shares          = True/False

Cryptos               = True/False

 

If I have selected US Shares = true, then it will monitor all US shares and whichever closes above Overbought, it will send a sell alert if it is activated. Similarly if it closes below 30 then it will send a Buy Alert.

I already have some security code for the indicator which you simply insert:

   bool _b_security_account__PC = false;                                    //Account Security On/Off

   if(_b_security_account__PC)

     {

  string str__TERMINAL_DATA_PATH = TerminalInfoString(TERMINAL_DATA_PATH);

  int int_index__n200 = StringFind(str__TERMINAL_DATA_PATH, "Users", 0);

  int int_index__n201 = StringFind(str__TERMINAL_DATA_PATH,  CharToString(92), (int_index__n200 + StringLen("Users")) + 1);

  int int_All_String = StringLen(str__TERMINAL_DATA_PATH);

  string string_Namber_Terminal = StringSubstr(str__TERMINAL_DATA_PATH, int_index__n200 + (StringLen("Users") + 1), int_index__n201 - (int_index__n200 + (StringLen("Users") + 1)));

    

      string string__Name_PC="SHAKIR";                                                       

      if(string_Namber_Terminal == string__Name_PC)

        {

 

        }

      else

        {

         Print("Indicator Not Valid On This Account – To Purchase License Please Contact shakir.elahi@gmail.com");

         Alert("Indicator Not Valid On This Account – To Purchase License Please Contact shakir.elahi@gmail.com");

         return(INIT_FAILED);

        }

     }

 

//==============================================================================================

   bool _b_security_account=false;                                    //Account Security On/Off

   if(_b_security_account)

     {

      int num=2100033965;                                               //Accout number

      if((int)AccountInfoInteger(ACCOUNT_LOGIN)==num)

        {

 

        }

      else

        {

         Print("Indicator Not Valid On This Account – To Purchase License Please Contact shakir.elahi@gmail.com");

         Alert("Indicator Not Valid On This Account – To Purchase License Please Contact shakir.elahi@gmail.com");

         return(INIT_FAILED);

        }

 

     }

 

//==============================================================================================

   bool _b_security_expiry__Time = false;                                       //Indicator Expiry On/Off

   if(_b_security_expiry__Time)

     {

      string DemoStr="2023.10.22 01:00";                                //Expiry date/time

      bool Expire=TimeCurrent()>StringToTime(DemoStr);

      if(Expire)

        {

         Print("Indicator Has Expired – To Renew License Please Contact shakir.elahi@gmail.com");

         Alert("Indicator Has Expired – To Renew License Please Contact shakir.elahi@gmail.com");

         return(INIT_FAILED);

        }

     }


附加的文件:

反馈

1
开发者 1
等级
(1)
项目
1
0%
仲裁
0
逾期
0
空闲
2
开发者 2
等级
(230)
项目
410
34%
仲裁
53
36% / 40%
逾期
150
37%
已载入
相似订单
I have an MT5 EA which I like to modify to run on custom symbol chart. I can backtest the EA on the custom symbol chart, but I cannot run on the chart to trade. When I attach the EA to the custom symbol chart, it gives me error: "2024.06.07 21:27:59.270 Trades '1520250871': failed request buy 0.1 BTCUSD_ATR10_M1 at 69260.30000 [Invalid request]" Please help me to modify the EA to run on custom symbol chart. EA is
I will provide pine script and need to convert it as a mql4 EA. The system is based on swing highs and lows. If you interested please knock me, Thank you
I want an Indicator that : Draws vertical lines at the opening of candles on a time frames selected.( I want to be able change the candle timeframe the line will be drawn. Eg. I can slelect 1H, 4H etc from the settings, and the vertical line will be drawn at the opening). Draw a horizontal line at the opening of the candles in the selected timeframe. Calculate the average range of the candles on a selected timeframe
Hello, I need to optimize my indicator so that it works in several time frames. and then convert it to mq5 The task will be carried out remotely by ANYDESK
I would need an indicator which makes averages on chart (like the one existing already on mt4 where you can choose between EMA, SMA, ...) but what i need is on chart a button plus and minus which i could press in order to change the average visually on chart( so i dont have to come back in the settings of the indicator each time to introduce a new average number) And average in mt4 is limited basically at 4000 but
I am looking for an experienced MQL5 developer to convert a TradingView indicator into an Expert Advisor (EA) for MetaTrader 5 (MT5). The TradingView indicator uses specific conditions to trigger buy and sell signals, and I would like these conditions to be replicated in the MQL5 EA. Stop Loss in points Take Profit in points Trailing Stop activation level in points Trailing Stop distance in points Maximum number of
Bot name: Blues🚀ProFx The bot should work with the 5mins time frame and it must move with the market price bar when it moves up 5pips and above let 10 trades be opened in the up direction and each having a stop loss of 20pips. After every 5mins if a new candle forms in the same direction let another 10 trades be opened in the same manner. Then when the market trend changes and a bearish candle starts to form and
Hello, I need an EA for both MQL4 and MQL5 that complies with the following rules; A maximum daily drawdown of 4%. This means it should close all trades after a 4% loss and not trade for the rest of the day. It should not use martingale, No grid trading, No trade stacking (opening three or more trades at the same time in the same direction), trades should spends minutes before closing. The EA should also be able to
Hello I am new to MT4/MT5, I previously traded for a company with their own internal execution platform. I am looking for someone who can help me understand MT5, how to set up charts, indicators, advisors and back-testing etc.. basically a intro to a new user. I am particularly interested in learning is it possible to trade/execute spreads via MT5 - ie simultaneously buy MSFT and sell DELL, and when you trade out you
Hello, I am looking for someone that can develop for me a trading bot, that can trade on Crash 500 and 1000, and also on Boom 500 and 1000. The bot must buy on Crash 500 and 1000 and sell on Boom 500 and 1000. The indicator we use is the Awesome Oscillator. The CRASH 500/1000 we scalp it by buying. We only place our ENTRY that is to BUY when the Awesome Oscillator changes from VALUE DOWN to VALUE UP and by changing I

项目信息

预算
30+ USD
开发人员
27 USD
截止日期
 1  2 天