Search found 6 matches

Return

Re: MACD indicators for MT4

by: khtauon
Hi everyone. Just joined this site yesterday, so I guess I will start by contributing one of the MACD indicators I created called MACD Momentum & Trend Index. It's an idea that I had came up with when I just started to learn coding and studying indicators. The idea is to measure the momentum of ...

Re: MACD indicators for MT4

by: khtauon
Incredible! Thanks for joining and posting this very interesting indicator, I love this. I like how it has the look of the Bollinger Band Squeeze. Any chance a future update will allow us to adjust the widths? I don't want to tamper with your code :razz: PS: Your choice of colors are also very cool...

Re: MACD indicators for MT4

by: khtauon
Instead of limiting the number of calculated bars, change line 287 from this : return(0); to this return(rates_total); Right now with default settings, the indicator will calculate 4000 bars on each tick and I doubt that it will beat the 1 calculated bar on a new tick when that line is changed Also...

Re: MACD indicators for MT4

by: khtauon
Please When you state thing like "my coding" you should state the origin of the code too I know that igorad is not posting on this forum, but when you use his code and ad a couple of lines, it, at the least, should be appropriate that you mention whose code actually you are posting Yeah y...

Re: Volatility Indicators for MT4

by: khtauon
Percentile Filtered ATR Since its introduction in 1978 by J. Welles Wilder, Average True Range (ATR) has been one of the popular ways for traders to measure volatility in the market (or the “bounciness” of price movement). The indicator is commonly used for position sizing as well as establishing p...