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

Stochastic %K & Volume for Amibroker (AFL)
limit
about 14 years ago
Amibroker (AFL)

Rating:
5 / 5 (Votes 2)
Tags:

Quick solution to find Overbrought / Oversold Levels

Screenshots

Indicator / Formula

Copy & Paste Friendly
_SECTION_BEGIN("Background_Setting");
SetChartBkGradientFill( ParamColor("BgTop", colorBlack),
ParamColor("BgBottom", colorBlack),ParamColor("titleblock",colorLightGrey ));
_SECTION_END();

Plot(100,"",7,styleLine);
Plot(70,"", colorOrange, styleDots, styleLine);
Plot(-100,"",1,styleLine);
Plot (30, "", colorOrange, styleDots, styleNoLabel);
Plot(0,"",7,styleLine);

_SECTION_BEGIN("Stoch K");
SetChartOptions(0,0,ChartGrid30 | ChartGrid70 ); 
r = StochK(15); 
Plot( r, "StochK", colorLightYellow ); 
PlotOHLC( r,r,50,r, "", IIf( r > 50, colorGreen, colorRed ), styleCloud | styleClipMinMax, 30, 70 ); 
_SECTION_END();

Plot( Volume, "Volume", colorLightBlue, styleHistogram | styleOwnScale );

_SECTION_BEGIN("trend");
uptrend=PDI(20)>MDI(10)AND Signal(26)<MACD(13);
downtrend=MDI(10)>PDI(20)AND Signal(26)>MACD(13);


Plot( 2, /* defines the height of the ribbon in percent of pane width */"ribbon",
IIf( uptrend, colorGreen, IIf( downtrend, colorRed, 0 )), /* choose color */
styleOwnScale|styleArea|styleNoLabel, -0.5, 100 );

_SECTION_END();

3 comments

1. anbuarchy

nice afl

2. chaiza

Good

3. owied

very Good

Leave Comment

Please login here to leave a comment.

Back