Technical Indicators - page 18

  MT5 sensitivity  (9)
I think my MT5 is hacked, the sensitivity of the charts is wanting e,g the Relative Strength indexes have not touched the overbought and oversold lines,this is a breach of security can someone help me with identifying this person
Good morning I had several indicators eurx jpyx gbpx etc which were on the main window (offline maybe) on an old version of mt4 on which I can put my indicators. do these indicators still exist and if so, do you have the link
The normal solution if ( TimeCurrent ()>expiry_date) return INIT_FAILED ; does not apply in backtest mode! Do you think there is a solution
i want to creat like this code but to scan engulfing configuration , the probleme is how to get the open high last and close for the 3 last candles pls. int OnCalculate ( const int rates_total, const int prev_calculated, const datetime &time[], const
Hello, I have a custom indicator and I would like to read it 2 times, the first for the current time and the second for a different time, when I call the indicator I change the time to the second as shown in the image, but it returns the same value for the current time frame. Can someone help me
Please look to this picture and help me why array 0 to 5 is same . I just need value[0]
I would like to repeat a task every 20 seconds is that how to do it? int timeToWaitInSeconds = 20 ; datetime LastTimeRecorded = LONG_MIN ; int OnCalculate ( const int rates_total, const int prev_calculated, const datetime &time[], const double &open[]
I'm new to MQL5/programming so forgive me in advance: In the process of modifying a clock indicator that gets updated in OnTimer() I found that I needed to do a ChartRedraw() in order to make sure it visually updated the label chart object in a timely manner. This got me to thinking... if there's a
Good morning, There is an error that I don't understand. Maybe I'm doing it wrong. I would like to have an indicator that returns me ADX values in a larger unit of time. input int PeriodADX= 14 ; input int ADXTrendLevel= 22 ; input ENUM_TIMEFRAMES HTF = PERIOD_H1 ;
Hi, Could someone tell me what lines should I write into the basic RSI indicator's code to get the result on the pic? At moment I draw rectangles to get the colored zones. Basically I want colored zones at the backround of the indicator regardless of the timeframe. I hope it's not difficult. Thanx
Hi guys, I recently develop an indicator that detects support and resistance levels of the 100 previous peaks and troughs. I am trying to implement the data and calculations of this indicator to an EA I am trying to develop but I am having some problems. Since the indicator detects structure levels
Good day, I tried for days to code a master candle indicator by myself, with no success. I need to draw the high/low of each master candle available on historical datas. Can someone help me very please. here is the function OnCalculate Regards. int shift, bar, limit= 0 ; //--- if
I found something strange in copybuffer atr indicator. the value return EMPTY_VALUE if shift is far from current. Anyone get this problem? //+------------------------------------------------------------------+ //| TestCopyATR.mq5 | //|
Good afternoon! I'm trying to build an indicator that stores the price of each second ago in an array. Then, I intend to get the price of, for example, 5 seconds ago, accessing the array L[5].... I made this code below, but I can't access the array. If it's L[0], then it works.... Where am I going
I am idealizing an indicator with two plots, where one plot would be attached to the chart window (indicator_chart_window) and the other plot to its own subwindow (indicator_separate_window). Is it possible to do this in a single code or do I need to build different indicators
ExtMapBuffer1[i] = giao dịch == 1 && giao dịch[ 1 ] != 1 ? 1.0 : giao dịch == - 1 && giao dịch[ 1 ] != - 1 ? - 1 , 0 : 0 , 0 ; ExtMapBuffer2[i] = giao dịch == 1 && giao dịch[ 1 ] != 1 ? 1.0 : giao dịch == - 1 && giao dịch[ 1 ] != - 1 ? - 1 , 0 : 0 , 0 ; please fix me
[Deleted]
Hello, I am writing a function to get 10 RSI values from copybuffer, how do return the function as an array/pointer? double RSI[] ( int Position, int RSI _Period , int RSI_Apply) { int Handle; double Values; Handle = iRSI ( Symbol (), Period (), RSI _Period , RSI I_Apply); CopyBuffer
Hello guys I hope anyone know the name of this indicator I used to have it on my mt5 . after I changed my pc I lost all my data so I don't remember from which site I download it from. so by seeing these picture anyone know what is this indicator ?? It may look like super signals but it's not . I
Hello, I try to get data ( a value of a moving from another M5 ) and use it with data in Current time frame but it has repaint please help me to solve the problem double moving_val_M1 = 0 , moving_val_M5 = 0 ; for ( int i = candles; i>= 0 ; i--) // Bars-1 { int m1 = iBarShift ( NULL
why has simple thing like coding a moving average on RSI to read values from 0 to 100 on the RSI window so hard.....I just can't imagine, no proper documentation. Any help
I am new to coding and I added a magic number to this Indicator. I get no errors but when I put the Indicator on 2 charts with 2 different EAs the Indicators TakeProfit Left and StopLoss Left only works with one of the EAs. Any help would be appreciated
Hi Guys it is me again I started reading the documentation and I can't fix these 2 errors '}' - unexpected end of program '{' - unbalanced parentheses Can someone help me thanks
[Deleted]
#property indicator_separate_window #property indicator_buffers 4 #property indicator_plots 1 #property strict //--- plot #property indicator_label1 "N" #property indicator_type1 DRAW_NONE #property indicator_color1 C'8,153,129' #property indicator_style1 STYLE_SOLID #property
Hi, May I ask a question about how to write a function that gets a moving average value of any symbol regardless of what chart the indicator is placed on I have attached the test files and see below attempt I made, but it returns a value of zero. Thanks! double GetEMAValue( string symbol) {
  Parabolic SAR indicator  (289   1 2 3 4 5 ... 28 29)
I am continuing posting information about indicators. So, we have information about Stochastic indicator https://www.mql5.com/en/forum/177239 We have the thread about Momentum indicator https://www.mql5.com/en/forum/176430 Now something about Parabolic SAR. OverviewThe Parabolic Time/Price System,...
[Deleted]
  mq4 to mq5  (1)
Hi Traders and programmers, i need help converting this indicator to mq5 , its called "_BAMSBUNG-NO REPAINT_mods_" , because i stuggle using the H12 in mt4 it has 2 dll files with it and this is the link : https://drive.google.com/drive/folders/1Ezu4ra-Xw8x2rQ7dzW7Ruk2_aa4e_Tkq?usp=share_link Thanks
  ADX code  (10)
The ADX coded in metaquotes is different then most other trading softwares... The ADX value is always much higher giving false signals about the trend... Does anybody could tell me where the problem comes from, and provide me wth instruction on modifying the indicators ... Thank you
//+------------------------------------------------------------------+ //| Second Indicator.mq5 | //| Joy D Moyo | //| joydmoyo@gmail.com |
Hi everyone I'm using crossover strategy and sendnotification() function . after crossing MAs , for 60 seconds(in every Tick in Bar[0]) it sends notification. How can I limit it to only once ? I used NewBar function but it doesn't work at all. Please help if you know
Hi there, I am new to MT5 and I have been trading Bitcoin on Binance using their Stochastic on an RSI indicator. Is There a good simple Expert Advisor I could use to replicate this on MT5 without having to write code? Cheers