Stock Portfolio Organizer

The ultimate porfolio management solution.

Shares, Margin, CFD's, Futures and Forex
EOD and Realtime
Dividends and Trust Distributions
And Much More ....
For Portfolio Manager Click Here

WiseTrader Toolbox

#1 Selling Amibroker Plugin featuring:

Advanced Adaptive Indicators
Advanced Pattern Exploration
Neural Networks
And Much More ....
Find Out More Here

Vortex Indicator for Amibroker (AFL)
kaiji
over 14 years ago
Amibroker (AFL)

Rating:
5 / 5 (Votes 2)
Tags:
oscillator, amibroker, trend

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

OBV_RTT Trend Power
Submitted by marcheur over 10 years ago
The Unique Trend Detector
Submitted by chynthia about 14 years ago
TREND INDICATOR WITH CCI
Submitted by sudesh almost 14 years ago
MACD TMS
Submitted by tsunamizawa over 10 years ago
Volume Lines
Submitted by hit2010 over 11 years ago
Volatility Ratio
Submitted by walid over 13 years ago

Indicator / Formula

Copy & Paste Friendly
// 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