PureBytes Links
Trading Reference Links
|
In your expert you should create a highlight and into the formula box
you should enter something like this:
StHour:=8;
StMin:=0;
EnHour:=17;
EnMin:=0;
start:=Hour()>StHour
OR Hour()=StHour AND Minute()>=StMin;
end:=Hour()<EnHour
OR Hour()=EnHour AND Minute()<=EnMin;
start AND (end OR (start AND Alert(start=0,2)))
This code that I wrote above is a sort of adaptation from Jose's
"intraday time filter". I think you can find much better ideas on how to
achieve your objective on his website.
Good luck!
Iulian
-----Original Message-----
From: equismetastock@xxxxxxxxxxxxxxx
[mailto:equismetastock@xxxxxxxxxxxxxxx] On Behalf Of hcour
Sent: Friday, July 07, 2006 1:01 PM
To: equismetastock@xxxxxxxxxxxxxxx
Subject: [EquisMetaStock Group] Highlight Specific Time Periods?
Can I do this in MS: On an hourly FX chart I'd like to have a
highlight for different time periods, for example everyday 8am-5pm in
green, and so on. Could this be done w/an Expert?
Thanks,
Harold
[Non-text portions of this message have been removed]
------------------------ Yahoo! Groups Sponsor --------------------~-->
Something is new at Yahoo! Groups. Check out the enhanced email design.
http://us.click.yahoo.com/SISQkA/gOaOAA/yQLSAA/BefplB/TM
--------------------------------------------------------------------~->
Yahoo! Groups Links
<*> To visit your group on the web, go to:
http://groups.yahoo.com/group/equismetastock/
<*> To unsubscribe from this group, send an email to:
equismetastock-unsubscribe@xxxxxxxxxxxxxxx
<*> Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
|