PureBytes Links
Trading Reference Links
|
Francesco,
Not sure what you mean by grads. Here is a tricolor histogram that
you may be able to use. Blue if value of stoch is greater than 70.
Red if value stoch is less than 30 and green when it is less than 70
or more than 30.
{BlueRedGreenHisto}
X:= stoch(10,5) {your indicator here};
Blue:= If(X>70,X,0);
Red:=If(X<30,X,0);
Green:=If(X<=70 and X>=30,X,0);
Blue;Green;Red;
{plot each as a histogram}
{end}
Preston
--- In equismetastock@xxxxxxxxxxxxxxx, Francesco Iacono
<pariatore333@xxxx> wrote:
>
> hi guys
>
> i need a bit help , i want to build an indicator that have a color
( blue ) when he is up more than 30 grads and red when he is less
then 30 grads and green when he is between them.
>
> thanx
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/
|