PureBytes Links
Trading Reference Links
|
/*
DarkYellow ? Stochastic ? Period 7 :SK 3: SD 1 ? Simple
Green ? Stochastic ? Period 5 :SK 3: SD 1 - Expotential
Blue ? Stochastic ? Period 17 :SK 3: SD 3 - Expotential
*/
STOCH1 = MA( StochD( 7 , 3 , 1 ) , 1 );
STOCH2 = EMA( StochD( 5 , 3 , 1 ) , 1 );
STOCH3 = EMA( StochD( 17 , 3 , 3 ) , 1 );
Plot( STOCH1 , "Stoch#1", colorDarkYellow, styleLine );
Plot( STOCH2 , "Stoch#2", colorGreen, styleLine );
Plot( STOCH3 , "Stoch#3", colorBlue, styleLine );
--- In amibroker@xxxxxxxxxxxxxxx, "areehoi" <areehoi@xxx> wrote:
>
> Help would most appreciate in converting the below TC 2005
Stochastic
> formula into an Amibroker AFL including the PLOT part. My most
> profound thanks for any help given. Thanks
>
> Dick H.
>
> DarkYellow ? Stochastic ? Period 7 :SK 3: SD 1 ? Simple
> Green ? Stochastic ? Period 5 :SK 3: SD 1 - Expotential
> Blue ? Stochastic ? Period 17 :SK 3: SD 3 - Expotential
>
------------------------------------
**** IMPORTANT ****
This group is for the discussion between users only.
This is *NOT* technical support channel.
*********************
TO GET TECHNICAL SUPPORT from AmiBroker please send an e-mail directly to
SUPPORT {at} amibroker.com
*********************
For NEW RELEASE ANNOUNCEMENTS and other news always check DEVLOG:
http://www.amibroker.com/devlog/
For other support material please check also:
http://www.amibroker.com/support.html
*********************************
Yahoo! Groups Links
<*> To visit your group on the web, go to:
http://groups.yahoo.com/group/amibroker/
<*> Your email settings:
Individual Email | Traditional
<*> To change settings online go to:
http://groups.yahoo.com/group/amibroker/join
(Yahoo! ID required)
<*> To change settings via email:
mailto:amibroker-digest@xxxxxxxxxxxxxxx
mailto:amibroker-fullfeatured@xxxxxxxxxxxxxxx
<*> To unsubscribe from this group, send an email to:
amibroker-unsubscribe@xxxxxxxxxxxxxxx
<*> Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
|