PureBytes Links
Trading Reference Links
|
The respective StochD-adjustable EMA is also interesting.
//The StochD-adjustable EMA, by D. Tsokakis, Oct2004
t=Param("t",10,10,30,5);
y=StochD(t)/100;StochD_ema1=C;StochD_ema2=C;
for(i=t+6;i<BarCount;i++)
{
StochD_ema1[i]=y[i]*C[i]+(1-y[i])*StochD_ema1[i-1];
StochD_ema2[i]=(1-y[i])*C[i]+y[i]*StochD_ema2[i-1];
}
Plot(C,"C",1,8);
Plot(StochD_ema1,"StochD_ema1",colorRed,1);
Plot(StochD_ema2,"StochD_ema2",colorBrightGreen,1);
//Plot(StochD(t),"StochD",colorWhite,styleOwnScale);
--- In amibroker@xxxxxxxxxxxxxxx, amibroker@xxxxxxxxxxxxxxx wrote:
>
>
> Hello,
>
> This email message is a notification to let you know that
> a file has been uploaded to the Files area of the amibroker
> group.
>
> File : /RSIema.txt
> Uploaded by : dtsokakis <TSOKAKIS@xxxx>
> Description : Two RSI-adjustable EMAs
>
> You can access this file at the URL:
> http://groups.yahoo.com/group/amibroker/files/RSIema.txt
>
> To learn more about file sharing for your group, please visit:
> http://help.yahoo.com/help/us/groups/files
>
> Regards,
>
> dtsokakis <TSOKAKIS@xxxx>
------------------------ Yahoo! Groups Sponsor --------------------~-->
Make a clean sweep of pop-up ads. Yahoo! Companion Toolbar.
Now with Pop-Up Blocker. Get it for free!
http://us.click.yahoo.com/L5YrjA/eSIIAA/yQLSAA/GHeqlB/TM
--------------------------------------------------------------------~->
Check AmiBroker web page at:
http://www.amibroker.com/
Check group FAQ at: http://groups.yahoo.com/group/amibroker/files/groupfaq.html
Yahoo! Groups Links
<*> To visit your group on the web, go to:
http://groups.yahoo.com/group/amibroker/
<*> 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/
|