Hi Jeff, Thanks for the wonderful work that you people are doing. Just wondering why the VMA TradingView indicator is not displaying in the current bar. Thanks.ionone wrote:Sat Apr 06, 2019 10:23 pm Hi
i converted the indicator from TradingView in MT4
https://www.tradingview.com/script/6Ix0 ... -LazyBear/
works well with renko and VMA_Length = 4
Re: Trend Indicators for MT4
462because the algorithm is like that. this is part of the algohmwa wrote:Fri Jul 26, 2019 8:31 pm Hi Jeff, Thanks for the wonderful work that you people are doing. Just wondering why the VMA TradingView indicator is not displaying in the current bar. Thanks.
Scalping the Century TimeFrame since 1999
Re: Trend Indicators for MT4
463Esteemed 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
PS: Regarding coeffiofline indicator above I figured out why some were being inverted. Adding a simple minus symbol makes them all show properly.
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
PS: Regarding 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
464Hey 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.
- These users thanked the author Mactormind for the post (total 2):
- Jedidiah, moey_dw
Re: Trend Indicators for MT4
465Looking 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 am Hey 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
466Mactormind wrote:Tue Aug 27, 2019 8:01 am Hey 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.
Used the adx vma and added the price cross alerts.mrtools wrote: Tue Aug 27, 2019 11:50 am Looking in the code noticed it actually is the same as Mladen's adxvma, anyway working on a version to add price cross alerts.
Re: Trend Indicators for MT4
467Added the full price options.mrtools wrote:Tue Aug 27, 2019 11:50 am Looking in the code noticed it actually is the same as Mladen's adxvma, anyway working on a version to add price cross alerts.
- These users thanked the author mrtools for the post (total 2):
- Devvasu525, Jedidiah
Re: Trend Indicators for MT4
468
Thank you so much sir!! This community is awesome!mrtools wrote:Wed Aug 28, 2019 12:53 am Added the full price options.
Re: Trend Indicators for MT4
469Think it was called Tarzan back in the day, this version is using the one more average rsi and the middle channel is a ma of that rsi, the center of the channel you can choose between colored line or dots based on the oma rsi crossing the signal (channel mid line) or oma rsi slope.
Re: Trend Indicators for MT4
470Beautiful. Strong indicator for scalping breakoutsmrtools wrote:Mon Sep 30, 2019 3:27 am Think it was called Tarzan back in the day, this version is using the one more average rsi and the middle channel is a ma of that rsi, the center of the channel you can choose between colored line or dots based on the oma rsi crossing the signal (channel mid line) or oma rsi slope.
