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 w/ Histogram for Amibroker (AFL)
chaika
about 14 years ago
Amibroker (AFL)

Rating:
5 / 5 (Votes 1)
Tags:
oscillator, amibroker, histogram

The vortex indicator with histogram is similar to the ADX indicator, except that it combines pdi and mdi into one easy to read chart. Use in an indicator pane below the price chart.

Similar Indicators / Formulas

Ergodic Candle Oscillator
Submitted by kaiji over 14 years ago
MACD Histogram
Submitted by mrugen about 14 years ago
Wilson Sentiment Index
Submitted by Xswingtrader almost 14 years ago
Special KADX Oscillator
Submitted by investor about 14 years ago
Ultimate Trend Cycle
Submitted by investor about 14 years ago
Color MACD
Submitted by jnwr25 almost 14 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 );


Hist      = VIP - VIM;
HistPrev  = Ref(Hist,-1);

Color = IIf(Hist>HistPrev,colorCustom9,
IIf(hist<HistPrev,colorRed,colorWhite));

Plot( Hist*1.02, "", color, styleDots+styleNoLine+styleNoLabel);
Plot( Hist*1.01, "", color, styleDots+styleNoLine+styleNoLabel);

Color = IIf(Hist>0,colorCustom11,
IIf(hist<0,colorCustom8,colorWhite));


Plot( Hist, "", color, styleHistogram+styleOwnScale+styleThick );

0 comments

Leave Comment

Please login here to leave a comment.

Back