PureBytes Links
Trading Reference Links
|
Jeff,
The best you can get is to put together a template and save that for
later use.
Preston
--- In equismetastock@xxxxxxxxxxxxxxx, "jwlcfp" <jeff@xxx> wrote:
>
> Is it possible to code into a custom metastock formula the color
and
> style of the lines?
>
> I am also working with the Wilson Relative Price Channel. In the
> WRPC chart examples shading is shown in between the overbought and
> oversold zones. Is this shading possible in Metastock? The
> following is the WRPC formula:
> Periods:=Input("Channel Periods",1,250,34);
> Smoothing:=Input("Smoothing",1,55,1);
> Value2:=Input("Over Bought",50,99,70);
> Value3:=Input("Over Sold",1,50,30);
> Value4:=Input("Upper Neutral Zone",50,99,55);
> Value5:=Input("Lower Neutral Zone",1,50,45);
>
> OB:=Mov(RSI(Periods)-Value2,Smoothing,E);
> OS:=Mov(RSI(Periods)-Value3,Smoothing,E);
> NZU:=Mov(RSI(Periods)-Value4,Smoothing,E);
> NZL:=Mov(RSI(Periods)-Value5,Smoothing,E);
>
> {OverSold}
> LOW-(LOW*(OS/100));
>
> {OverBought}
> LOW-(LOW*(OB/100));
>
> {NeutralUp}
> LOW-(LOW*(NZU/100));
>
> {NeutralLower}
> LOW-(LOW*(NZL/100));
>
> Thanks for your help,
> Jeff
>
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/
|