PureBytes Links
Trading Reference Links
|
Thanks for the suggestions.
When I use the code the last buy is shown.
Buy = ExRem(Buy, Sell);
Sell = ExRem(Sell, Buy);
Filter=Status("LastBarInTest") AND Buy;
ExRem get rid of the excessive signal on the graph but,
I would like to search just the first buy signal after a sell not the
last excessive signal.
Thanks
Marty
--- In amibroker@xxxxxxxxxxxxxxx, "Herman van den Bergen"
<psytek@xxxx> wrote:
> If with today you mean the last data bar then you can use:
>
> Filter=Status("LastBarInTest") AND Buy;
> or
> Filter = Status("LastBarInRange") AND Buy;
> or you can set the AA Range to n-LastQuotations=1
>
> Read about the difference in Help.
> herman
>
>
> -----Original Message-----
> From: prog200 [mailto:prog200@x...]
> Sent: Wednesday, April 14, 2004 6:14 PM
> To: amibroker@xxxxxxxxxxxxxxx
> Subject: [amibroker] Filter question
>
>
> I would like to get only todays buy signal when Explorer is used
on a
> watch list.
>
> I tried the following and get all the buys
>
> Filter = Ref(Buy,0);
>
>
> I been trying to find something like:
>
> Filter = Ref(Buy,0) AND todaydate; // shows only today buy for
each
> stock in Explorer window
>
> Suggestions welcome
>
> Thanks
>
> Marty
>
>
>
> Send BUG REPORTS to bugs@xxxx
> Send SUGGESTIONS to suggest@xxxx
> -----------------------------------------
> Post AmiQuote-related messages ONLY to: amiquote@xxxxxxxxxxxxxxx
> (Web page: http://groups.yahoo.com/group/amiquote/messages/)
> --------------------------------------------
> Check group FAQ at:
> http://groups.yahoo.com/group/amibroker/files/groupfaq.html
>
>
>
> --------------------------------------------------------------------
--------
> --
> Yahoo! Groups Links
>
> a.. To visit your group on the web, go to:
> http://groups.yahoo.com/group/amibroker/
>
> b.. To unsubscribe from this group, send an email to:
> amibroker-unsubscribe@xxxxxxxxxxxxxxx
>
> c.. Your use of Yahoo! Groups is subject to the Yahoo! Terms of
Service.
Send BUG REPORTS to bugs@xxxxxxxxxxxxx
Send SUGGESTIONS to suggest@xxxxxxxxxxxxx
-----------------------------------------
Post AmiQuote-related messages ONLY to: amiquote@xxxxxxxxxxxxxxx
(Web page: http://groups.yahoo.com/group/amiquote/messages/)
--------------------------------------------
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/
|