PureBytes Links
Trading Reference Links
|
Hmm now I'm getting even more confused
!
"And has ranged from a high of
"+writeval(HHV(High,bars+1),6.3)+
So this says write the value of the HHV <FONT
face="Times New Roman" size=3>highest value in the ARRAY over the preceding
periods The array been high but instead of a period you have
,bars+1 and I cant find a reference to bars in the user guide
?
<FONT face="Times New Roman"
size=3>
In the macd_c.afl the above code writes a value "And has ranged from ahigh
of 0.275 to a low of 0.250" so what I was trying to work out isover
what period is the high and low calculated ?
this I can follow ( HHV( High, 260 ) ) high over 260 periods
.
Is there more code that hasn't been added to users manual (guide)?
LOL now your all mostlikely just as confused as I
am after reading this note .
----- Original Message -----
<BLOCKQUOTE
>
<DIV
>From:
Tomasz Janeczko
To: <A title=amibroker@xxxxxxxxxx
href="">amibroker@xxxxxxxxxxxxxxx
Sent: Monday, April 16, 2001 4:38
PM
Subject: Re: [amibroker] guru
commentary
Hi David and All,
6.3 in WriteVal specify the formatting (write 6 charsin
total (space padded) and 3 decimal digits).
To get Highest Highg value of the last 260 periods
use
LastValue( HHV( High, 260 ) )
Best regards,
Tomasz Janeczko
<BLOCKQUOTE
>
----- Original Message -----
<DIV
>From:
David
Holzgrefe
To: <A
title=amibroker@xxxxxxxxxxxxxxx
href="">amibroker@xxxxxxxxxxxxxxx
Sent: Sunday, April 15, 2001 9:16
AM
Subject: [amibroker] guru
commentary
Hi TJ and other ami fans :)
TJ the following code is from you macd
commentary
it displays the results of high's and
lows <FONT
color=#ffffff>hhv( ARRAY,
periods )
what does the ,6.3 signify ?
how do i get it to write hh of the last 260 periods ?
"And has ranged from a high of
"+writeval(HHV(High,bars+1),6.3)+" to a low of
"+writeval(LLV(Low,bars+1),6.3);
Thanks DavidYour use
of Yahoo! Groups is subject to the <A
href="">Yahoo! Terms of Service.
Your
use of Yahoo! Groups is subject to the <A
href="">Yahoo! Terms of Service.
|