PureBytes Links
Trading Reference Links
|
--- In equismetastock@xxxxxxxxxxxxxxx, "jwlcfp" <jeff@xxx> wrote:
>I found the answer to my question: Wilson Relative Price Channels!
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}
CLOSE-(CLOSE*(OS/100));
{OverBought}
CLOSE-(CLOSE*(OB/100));
{NeutralUp}
CLOSE-(CLOSE*(NZU/100));
{NeutralLower}
CLOSE-(CLOSE*(NZL/100));
Jeff
> I've been testing a lot of trailing stop & buy lines that use ATR,
> Linear Regression and moving averages.
>
> I am interested in creating trailing stops and trailing buy lines
> based on RSI(Low,14)and RSI(High,14). The trailing stop loss line
> would reflects what today's low price have to be in order to have
RSI
> (Low,14)go below 50? Another stop loss once RSI(Low,14)is over 70
and
> crosses under 70.
>
> The trailing buy line would reflects what today's high price have
to
> be in order to have RSI(High,14)go above 50. Another buy line once
RSI
> (High,14)is over 30 and crosses over 30.
>
> Thanks in advance for any help with this.
> 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/
|