PureBytes Links
Trading Reference Links
|
~seow,
The red green histogram can be used for this...its the same
principal.
{RedGreen Histogram}
{greater than yesterday}
X:= {your indicator here};
Green:=If(X>Ref(X,-1),X,0);
Red:=If(X<Ref(X,-1),X,0);
Green; Red;
In your case use
{RedBlue Volume Histogram}
{greater than yesterday}
X:=Close;
Blue:=If(X>Ref(X,-1),volume,0);
Red:=If(X<Ref(X,-1),volume,0);
Blue; Red;
Hope that helps,
Preston
--- In equismetastock@xxxxxxxxxxxxxxx, "cwseow" <cwseow@xxx> wrote:
>
> Hi All,
>
> Is it possible to create a custom indicator and save it as default.
>
> I would like my volume bar/histogram to be "blue" on up day,
and "red"
> for down day.
>
> Many thanks in advance.
>
> Regards,
> ~seow
>
Yahoo! Groups Links
<*> To visit your group on the web, go to:
http://groups.yahoo.com/group/equismetastock/
<*> Your email settings:
Individual Email | Traditional
<*> To change settings online go to:
http://groups.yahoo.com/group/equismetastock/join
(Yahoo! ID required)
<*> To change settings via email:
mailto:equismetastock-digest@xxxxxxxxxxxxxxx
mailto:equismetastock-fullfeatured@xxxxxxxxxxxxxxx
<*> 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/
|