PureBytes Links
Trading Reference Links
|
It's readily done if the bar is an indicator. I'm uncertain how to do
it, if you want a price bar changed. If you merely want the price bar
indentified, you can do it by placing a dot at the bar.
The following shows how to get volume bars to be different colors
depending on the change of close. Red if today is lower. Green if today
is higher. Yellow if today is unchanged. Ypou would plot each of the
indicators, change the color as appropriate and save that as a template.
RED:=If((Ref(C,-1)>C),V,0);
Red;
Yellow:=If((Ref(C,-1)=C) ,V,0);
Yellow;
Green:=If((Ref(C,-1)<C) ,V,0);
Green;
Ron
hoho10015 wrote:
> Hi All
>
>
> Is there any way of having MS Change the color of one bar if a
> certain Condition exists. (i.e. if the default bars are all in black
> and a predefine condition is found that particular bar or bars would
> change colors.)
>
>
>
> Tom
>
>
> Yahoo! Groups Sponsor
> ADVERTISEMENT
> <http://rd.yahoo.com/M=243066.2784921.4151384.1927555/D=egroupweb/S=1705001779:HM/A=1377501/R=0/*http://www.verisign.com/cgi-bin/go.cgi?a=b30890113200616000>
>
>
>
> To unsubscribe from this group, send an email to:
> Metastockusers-unsubscribe@xxxxxxxxxxx
>
>
>
> Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service
> <http://docs.yahoo.com/info/terms/>.
To unsubscribe from this group, send an email to:
Metastockusers-unsubscribe@xxxxxxxxxxx
Your use of Yahoo! Groups is subject to http://docs.yahoo.com/info/terms/
|