PureBytes Links
Trading Reference Links
|
Brian,
Are your tickers in a watchlist ?
Anthony
<BLOCKQUOTE
>
----- Original Message -----
<DIV
>From:
Brian
Elijah
To: <A title=amibroker@xxxxxxxxxxxxxxx
href="">amibroker@xxxxxxxxxxxxxxx
Sent: Tuesday, November 04, 2003 6:57
PM
Subject: Re: [amibroker] AFL Help
Graham,
I am trying to create a indicator that was
mentioned in the book "Trading for a Living". It talks about taking the total
number of new highs and total number of new lows of the entire market and
creating a indicator that has the Total New Highs minus Total New
Lows.
Brian
<BLOCKQUOTE
>
----- Original Message -----
<DIV
>From:
<A title=gkavanagh@xxxxxxxxxxxxx
href="">Graham
To: <A title=amibroker@xxxxxxxxxxxxxxx
href="">amibroker@xxxxxxxxxxxxxxx
Sent: Tuesday, November 04, 2003 5:44
PM
Subject: RE: [amibroker] AFL Help
Brian, do you want
to find the values of the differences, or number of times they
happen?
This should give you
the count of the number of times they occur and find the
difference
<FONT
face=Arial>
newh = Cross(C,
ref(HHV,250),-1));
newl = Cross(
ref(LLV,250),-1),C);
newhyr =
cum(newh);
newlyr =
cum(newl);
<FONT
face=Arial>
newtotalyr = newhyr -
newlyr;
<FONT
face=Arial>
Plot(newtotalyr, "",
4,4);
<FONT
face=Arial>
<FONT
face=Arial>
<FONT
face=Arial>
Cheers,Graham<A
href="">http://groups.msn.com/ASXShareTrading<A
href="">http://groups.msn.com/FMSAustralia
<FONT
face=Tahoma size=2>-----Original Message-----From: Brian Elijah
[mailto:cadvantag@xxxxxxxxxxxxxx] Sent: Wednesday, 5 November
2003 6:31 AMTo: amibroker@xxxxxxxxxxxxxxxSubject:
[amibroker] AFL Help
I am trying to write a scan that uses the
total new highs minus the total new lows and use it as a
indicator.
I tried this but it doesnt give the total of
new highs or total of new lows. How do I get totals?
newhyr = Ref<FONT
size=1>(HHV<FONT
size=1>(Close, 250<FONT
size=1>), -1);
newl = Ref<FONT
size=1>(LLV<FONT
size=1>(Close, 2<FONT
color=#ff00ff size=1>50),-<FONT color=#ff00ff
size=1>1);
newhightotal = newhyr - newl;
Plot(
newhightotal,
"<FONT face="Courier New"
color=#ff00ff size=1>New High-New Low<FONT color=#ff00ff
size=1>", <FONT face="Courier New"
color=#ff00ff size=1>4,<FONT face="Courier New"
color=#ff00ff size=1>4);
Thanks,
BrianSend BUG
REPORTS to bugs@xxxxxxxxxxxxxSend SUGGESTIONS to
suggest@xxxxxxxxxxxxx-----------------------------------------Post
AmiQuote-related messages ONLY to: amiquote@xxxxxxxxxxxxxxx (Web page:
<A
href="">http://groups.yahoo.com/group/amiquote/messages/)--------------------------------------------Check
group FAQ at: <A
href="">http://groups.yahoo.com/group/amibroker/files/groupfaq.html
Your use of Yahoo! Groups is subject to the <A
href="">Yahoo! Terms of Service.
Send BUG REPORTS to bugs@xxxxxxxxxxxxxSend
SUGGESTIONS to
suggest@xxxxxxxxxxxxx-----------------------------------------Post
AmiQuote-related messages ONLY to: amiquote@xxxxxxxxxxxxxxx (Web page:
<A
href="">http://groups.yahoo.com/group/amiquote/messages/)--------------------------------------------Check
group FAQ at: <A
href="">http://groups.yahoo.com/group/amibroker/files/groupfaq.html
Your use of Yahoo! Groups is subject to the <A
href="">Yahoo! Terms of Service.
Send BUG REPORTS to bugs@xxxxxxxxxxxxxSend SUGGESTIONS to
suggest@xxxxxxxxxxxxx-----------------------------------------Post
AmiQuote-related messages ONLY to: amiquote@xxxxxxxxxxxxxxx (Web page: <A
href="">http://groups.yahoo.com/group/amiquote/messages/)--------------------------------------------Check
group FAQ at: <A
href="">http://groups.yahoo.com/group/amibroker/files/groupfaq.html
Your use of Yahoo! Groups is subject to the <A
href="">Yahoo! Terms of Service.
<BLOCKQUOTE
><FONT
face="Courier New">---Outgoing mail is certified Virus
Free.Checked by AVG anti-virus system (<A
href="">http://www.grisoft.com).Version: 6.0.536
/ Virus Database: 331 - Release Date:
11/3/2003
Yahoo! Groups Sponsor
ADVERTISEMENT
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.
|