PureBytes Links
Trading Reference Links
|
I'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,
HooLee
------------------------ Yahoo! Groups Sponsor ---------------------~-->
Yahoo! Domains - Claim yours for only $14.70
http://us.click.yahoo.com/Z1wmxD/DREIAA/yQLSAA/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/
|