PureBytes Links
Trading Reference Links
|
Unfortunately that didn't work. That returned the high and low from
each bar, in other words it was the same as H and L. Also tried hard
code below, but no luck.
teststart = DateNum() > 1040220;
myHi = HighestSince(teststart,H);
myLo = LowestSince(teststart,L);
--- In amibroker@xxxxxxxxxxxxxxx, "Graham" <gkavanagh@xxxx> wrote:
> Try this
>
> myHi = Highestsince(buy,H);
> myLo = Lowestsince(buy,L);
>
> you may also need to use the exrem as well so that it does not
reset the
> lowest/highest for surplus buy signals
>
> buy = exrem(buy,sell);
>
> Cheers,
> Graham
> http://e-wire.net.au/~eb_kavan/
>
> -----Original Message-----
> From: miked33 [mailto:miked@x...]
> Sent: Saturday, May 01, 2004 11:22 AM
> To: amibroker@xxxxxxxxxxxxxxx
> Subject: [amibroker] Programing help
>
> I am trying to track the highest H or the lowest L since I enter a
> trade. Can someone help me with code to do that?
>
> thanks
>
>
>
>
>
>
> 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/)
> --------------------------------------------
> Check group FAQ at:
> http://groups.yahoo.com/group/amibroker/files/groupfaq.html
> Yahoo! Groups Links
------------------------ Yahoo! Groups Sponsor ---------------------~-->
Buy Ink Cartridges or Refill Kits for your HP, Epson, Canon or Lexmark
Printer at MyInks.com. Free s/h on orders $50 or more to the US & Canada.
http://www.c1tracking.com/l.asp?cid=5511
http://us.click.yahoo.com/mOAaAA/3exGAA/qnsNAA/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
Yahoo! Groups Links
<*> To visit your group on the web, go to:
http://groups.yahoo.com/group/amibroker/
<*> To unsubscribe from this group, send an email to:
amibroker-unsubscribe@xxxxxxxxxxxxxxx
<*> Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
|