RSI alert (on close)

MQL4 Indikatoren

Auftrag beendet

Ausführungszeit 1 Stunde

Spezifikation

Hi guys, I have been looking for this indicator online, but have not found anything suitable. Perhaps someone could help me, at least tell me how much this request would likely cost.

 

I would like an indicator that provides a simple alert if the RSI of a previous candle went below a particular level (or higher than a particular level). I would like to be able to customise the levels. 

I would like the indicator to only use the previous candle close because the indicators already out there provide hundreds of spam alerts as it is based on current tick data.

 

The indicator would need to work on all timeframes.

 

Someone sent me some modified code of another indicator, but I am still getting plenty of spam alerts. Any help would be appreciated:

//+------------------------------------------------------------------+

//|                                                    RSI-Alert.mq4 |

//|                      Copyright © 2004, MetaQuotes Software Corp. |

//|                                       http://www.metaquotes.net/ |

//+------------------------------------------------------------------+

#property copyright "Copyright © 2004, MetaQuotes Software Corp."

#property link      "http://www.metaquotes.net/"


#property indicator_separate_window

#property indicator_minimum 0

#property indicator_maximum 100

#property indicator_buffers 3

#property indicator_color1 DodgerBlue

#property indicator_color2 LightGray

#property indicator_color3 LightGray

#property indicator_width1 1

#property indicator_width2 1

#property indicator_width3 1

#property indicator_style1 STYLE_SOLID

#property indicator_style2 STYLE_DOT

#property indicator_style3 STYLE_DOT

//---- input parameters

extern int RSIPeriod=14;

extern int ApplyTo=0;

extern bool AlertMode=true;

extern int OverBought=70;

extern int OverSold=30;

//---- buffers

double RSIBuffer[];

double RSIOBBuffer[];

double RSIOSBuffer[];

//+------------------------------------------------------------------+

//| Custom indicator initialization function                         |

//+------------------------------------------------------------------+

int init()

  {

   string short_name;

//---- indicator lines

   SetIndexStyle(0,DRAW_LINE);

   SetIndexBuffer(0,RSIBuffer);

   SetIndexStyle(1,DRAW_LINE);

   SetIndexBuffer(1,RSIOBBuffer);

   SetIndexStyle(2,DRAW_LINE);

   SetIndexBuffer(2,RSIOSBuffer);

//---- name for DataWindow and indicator subwindow label

   short_name="RSI-Alert("+RSIPeriod+")";

   IndicatorShortName(short_name);

   SetIndexLabel(0,short_name);

   SetIndexLabel(1,"OverBought");

   SetIndexLabel(2,"OverSold");

//----

   SetIndexDrawBegin(0,RSIPeriod);

//----

   return(0);

  }

//+------------------------------------------------------------------+

//| Relative Strength Index                                          |

//+------------------------------------------------------------------+

int start()

  {

   int    i,counted_bars=IndicatorCounted();

//----

   if(Bars<=RSIPeriod) return(0);

//----

   i=Bars-RSIPeriod-1;

   if(counted_bars>=RSIPeriod) i=Bars-counted_bars-1;

   while(i>=0)

   {

      RSIBuffer[i]=iRSI(NULL,0,period,PRICE_CLOSE,1);

      RSIOBBuffer[i]=OverBought;

      RSIOSBuffer[i]=OverSold;

      i--;

   }

   

   if(AlertMode)

   {

      if(RSIBuffer[1]<OverBought && RSIBuffer[0]>=OverBought)

         Alert("RSI "+RSIPeriod+ ", Sell @ Level "+OverBought+" - "+Symbol()+" M"+Period()+" @ "+DoubleToStr(Bid,Digits)+"");

      else if(RSIBuffer[1]>OverSold && RSIBuffer[0]<=OverSold)

         Alert("RSI "+RSIPeriod+ ", Buy @ Level "+OverSold+" - "+Symbol()+" M"+Period()+" @ "+DoubleToStr(Bid,Digits)+"");

   }

//----

   return(0);

  }

//+------------------------------------------------------------------+ 

Bewerbungen

