Page 47 of 158

Re: Trend Indicators for MT4

Posted: Fri Jul 26, 2019 8:31 pm
by hmwa
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
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.

Re: Trend Indicators for MT4

Posted: Fri Jul 26, 2019 11:41 pm
by ionone
hmwa 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.
because the algorithm is like that. this is part of the algo

Re: Trend Indicators for MT4

Posted: Sat Jul 27, 2019 1:00 am
by Bleemus
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

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

Posted: Tue Aug 27, 2019 8:01 am
by Mactormind
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

Posted: Tue Aug 27, 2019 11:50 am
by mrtools
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.
Image
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

Posted: Tue Aug 27, 2019 1:23 pm
by mrtools
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.
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.
Used the adx vma and added the price cross alerts.

Re: Trend Indicators for MT4

Posted: Wed Aug 28, 2019 12:53 am
by mrtools
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.
Added the full price options.

Re: Trend Indicators for MT4

Posted: Wed Aug 28, 2019 10:21 am
by Mactormind
mrtools wrote:Wed Aug 28, 2019 12:53 am Added the full price options.
Thank you so much sir!! This community is awesome!

Re: Trend Indicators for MT4

Posted: Mon Sep 30, 2019 3:27 am
by mrtools
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.

Re: Trend Indicators for MT4

Posted: Mon Sep 30, 2019 6:37 pm
by Jimmy
mrtools 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.
Beautiful. Strong indicator for scalping breakouts :problem: