PureBytes Links
Trading Reference Links
|
Try something like this:
==========
SMA ribbon
==========
---8<---------------------------
{©Copyright 2005-2006 Jose Silva.
For personal use only.
http://www.metastocktools.com }
{ User inputs }
pds1:=Input("SMA 1 periods",1,2600,21);
pds2:=Input("SMA 2 periods",1,2600,10);
plot:=Input("Plot filler? [1]Yes, [0]No",
0,1,1);
{ SMAs }
sma1:=Mov(C,pds1,S);
sma2:=Mov(C,pds2,S);
{ Fillers }
even:=Frac(Cum(1)/2)=0;
odd:=Frac(Cum(1)/2)<>0;
filler1:=If(plot,If(even,sma1,sma2),sma1);
filler2:=If(plot,If(odd,sma1,sma2),sma2);
{ Plot on price chart }
sma1; { <- Red }
filler1; { <- Green, heavier weight }
filler2; { <- Green, heavier weight }
sma2 { <- Blue }
---8<---------------------------
jose '-)
http://www.metastocktools.com
--- In equismetastock@xxxxxxxxxxxxxxx, "tombom53" <tombom53@xxx>
wrote:
>
> In the Ichimoku indicator the clouds area are colored in Metastock.
> I wonder if it´s possible to have the area between two MA:s in color
> also. If that´s possible, how to create such an indicator.
------------------------ Yahoo! Groups Sponsor --------------------~-->
Get to your groups with one click. Know instantly when new email arrives
http://us.click.yahoo.com/.7bhrC/MGxNAA/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/
|