1
Entwickler 1
Bewertung
(1853)
Projekte
3455
88%
Schlichtung
73
40% / 15%
Frist nicht eingehalten
265
8%
Frei
2
Entwickler 2
Bewertung
(546)
Projekte
1327
59%
Schlichtung
28
82% / 0%
Frist nicht eingehalten
10
1%
Frei
3
Entwickler 3
Bewertung
(2067)
Projekte
2625
62%
Schlichtung
113
45% / 26%
Frist nicht eingehalten
418
16%
Beschäftigt
4
Entwickler 4
Bewertung
(719)
Projekte
1038
39%
Schlichtung
47
49% / 23%
Frist nicht eingehalten
84
8%
Frei
5
Entwickler 5
Bewertung
(548)
Projekte
825
73%
Schlichtung
15
53% / 13%
Frist nicht eingehalten
193
23%
Arbeitet
6
Entwickler 6
Bewertung
(257)
Projekte
341
58%
Schlichtung
7
14% / 71%
Frist nicht eingehalten
9
3%
Frei
7
Entwickler 7
Bewertung
(14)
Projekte
27
22%
Schlichtung
18
6% / 89%
Frist nicht eingehalten
8
30%
Frei
8
Entwickler 8
Bewertung
(49)
Projekte
74
18%
Schlichtung
30
17% / 53%
Frist nicht eingehalten
31
42%
Frei
9
Entwickler 9
Bewertung
(13)
Projekte
20
30%
Schlichtung
5
20% / 80%
Frist nicht eingehalten
5
25%
Frei
Ähnliche Aufträge
Attached to this post is the pinescript tradingview indicator code, i will also attach a link to the youtube explanatory video of how the indicator works on tradingview, i will like the exact thing on mt5, including the percentage prediction on each bar and the win loss counter ... it should work on both forex, stock and volatility indices on mt5 https://youtu.be/30FLWyEWroM?si=q9GpvJVHp-oyvsvZ // This work is
Hello! I want to develop an indicator for tradingview. Twice a day on 12H candle close the indicator will show a set of timeframes if they closed bullish or bearish. Show daybreak with a vertical line. Every 12H closure will show a box somewhere, preferably above/below that candle on all timeframes up to D1, clearly showing which candle is the close of 12H. The box will contain info about which timeframes closed
Hello, Looking for Multipair and Multi-timeframe scanner indicator based on Zigzag. It's going to be a simple indicator based on Higher high and Lower Low Formation. I want for both platform for MT4/5. It should have alert features as well have to scan from custom pairs, marketwatch also able to use custom timeframe. I'll share zigzag formation to the right candidate when it should gives an alert. And if you are not
Hello, I purchased a TradingView script that works very well, but it doesn’t have any alerts. All I need are alerts programmed so I don’t have to sit behind the chart watching it all the time
Hi! Are you able to code an exact copy of an indicator for trading view? It must be exactly the same. if you are expert in doing this I am expecting your message in the comment session to share you with the indicator I want to duplicate. Looking forward to your positive response and the opportunity to collaborate with you on this project
Hello developers I hope this message finds you well. I am currently seeking a highly skilled developer for an important project. I need an exact copy of a TradingView indicator to be coded for the MetaTrader 4/5 platform. The indicator must be replicated with absolute precision, maintaining all its functionalities and features. Would you be able to take on this project? If so, I would appreciate discussing the
Hello Developers, I am looking for a highly skilled and experienced developer to code an exact copy of a specific indicator for TradingView. The indicator must be replicated with precise accuracy, maintaining all functionalities and features of the original. Requirements: Proficiency in Pine Script and experience with TradingView indicators. Demonstrated ability to replicate complex indicators with exact
MODIFICATION OF AND EXISTING EXPERT BY ADDING INDICATORS TO FUNCTION AS FILTERS, TRADE CLOSURE BY THE REVERSAL OF THE adx INDICATOR, LOOKING FOR TRADE BASED ON THE COLOR OF THE PERCENTAGE CHANGE INDICATOR (DPC) SELLING THE COLR IS RED AND DECREASING IN PERCENTAGE AND BUYING WHEN THE COLOR IS GREEN AND INCREASING IN PERCENTAGE . There is an EA I have been using which I splitted into long trading and short trading. It
i am looking for experienced programmer to create indicator for me. i am willing to pay for the service. and if it works amazingly like i expected. i will tip more money
I recently bought an indicator, that sends out notifications for trades i need to place, on the notification these and SL and TP, so i want an EA that would automate that for me

Projektdetails

Budget