PureBytes Links
Trading Reference Links
|
Hello,
In AA...n last quotations and n=1, click explore:
x=Cross(C,MA(C,28));//simple condition1
y=Cross(C,MA(C,108));//simple condition2
Counterx=Cum(x);// (???)
Countery=Cum(y);// (???)
Filter=1;//x > 0 OR y > 0;
AddColumn(Counterx,"HowManyTimes x",1);
AddColumn(Countery,"HowManyTimes y",1);
Anthony
-------Original Message-------
From: amibroker@xxxxxxxxxxxxxxx
Date: Saturday, May 17, 2003 9:36:50 PM
To: amibroker@xxxxxxxxxxxxxxx
Subject: [amibroker] Re: programming 101A
Sorry to jump in but I'd like to do kind of the same thing
at the last bar in Explorer with n=1 "n last quotations"
No Plots, no AddtoComposite no ABtool
Plain AFL
Pseudo - code :)
x=Cross(C,MA(C,28));//simple condition1
y=Cross(C,MA(C,108));//simple condition2
Counterx='how many times x (???)
Countery='how many times y (???)
Filter=x or y;
AddColumn(Counterx,"HowManyTimes x",1);
AddColumn(Countery,"HowManyTimes y",1);
...so far from my limited understanding is not possible
or am I missing the obvious?
thx
AddColumn(Counterx,"Crossed28",1);
--- In amibroker@xxxxxxxxxxxxxxx, Sidney Kaiser <s9kaiser@xxxx> wrote:
> Yes to the date range and yes, that was the conclusion I reached
> also. Cum(x) is counting over all the data available and seems to
ignore
> the fact that a date range is specified. No joy....
> Sid
>
> At 09:08 PM 5/17/2003 -0400, you wrote:
>
> >Are you trying to count a condition within a specific date
range....?
> >
> >As it is... the formula is counting the number of times that the
condition
> >has occured in the entire
> >Data history....
> >
> >-------Original Message-------
> >
> >From: amibroker@xxxxxxxxxxxxxxx
> >Date: Saturday, May 17, 2003 8:57:35 PM
> >To: amibroker@xxxxxxxxxxxxxxx
> >Subject: Re: [amibroker] programming 101A
> >
> >At 08:34 PM 5/17/2003 -0400, you wrote:
> >
> > >Sid,
> > >
> > >x=Cross(C,MA(C,28));//simple condition
> > >Counter=Cum(x);
> > >Filter=1;
> > >AddColumn(Counter,"",1);
> > >
> > >Is this a start...Does it help
> > >
> > >Anthony
> >
> >
> >counter = cum(x) was one of the first things I tried. On the
very first
> >line of the debug exploration I was getting counter values of 117
with my
> >logic, which made no sense to me at all as it should have been
counter = 1
> >about 6 lines down in the exploration output.
> >
> >
> >???
> >Sid
> >
> >Yahoo! Groups Sponsor
> >
> >
> >
> >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/)
>http://groups.yahoo.com/group/amiquote/messages/)
> >--------------------------------------------
> >Check group FAQ at:
>
><http://groups.yahoo.com/group/amibroker/files/groupfaq>http://groups
..yahoo.com/group/amibroker/files/groupfaq
> >html
> >
> >Your use of Yahoo! Groups is subject to the Yahoo! Terms of
Service.
> >
> >
> >
> >Yahoo! Groups Sponsor
> >ADVERTISEMENT
>
><http://rd.yahoo.com/M=249234.3060939.4604672.1261774/D=egroupweb/S=1
705632198:HM/A=1588299/R=0/*http://entk.net/a/4749/b/66/c/303/d/1/e/89
7?lineid=3060939>4f8619d.jpg
> >4f86249.jpg
> >
> >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/)
>http://groups.yahoo.com/group/amiquote/messages/)
> >--------------------------------------------
> >Check group FAQ at:
>
><http://groups.yahoo.com/group/amibroker/files/groupfaq.html>http://g
roups.yahoo.com/group/amibroker/files/groupfaq.html
> >
> >
> >Your use of Yahoo! Groups is subject to the
> ><http://docs.yahoo.com/info/terms/>Yahoo! Terms of Service.
> >---
> >Incoming mail is certified Virus Free.
> >Checked by AVG anti-virus system (http://www.grisoft.com).
> >Version: 6.0.481 / Virus Database: 277 - Release Date: 5/13/2003
>
>
>
> ---
> Outgoing mail is certified Virus Free.
> Checked by AVG anti-virus system (http://www.grisoft.com).
> Version: 6.0.481 / Virus Database: 277 - Release Date: 5/13/2003
Yahoo! Groups Sponsor
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 the Yahoo! Terms of Service.
------------------------ Yahoo! Groups Sponsor ---------------------~-->
Get A Free Psychic Reading! Your Online Answer To Life's Important Questions.
http://us.click.yahoo.com/Lj3uPC/Me7FAA/uetFAA/GHeqlB/TM
---------------------------------------------------------------------~->
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/
|