PureBytes Links
Trading Reference Links
|
Dave,
Both are codes will plot the same
unless the first bar of the new day is Higher (or
lower) than the highest (or lowest) bar of the
previous day...then your code will record
the first bar of the new day as the high (or
low). Your code plots exactly as mine on your
charts because none of the first bars of the
day are higher or lower than the Highs and lows of the previous
days.
Here is the part of your code that record the
Highs:
<FONT face=Arial
size=2>
HHY:=(HighestSince(2,NewDay,H)
I have Highlighted the changes (in bold face)
that should correct the problem:
HHY:=Ref(HighestSince(1,NewDay,H),-1);
I hope I am making sense?
Adam Hefner
<BLOCKQUOTE
style="BORDER-LEFT: #000000 2px solid; MARGIN-LEFT: 5px; MARGIN-RIGHT: 0px; PADDING-LEFT: 5px; PADDING-RIGHT: 0px">
----- Original Message -----
<DIV
style="BACKGROUND: #e4e4e4; FONT: 10pt arial; font-color: black">From:
Dave
Nadeau
To: <A
href="mailto:metastock@xxxxxxxxxxxxx"
title=metastock@xxxxxxxxxxxxx>metastock@xxxxxxxxxxxxx
Sent: Saturday, November 18, 2000 6:48
PM
Subject: Re: EasyLanguage
translation
Both Adam's code and mine work exactly the same. I took
the code below and created an indicator. I plotted both on some earlier
month 5 minute intraday data for the QQQ, and you can see the result below.
The upper series uses the formula for Previous Day High that I posted
earlier, and the series below uses Adam's. You can "eyeball" these for
correctness.
If the picture didn't come through, I've also placed it at <A
href="http://www.geocities.com/d13nadeau/PDH.html">http://www.geocities.com/d13nadeau/PDH.html
I chose early November because it's a good example of failed rallies
following the penetration of the previous day's high.
Attachment:
Description: " Dave Nadeau "
|