PureBytes Links
Trading Reference Links
|
<FONT face=Arial color=#0000ff
size=2>Sometimes i can't find my coding errors and I just fiddle around to
find another way :-)
<FONT face=Arial color=#0000ff
size=2>
OR15h
= ValueWhen(TimeNum()==094500, HHV(H,15));OR15l =
ValueWhen(TimeNum()==094500, LLV(L,15));Plot(OR15h,"15 minute
high",colorGreen);Plot(OR15l,"15 minute low",
colorYellow);Plot(C,"Close",1,128);GraphXSpace=5;
<FONT face=Arial color=#0000ff
size=2>
<FONT face=Arial color=#0000ff
size=2>herman
<FONT face=Tahoma
size=2>-----Original Message-----From: hoolee0820
[mailto:hoolee0820@xxxxxxxxx]Sent: Sunday, May 16, 2004 7:51
AMTo: amibroker@xxxxxxxxxxxxxxxSubject: [amibroker]
Ploting a opening rangeI'm trying to store and plot
first 15 minute hign and low on a 1 minute chart. Hers is the
codes:TimeFrameSet(in15Minute);ORh = ValueWhen(TimeNum()==93000,
H);ORl = ValueWhen(TimeNum()==93000, L);TimeFrameRestore();OR15h =
TimeFrameExpand(ORh, in15Minute);OR15l = TimeFrameExpand(ORl,
in15Minute);Plot(OR15h,"15 minute high",colorGreen);Plot(OR15l,"15
minute low", colorYellow);this works correctly on charts with 15
minute (and above) time frame, but not on lower time frame. Can someone
point out what I did
wrong?Thanks,HooLeeSend 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
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 the Yahoo! Terms of Service.
|