PureBytes Links
Trading Reference Links
|
Wallace
You must create individual variables (either named or unnamed) for each plot before you will be able
to colour them individually. Change your output plot to..
Cum(St)=1; Cum(St)=5; Cum(St)=10; Cum(St)=15;
Cum(St)=20; Cum(St)=25; Cum(St)=30; Cum(St)=35;
Cum(St)=40; Cum(St)=45; Cum(St)=50; Cum(St)=55;
Convert every plot to a histogram and change the color to suit.
Roy Larsen
www.metastocktips.co.nz
Free formulas and MS links
----- Original Message -----
From: "murusprimus" <no_reply@xxxxxxxxxxxxxxx>
To: <equismetastock@xxxxxxxxxxxxxxx>
Sent: Thursday, September 16, 2004 12:33 AM
Subject: [EquisMetaStock Group] Color Indicator Bars ??
> 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 Links
>
>
>
>
>
>
>
------------------------ 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/
|