PureBytes Links
Trading Reference Links
|
Easiest is to use the Cross function
MA10=MA(C,10);
Buy= Cross( MA10, Ref(MA10,-1) );
Sell=Cross( Ref(MA10,-1), MA10 );
On 11/3/05, ianjw2 <ijw@xxxxxxxxxxxxxxx> wrote:
>
> I want to be able to scan a list of symbols and get signals that are
> initiated for today only.
>
> For example - if I scan the ASX200 with the simple system below, I get
> a list of all stocks that are rising or falling on the scan date. But,
> what I want is only those stocks that actually trigger today. Is this
> possible to do using the system filter, or does one have to rewrite the
> code to capture only the trigger signals? My system is bit more complex
> than the one below, and for me, it would be a bit of a chore to
> rewrite. If I did go to all that trouble, and then find there is a
> simple solution, I would be a bit miffed.
>
> Cheers
> Ian
>
>
>
> MA10=MA(C,10);
>
> Buy=MA10>Ref(MA10,-1);
> Sell=MA10<Ref(MA10,-1);
>
>
>
>
>
>
> 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
>
>
>
>
>
>
>
--
Cheers
Graham
AB-Write >< Professional AFL Writing Service
Yes, I write AFL code to your requirements
http://e-wire.net.au/~eb_kavan/ab_write.htm
------------------------ 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/
|