PureBytes Links
Trading Reference Links
|
//Period=13, Method=Simple, Apply to=(High + Low)/2, Shift=0,
//Colour=Blue
//Period=20, Method=Simple, Apply to=(High + Low)/2, Shift=0,
//Colour=Thick Red
periodfast=13;
periodslow=20;
price=(High+Low)/2;
Plot(C,"close",colorBlack,styleCandle);
Plot(MA(price,periodfast),"FastAvg",colorGreen,styleLine);
Plot(MA(price,periodslow),"slowAvg",colorRed,styleLine);
----- Original Message -----
From: "gantua98" <gantua98@xxxxxxxxxxx>
To: <amibroker@xxxxxxxxxxxxxxx>
Sent: Thursday, August 12, 2004 8:54 AM
Subject: [amibroker] Help in creating Script file
> Using AMIBROKER, Could anyone kindly help in compiling a script file
> for a Simple Moving Average. I've got no Java programming skills.
>
> I wish to do it for the following bar time periods:
>
>
> Period=13, Method=Simple, Apply to=(High + Low)/2, Shift=0,
> Colour=Blue
>
> Period=20, Method=Simple, Apply to=(High + Low)/2, Shift=0,
> Colour=Thick Red
>
>
> Regards,
> Gantua98
>
>
>
>
> 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
>
>
>
>
>
------------------------ 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/
|