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

STOCH for Amibroker (AFL)
ajeet
about 13 years ago
Amibroker (AFL)

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

With this AFL you can view 30min stoch in 5 min chart

Similar Indicators / Formulas

DTOscillator 2TF 5M-15M
Submitted by hemsvg over 13 years ago
DAILY WEEKLY MACD
Submitted by prasadbrao over 11 years ago
ADX with multiple Timeframe
Submitted by Alphaboyz about 13 years ago
Color Price Bar - Impulse System
Submitted by kaiji about 14 years ago
STORSI
Submitted by taxxghost about 12 years ago
Weekly EMA on Daily Chart
Submitted by rohann almost 10 years ago

Indicator / Formula

Copy & Paste Friendly
_SECTION_BEGIN("Stochastic_30_MINS");
/* By: AJEET SINGH email- mr.ajeetsingh@gmail.com  */
periods = Param( "Periods", 8, 1, 200, 1 );
Ksmooth = Param( "%K avg", 3, 1, 200, 1 );
Dsmooth = Param( "%D avg", 4, 1, 200, 1 );

TimeFrameSet(in1Minute * 30);
k30 = StochK( periods , Ksmooth);
d30 = StochD( periods , Ksmooth, DSmooth );
TimeFrameRestore();

K	=	TimeFrameExpand(k30, in1Minute * 30);
D	=	TimeFrameExpand(d30, in1Minute * 30);

Plot(D, "D", colorRed, styleThick );
Plot(K, "K", colorBlue, styleThick );

Hi = IIf(k > d, k, d);
Lo = IIf(k < d, k, d);

COLOR = IIf(Ref(d,1) > Ref(k,1), colorRed, colorBlue);
//COLOR = IIf(K > D AND (K > 80 OR D > 80) OR D > K AND (K < 20 OR D <20), colorLightGrey, COLOR);

PlotOHLC(Lo,Hi,Lo,Hi,"",COLOR, styleNoLabel | styleCloud);

_SECTION_END();

0 comments

Leave Comment

Please login here to leave a comment.

Back