PureBytes Links
Trading Reference Links
|
Excellent, thank you for your help people!!
Did not know about 'FOREIGN'.
regards.
--- In amibroker@xxxxxxxxxxxxxxx, "Terry" <MagicTH@xxx> wrote:
>
> XAO = Foreign("XAO","Close"); //Assumes you have the ticker XAO
> MA_XAO = MA(XAO,20); //Simple Moving Average of XAO
> MA_C = MA(C,20); //SMA of selected Symbol
>
> Buy = XAO > MA_XAO AND Cross(C,MA_C);
> Sell = your conditions;
>
> //Buys on the day selected symbol crosses it's own 20 day MA, PROVIDED
> XAO is above it's own 20 day MA. You can't use two crosses, because odds
> are they will never happen on the same day.
> --
> Terry
> -----Original Message-----
> From: amibroker@xxxxxxxxxxxxxxx [mailto:amibroker@xxxxxxxxxxxxxxx] On
> Behalf Of bchris888au
> Sent: Sunday, March 12, 2006 17:10
> To: amibroker@xxxxxxxxxxxxxxx
> Subject: [amibroker] AFL Question
>
> Hello,
>
> I want to back test a system that only enters if the index XAO has a
> moving average cross over.
>
> For example, if the XAO's close is greater than it's twenty day moving
> average and company XYZ's close is greater than it's own 24 day moving
> average, then buy.
>
> However, I'm not shaw how to write the XAO filter part into the
> backtest...
>
> Help.
>
>
>
>
>
>
>
> Please note that this group is for discussion between users only.
>
> To get support from AmiBroker please send an e-mail directly to
> SUPPORT {at} amibroker.com
>
> For other support material please check also:
> http://www.amibroker.com/support.html
>
>
> Yahoo! Groups Links
>
------------------------ Yahoo! Groups Sponsor --------------------~-->
Try Online Currency Trading with GFT. Free 50K Demo. Trade
24 Hours. Commission-Free.
http://us.click.yahoo.com/RvFikB/9M2KAA/U1CZAA/GHeqlB/TM
--------------------------------------------------------------------~->
Please note that this group is for discussion between users only.
To get support from AmiBroker please send an e-mail directly to
SUPPORT {at} amibroker.com
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/
<*> 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/
|