PureBytes Links
Trading Reference Links
|
Terry,
I have the (-) minus signs to lookback in time. I am trying to get a
scan that finds stocks on a monthly basis that have had a low change
in price (from 0%- 10%- sort of a doji on the monthly charts) each
month, going back 3 months in a row.
My understanding was the (-) minus sign looks BACK....
Thanks,
Brian
--- In amibroker@xxxxxxxxxxxxxxx, Terry <MagicTH@xxxx> wrote:
> Take out the minus signs. They are referencing FUTURE months.
> --
> Terry
>
>
> From: "Brian" <cadvantag@xxxx>
> Reply-To: amibroker@xxxxxxxxxxxxxxx
> Date: Fri, 24 Sep 2004 23:27:00 -0000
> To: amibroker@xxxxxxxxxxxxxxx
> Subject: [amibroker] AA Help
>
> When I run this AA scan I get a crash message. Can someone tell me
> where I went wrong.
>
> I changed the "settings" to monthly and changed the "range" to
> 6/1/04-9/24/04
>
> Thanks,
> Brian
>
>
> zz = ROC(Close,1);
> PM = ( ROC( Close, -1 ) );
> PP = ( ROC( Close, -2 ) );
>
> Buy = zz > 0 AND zz < 10 AND PM > 0 AND PM < 10 AND PP > 0 AND PP < 10;
>
>
>
> [Non-text portions of this message have been removed]
------------------------ Yahoo! Groups Sponsor --------------------~-->
$9.95 domain names from Yahoo!. Register anything.
http://us.click.yahoo.com/J8kdrA/y20IAA/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/
|