Esteemed and talented Programmers,
Any chance of getting this indicator modified?
Would like a moving average added to act as a signal line.
As you can see it runs inverted on some pairs. Being able to have an input for it to invert so it is showing correct on all charts would be fantastic.
As a final request if you were able to add regular and hidden divergences it would be the most beautiful day for me!
Regards and thank you for your consideration!
Bleemus
Re: Trend Indicators for MT4
#612Regarding coeffiofline indicator above I figured out why some were being inverted. Adding a simple minus symbol makes them all show properly.
Code: Select all
AY=(TYVar+(N-2*ZYVar)*ndot/M)/M;
AIndicator=(TIndicatorVar+(N-2*ZIndicatorVar)*ndot/M)/M;
if (Symbol()=="EURUSD" || Symbol()=="GBPUSD" || Symbol()=="USDCAD" || Symbol()=="USDCHF"
|| Symbol()=="EURGBP" || Symbol()=="EURCHF" || Symbol()=="AUDUSD"
|| Symbol()=="GBPCHF")
[b] {cfl[shift]=(-1000)*MathLog(AY/AIndicator);}
else {cfl[shift]=(1000)*MathLog(AY/AIndicator);}[/b]
shift--;
}
return(0);
Re: Trend Indicators for MT4
#613Hey guys, im still somewhat new to "changing indicators" so forgive my ignorance...but is it possible to get a push notification for this whenever price crosses it? This is a brilliant indicator when used as a baseline, especially when using Renko.
-
- VMA TradingView v2.ex4
- (14.27 KiB) Downloaded 217 times
-
- VMA TradingView v2.mq4
- (4.71 KiB) Downloaded 285 times
Re: Trend Indicators for MT4
#614Looking in the code noticed it actually is the same as Mladen's adxvma, anyway working on a version to add price cross alerts.Mactormind wrote: ↑Tue Aug 27, 2019 8:01 amHey guys, im still somewhat new to "changing indicators" so forgive my ignorance...but is it possible to get a push notification for this whenever price crosses it? This is a brilliant indicator when used as a baseline, especially when using Renko.
Re: Trend Indicators for MT4
#615Used the adx vma and added the price cross alerts.mrtools wrote: ↑Tue Aug 27, 2019 11:50 amLooking in the code noticed it actually is the same as Mladen's adxvma, anyway working on a version to add price cross alerts.Mactormind wrote: ↑Tue Aug 27, 2019 8:01 amHey guys, im still somewhat new to "changing indicators" so forgive my ignorance...but is it possible to get a push notification for this whenever price crosses it? This is a brilliant indicator when used as a baseline, especially when using Renko.
-
- AdxVma alerts.ex4
- (29.04 KiB) Downloaded 418 times
Re: Trend Indicators for MT4
#617Added the full price options.
-
- AdxVma (alerts).ex4
- (39.57 KiB) Downloaded 372 times
Re: Trend Indicators for MT4
#619hi i was after some advice on Renko and how to use it - is it suitable for tech index sp500 and the dow?
i see you can add other indicators to it too ? do these have to be coded in or can you add them like your adding them to your normal chart?
many thanks
i see you can add other indicators to it too ? do these have to be coded in or can you add them like your adding them to your normal chart?
many thanks
Re: Trend Indicators for MT4
#620Renko can be used, just be aware that most Renko's I'm aware of repaint, so best to be careful with them, and yes you can add regular indicators like on a normal chart.