Description
The ADXVMA is a Moving Average Indicator based on Volatility where the Volatility is measured by the value of the ADX. The ADXVMA provides levels of support during uptrends and resistance during downtrends.
u
MM
mmQuant
Joined 19.09.2012
- Type: Free
- Language: C#
- Trading Platform: cTrader Automate
- Filename: AdxVma.algo
- Rating: 5
- Downloads: 5262
Notification Publishing copyrighted material is strictly prohibited. If you believe there is copyrighted material in this section you may use the Copyright Infringement Notification form to submit a claim.
Comments
Only logged in users can post a comment
GA
There might be an error in line 85 ;
_iSeries[index] = ((1 - _k)*_iSeries[1] + _k*diff/sum);
it should be
_iSeries[index] = ((1 - _k)*_iSeries[index-1] + _k*diff/sum);
Based on the formula of exponential moving average
How can i get the source code?