Category Trend  at 05/10/2012

ADX VMA

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.

 

adxvma


u

MM
mmQuant

Joined 19.09.2012

  • Type: Free
  • Language: C#
  • Trading Platform: cTrader Automate
  • Filename: AdxVma.algo
  • Rating: 5
  • Downloads: 5262
Comments
Only logged in users can post a comment
HI
higorcairo · 1 month ago

How can i get the source code?

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