PureBytes Links
Trading Reference Links
|
<SPAN
class=266273605-31102002>Esteban,
<SPAN
class=266273605-31102002>
I'm wanting to find the last
peak based on a fixed number of points, rather than percentage. So I set a
variable to the fixed points value I want divided by the high * 100 togive
me a percentage to use in the peak formula. But I get an error. Maybe the
function needs a value not subject to fluctuation for its
underlying calculations. Is there a way I can use this function with a fixed
number of points?
MinRetracement = <FONT
color=#ff00ff>6/C * 100 ; Thisgives a
value of 1.2 percent when C =500.
PeakValue = <FONT
color=#0000ff>Peak(H,1.2,1) ; This
finds the peaks like I want, when price is in the range of 500.
PeakValue Peak(H,MinRetracement,1) ;
Gives an error.<SPAN
class=266273605-31102002> <FONT
face="MS Sans Serif">
you
want the peak of peakvalue. since peakvalue is a high you should ask for
peak(peakvalue...... your change setting must be constant so ask for the
lastvalue of minretracement....
<SPAN
class=266273605-31102002>
<SPAN
class=266273605-31102002>try......
<SPAN
class=266273605-31102002>
<FONT
size=2>
MinRetracement = 6<FONT
color=#282828>/C *
100<FONT
face=Arial size=2> ;
PeakValue = Peak<FONT
color=#282828>(H<FONT
face=Arial>,<FONT
color=#ff00ff>1.2,<FONT
color=#ff00ff>1) ;<FONT
color=#0000ff>
Peak(<FONT
color=#282828>peakvalue,<FONT
color=#0000ff>LastValue(<FONT
color=#282828>MinRetracement),<FONT
color=#ff00ff>1)
;
jayson
<SPAN
class=266273605-31102002>
Yahoo! Groups
Sponsor
ADVERTISEMENT<A
href=""
target=_blank><IMG alt="" border=0 height=250
src=""
width=300 NOSEND="1">
<IMG alt="" height=1
src=""
width=1 NOSEND="1">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.
|