Code Amibroker Indicators

The Stochastic Oscillator for Amibroker

Stochastic is an oscillator that measures the position of a stock OR security compared with its recent trading range indicating overbought OR oversold conditions.It displays current Day price at a percentage relative to the security’s trading range (High/Low) over the…

December 28, 2018 by admin
Code Amibroker Indicators

Vertical Horizontal Filter For Removing False Signals From Trading System

The VHF indicator measure wether the price is going horizontal (non-directional) or vertical (uni-directional), no indicator in technical analysis has this capacity. SetBarsRequired(sbrAll,sbrAll); VHFP = Param( “VHFPERIOD”, 20, 2, 100, 1 ); HCP = HHV( C, VHFP ); LCP = LLV( C,…

December 28, 2018 by admin