PureBytes Links
Trading Reference Links
|
Thanks Jayson. Quick question, why bother applying the filter of
C>0 -- since there aren't any negative closing prices then why put
it into the auto analyzer? Also I've tried the addcolumn command in
the past and haven't had much luck getting it to pop up on the
scans. I copied and pasted your formula into the analyzer and again
the new columns were not added onto the scan results. Any idea what
I may be doing wrong?
--- In amibroker@xxxxxxxxxxxxxxx, "Jayson" <jcasavant@xxxx> wrote:
> You may be getting no signals because the two indicators you are
measuring
> are so different. try this exploration to see your values...
>
>
> Filter=C>0;
> AddColumn(ROC(C,14),"ROC");
> AddColumn(MA(C,20),"MA");
> AddColumn(C,"Close");
>
> To see how cross works try applying it to something like close and
its ma
>
> cross(c,ma(c,20);
>
>
> Jayson
> -----Original Message-----
> From: the_chairmann [mailto:jhart_1972@x...]
> Sent: Thursday, March 13, 2003 8:53 AM
> To: amibroker@xxxxxxxxxxxxxxx
> Subject: [amibroker] Formula question
>
>
> I'm new to the programming language and am trying to familiarize
> myself with AFL. I'm currently trying to learn the "cross"
function
> by puting in a simple moving avg crossing a ROC indicator scan. I
> don't know why this is such a struggle b/c it looks relatively easy
> from the user's guide.
>
> Here's what I have...
> Buy= Cross(ROC(14),MA(Close,20));
>
> any help would appreciated
>
>
> Yahoo! Groups Sponsor
> ADVERTISEMENT
>
>
>
>
> 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
>
> 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
Your use of Yahoo! Groups is subject to http://docs.yahoo.com/info/terms/
|