Basics in Amibroker

amitrandive

Well-Known Member
#11
Respectful sir, good evening,
sir i want information regarding stochastic

Respectful sir, good evening,
sir i want information regarding stochastic

in amibroker stochastic is a not available in 1 PIECE.
we have to take %k & %d seperatelly, then we have to overlap them on eachother to get final stochastic
UNDER STOCHASTIC %D there are 3 point to fill.
period = ? , %k = ?, %d = ?.

And UNDER STOCHASTIC %K there are 2 points to fill.
period = ? , %k = ?.

AND HERE , which should be a dotted indicator %k or %d.

AND IS THIS CONFIGURATION ONLY IMPORTANT OR THERE IS SEPARATE FAST STOCHASTIC AND SLOW STOCHASTIC AVAILBALE.

IF I REQUIRE STOCHASTIC (5,3,12) THEN PLEASE TELL ME HOW I SHOULD CONFIGURE . PLEASE SIR & team members i.e., traderji members please guide me this much.
i searched videos regarding amibroker but not got clear answer hence asking, thanks in advance.

PLEASE SIR & team members i.e., traderji members please guide me regarding this issue.
i searched videos regarding amibroker but not got clear answer hence asking, thanks in advance.
Note: = the above configuration regarding stochastic is for understanding how to configure , i don't use this configuration.
Stochastic code,change requirements from parameters.

Code:
SP = Param( "Periods", 10, 1, 200, 1 );
Ksmooth = Param( "%K avg", 5, 1, 200, 1 );
Dsmooth = Param( "%D avg", 5, 1, 200, 1 );
StochDval = StochD( SP , Ksmooth, DSmooth );
StochKval = StochK( SP , Ksmooth);
 
Overbought = 80;
Oversold = 20;
 
 
Plot( StochD( SP , Ksmooth, DSmooth), _DEFAULT_NAME(), ParamColor( "ColorD", colorLavender ), ParamStyle("Style") );
Plot( StochK( SP , Ksmooth), _DEFAULT_NAME(), ParamColor( "ColorK", colorRed ), ParamStyle("Style") );
 
Plot(Overbought,"Overbought Level",colorRed);
Plot(Oversold,"Oversold Level",colorGreen);
 

vijayanscbe

Well-Known Member
#12
UNDER STOCHASTIC %D there are 3 point to fill.
period = ? , %k = ?, %d = ?.
period =5, %k = 3, %d = 12.
%D is slower.


And UNDER STOCHASTIC %K there are 2 points to fill.
period = ? , %k = ?.

period = 5, %k =3.
%K is faster.
In Ami %D(5,3,12) + %k(5,3) = stoch(5,3,12).
 
#14
stochastic code,change requirements from parameters.

Code:
sp = param( "periods", 10, 1, 200, 1 );
ksmooth = param( "%k avg", 5, 1, 200, 1 );
dsmooth = param( "%d avg", 5, 1, 200, 1 );
stochdval = stochd( sp , ksmooth, dsmooth );
stochkval = stochk( sp , ksmooth);
 
overbought = 80;
oversold = 20;
 
 
plot( stochd( sp , ksmooth, dsmooth), _default_name(), paramcolor( "colord", colorlavender ), paramstyle("style") );
plot( stochk( sp , ksmooth), _default_name(), paramcolor( "colork", colorred ), paramstyle("style") );
 
plot(overbought,"overbought level",colorred);
plot(oversold,"oversold level",colorgreen);


thanks a lot sir thanks from bottom of my heart :)


and also thanks to all members and traderji platform for helping students who are beginner like me , thanks a lot

:)
 
#15
In Ami %D(5,3,12) + %k(5,3) = stoch(5,3,12).
SIR please don't mind it
but i am just doing practice for 1 time . my last question please

please tell me I SOLVE EXAMPLES , that am i correct?

EXAMPLE 1
if i require stochastic (5,3,9)
then i wll write down as follows,

UNDER STOCHASTIC %D there are 3 point to fill.
period =5, %k = 3, %d = 9.
%D is slower.

And UNDER STOCHASTIC %K there are 2 points to fill.
period = 5, %k =3.
%K is faster.

EXAMPLE (2)
if i require stochastic (5,3,9)
then i wll write down as follows,

UNDER STOCHASTIC %D there are 3 point to fill.
period =5, %k = 3, %d = 9.
%D is slower.

And UNDER STOCHASTIC %K there are 2 points to fill.
period = 5, %k =3.
%K is faster.


if i require stochastic (5,3,3)
then i wll write down as follows,

UNDER STOCHASTIC %D there are 3 point to fill.
period =5, %k = 3, %d = 3.
%D is slower.

And UNDER STOCHASTIC %K there are 2 points to fill.
period = 5, %k =3.
%K is faster.


EXAMPLE (3)
if i require stochastic (10,3,3)
then i wll write down as follows,

UNDER STOCHASTIC %D there are 3 point to fill.
period =10, %k = 3, %d = 3.
%D is slower.

And UNDER STOCHASTIC %K there are 2 points to fill.
period = 3, %k =3.
%K is faster.
is it correct sir
you may think i am dumb,
but i don't have any other friend with whom i can discuss this hence i asking
thanks in advance.

THAT'S IT SIR LASTLY, PLEASE TELL ME REGARDING THIS MUCH PLEASE.
THANKS A LOT ALL. :)
 

Similar threads