Technical Indicators - page 70

Hi all,  So I've been looking for a simple pip counter for the past two weeks. I've come across multiple ones. Some with other indicators attached to it and some with the pip counter by itself. I've added all those to my charts. I can confirm that they work but for some reason all of the indicators...
Hi, just wondering if someone can help me out with this indicator. There is no other free indicator around. "market_statistics_bands.mq4" does not work for me, since my MT4 will be super slow, guess CPU issues. VWAP Bands.mq4 is not the same unfortunately. I trade with the 1D chart and I am trying...
Cn anyone help me with tech advice on how to install indicators from site...using the code base tab above.... It it keeps downloading to Zip...then says unable to open... ??
I'm looking for an indicator that alerts when all pivot, stochastic , rsi and ema are confirm and alerts when confirmed. Anyone knows of any? Else I may want to search for freelance
I don't think it is possible but wonder if there is a way to Deinit the indicator from OnCalculate? Tried "return(-1)" but it just get pass to "prev_calculated" so it will not exit the indicator program. Tried calling OnDeinit() functionbut once it jump to OnDeinit it will return back where it was...
I need to implement an indicator that create rectangles but I want that they overlap candles.Anyone knows if there's a way?Thanks
I have downloaded indicators from this site and tried to hide/unhide lines on MT5 by changing colours to none or changing colours but the option is locked and I am unable to change the colours. Can some one please suggest a way to change the colour. Thanks
I did search MQL5 forum but seems like iCustom is executed at incorrect sequence in OnCalculate when using it in different timeframe as the chart's base timeframe. below table in the left is when using same timeframe M5 for the chart and iCustom. right table is when using M1 timeframe in chart and...
I'm gonna keep this sweet and to the point. I'm basically just trying to make a little opening range indicator, to practice. I've got a trendline, that is supposed to stretch from the high of the ORcandle, to the same price a few hours later. The problem is, it is plotting the first point just fine,...
Hello, Wonder if any one know a good "automatic trend lines" indicattor? Thanks!
  RSI indicator code  (14   1 2)
Hi all I have used the code below to replicate the RSI indicator, as a small learning exercise, but I get different result then the built in one that I apply on graph. Why? Below is the screenshot, grey is the MT4 built-in one, blue is mine, both are calculated using Price_close. double RSI_14[];...
In MT5 chart, when you drag an indicator, you can choose to apply from the standard price values, for first/previous indicator. In terms of coding, how can this be achieved? E.g I want to apply moving average on another moving average, or MACD on another MACD
  Indicator Help  (2)
hello everyone  i hope there is someone can help me with that : i need an indicator that draw a VLine on chart AND : 1- Draw that VLine on the 4th candle for example  2- Variable X contain the OpenPrice(for example) for the candle that the VLine on it , and when i move the VLine on the chart the...
  Bought indicator  (1)
I just bought me an indicator,how can i see when its ready to use??only see my payment is done and see it in my purchases what i bought but when can i install to my mt4?
[Deleted]
Indicator shows trand.
  Adaptive lookback indicators  (1273   1 2 3 4 5 ... 127 128)
Of adaptive lookback The Adaptive Lookback (period finder) is truly a market-driven indicator used to determine the variable lookback period for many different indicators, instead of a traditional, fixed figure. It is based on the frequency of market swings - the time between swing highs or swing
Hi, How to put my Indicator RSI to become a candle pattern? so I can store the High and low from movements. Thanks!
Hello friends, is there a way of expressing the values of the classic Bears Power and Bull Power MT4 indicators into a 0 to 100 range oscillator (or histogram), where the level 50 would replace the level 0, like in RSI ? The purpose is to keep the characteristics of the values, and the basic...
Hi I want to use filter indicators to filter false signals    what is best indicators I can use it for frame M15 - 4H Frames 
hi guys A question Is there any way to find special customize detail about a chart ? e.g. I want to know the distance of a wave of GBPUSD without 50 pips retracment in 2018 Thanks All
Hi, I am new to MT5 and confused. In MT4 it was easy to get an indicator value, for example: double atr=iATR(Symbol(),PERIOD_CURRENT,10,0); The documentation is kinda difficult for me. How can I get the "atr" value in MT5? How does the above code look like in MT5? Thanks
At the moment i am using bulls and bears powers indicator together.Does exist an indicator that shows the difference between bulls and bears on a 0 x line please. As example if bulls = 30, bears 13 the bar should be 17 over 0 line.
  traditional MACD  (2)
HI  i'm currently using traditional macd on MT5 platform. I confused about the notification sent by the system. for example (in the pic), the notification show: MACD crossed below signal line for USDJPY on 2019.6.7 0735 as highlighted, whereas in the chart (should be 735am ) not shows any line...
hi, anyone have indicator like that? indicator line + 10 and - 10 from daily open thanks
Hi. I am seeking some clarification on calculating the EMA(exponential moving average). Using the  iMA function like so: double arr[3] = {1.3051,1.3041,1.3047};//last three bars' closing prices arraydouble ema1 = iMAOnArray2(arr,2,MODE_EMA,0);// result is 1.30476667double ema2 = iMA(NULL,0,2,0...
Hello, Can someone add alerts to this one with push notification? Thanks in advance!
bought technical indicators bwith credit card but cannot access them on my MT4 platform please SOMEBODY HELPME OUT!!!!
Hello is there a way to read out the current maximum level for a separate chart window? See picture, in this case the 49 Thnak you Hein.
I have acustom indicator I have written. It appears to work - it draws as required in aseparate window and displays Print debug information in the Experts tab to showthat it is working. If I recompile the indicator it reloads and refreshes asexpected. From time to time I suffer from momentary...
Total confused. This doesn't work (result >> bars=0): int OnInit()  {   string chartSymbol=_Symbol;   int bars=Bars(chartSymbol,_Period);   Print("Bars: ",bars);      return(INIT_SUCCEEDED);  } This works (result >> bars=the proper value): int OnInit()  {   int bars=Bars(_Symbol,_Period);...