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 ....
WiseTrader Toolbox
#1 Selling Amibroker Plugin featuring:
Advanced Adaptive Indicators
Advanced Pattern Exploration
Neural Networks
And Much More ....
stock kd for Amibroker (AFL)
Copy & Paste Friendly
Back
_SECTION_BEGIN(" Stoch KD Cloud");periods = Param( "Periods", 15, 1, 200, 1 );Ksmooth = Param( "%K avg", 3, 1, 200, 1 );a = StochK( periods , Ksmooth);Plot( a, _DEFAULT_NAME(), ParamColor( "Color", colorBlue ), ParamStyle("Style") );Dsmooth = Param( "%D avg", 3, 1, 200, 1 );b = StochD( periods , Ksmooth, DSmooth );Plot( b, _DEFAULT_NAME(), ParamColor( "Color", colorRed ), ParamStyle("Style") ); PlotOHLC( a,a,b,a,"", IIf(a>b, colorBlue, colorRed), styleCloud); Overbought= 80; Oversold= 20;Plot(Overbought,"OB",colorRed);Plot(Oversold,"OS",colorGreen); Buy = Cross( a, b );Sell = Cross( b, a ); _SECTION_END();