Stock Portfolio Organizer
The ultimate porfolio management solution.
WiseTrader Toolbox
#1 Selling Amibroker Plugin featuring:
Vortex Indicator for Amibroker (AFL)
The vortex indicator was developed as a new directional movement indicator, drawing inspiration from J. Welles Wilder’s directional movement indicator, as well as another unrelated and improved directional indicator.
Screenshots
Similar Indicators / Formulas
Indicator / Formula
// Vortex Indicator // S&C Traders Tips Jan 2010 period = Param("Period", 14, 2 ); VMP = Sum( abs( H - Ref( L, -1 ) ), period ); VMM = Sum( abs( L - Ref( H, -1 ) ), period ); STR = Sum( ATR( 1 ), period ); VIP = VMP / STR; VIM = VMM / STR; Plot( VIP, "VI"+period+"+", colorBlue); Plot( VIM, "VI"+period+"-", colorRed );
0 comments
Leave Comment
Please login here to leave a comment.
Back