PureBytes Links
Trading Reference Links
|
Some Indicators with vertical lines can be color coded once
placed on the chart, the one below won't allow that.
Is it possible to add code to color individual histogram lines
that appear at 15, 30, 45 and what's the code please.
Thanks. Wallace.
Price Bars
Sn:=Input("Start minute",0,59,0);
Sh:=Input("Start hour" ,0,23,0);
Sd:=Input("Start day" ,1,31,1);
Sm:=Input("Start month" ,1,12,1);
Sy:=Input("Start year" ,1900,2020,2000);
St:=Year()>Sy OR (Year()=Sy AND Month()>Sm) OR
(Year()=Sy AND Month()=Sm AND DayOfMonth()>Sd) OR
(Year()=Sy AND Month()=Sm AND DayOfMonth()=Sd AND Hour()>Sh) OR
(Year()=Sy AND Month()=Sm AND DayOfMonth()=Sd AND Hour()=Sh AND Minute
()>=Sn);
Cum(St)=1 OR Cum(St)=5 OR Cum(St)=10
OR Cum(St)=15 OR Cum(St)=20 OR Cum(St)=25
OR Cum(St)=30 OR Cum(St)=35 OR Cum(St)=40
OR Cum(St)=45 OR Cum(St)=50 OR Cum(St)=55
------------------------ Yahoo! Groups Sponsor --------------------~-->
$9.95 domain names from Yahoo!. Register anything.
http://us.click.yahoo.com/J8kdrA/y20IAA/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/
|