PureBytes Links
Trading Reference Links
|
Thanks a million. It works excellently.
God bless you!!!
--- In amibroker@xxxxxxxxxxxxxxx, "Anthony Faragasso" <ajf1111@xxxx>
wrote:
> //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@xxxx>
> 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 --------------------~-->
Yahoo! Domains - Claim yours for only $14.70
http://us.click.yahoo.com/Z1wmxD/DREIAA/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/
|