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

Wilson Sentiment Index for Amibroker (AFL)

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

Translated from Metastock code from the book “The Next Step to Trading Success” by Leon Wilson.

By Xswingtrader at xswingtrader@gmail.com

Screenshots

Similar Indicators / Formulas

Ergodic Candle Oscillator
Submitted by kaiji over 14 years ago
Vortex Indicator w/ Histogram
Submitted by chaika about 14 years ago
MACD Histogram
Submitted by mrugen about 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
MaxVol=2*EMA(V,50);
Adjustment=V-(V-MaxVol);
Value=IIf(V>MaxVol,Adjustment,IIf(V<MaxVol,V,V));
Up=IIf(C>Ref(C,-1),(C-Ref(C,-1))*Value,(C-Ref(C,-1))*Value);
Down=IIf(C<Ref(C,-1),(Ref(C,-1)-C)*Value,(Ref(C,-1)-C)*Value);

S=EMA(Sum(up,21)-Sum(down,21),3);

Plot( S, "Sentiment Index", ParamColor( "SI Color", colorBlue), ParamStyle("SI Style", styleHistogram | styleThick));

Plot(0,"",ParamColor("ZeroColor", colorRed),styleLine);

0 comments

Leave Comment

Please login here to leave a comment.

Back