PureBytes Links
Trading Reference Links
|
you could try something like this
UpGap = ValueWhen( DateNum() != Ref( DateNum(), -1 ), GapUp() ); //gap
at first bar of day
UpOpen = ValueWhen( DateNum() != Ref( DateNum(), -1 ), O ); //open at
first bar of day
UpClose = ValueWhen( DateNum() != Ref( DateNum(), -1 ), Ref(C,-1) );
//close at last bar of previous day
Filter = upgap;
AddColumn(upgap,"gap",1);
AddColumn(Upclose ,"close",1.3);
AddColumn(UpOpen ,"open",1.3);
On 6/12/05, Mark Keitel <mkeitel@xxxxxxxxxxxxxxx> wrote:
>
>
> I am new to the group and to Amibroker
>
> Have been using Telechart2005 for a while and now Amibroker
>
>
>
> My question is
>
>
>
> Is there a afl script for one to scan/explore for "gappers" at markets
> open?
>
> Would like to be able to scan the whole stock data base for that
>
>
>
> Thank you
>
>
>
>
>
> Mark
>
>
>
> 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 the Yahoo! Terms of Service.
--
Cheers
Graham
http://e-wire.net.au/~eb_kavan/
------------------------ Yahoo! Groups Sponsor --------------------~-->
In low income neighborhoods, 84% do not own computers.
At Network for Good, help bridge the Digital Divide!
http://us.click.yahoo.com/EpW3eD/3MnJAA/cosFAA/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/
|