logo
Welcome Guest! To enable all features please Login or Register.

Notification

Icon
Error

Options
Go to last post Go to first unread
KTP2  
#1 Posted : Tuesday, May 11, 2010 2:25:58 PM(UTC)
KTP2

Rank: Advanced Member

Groups: Registered, Registered Users, Subscribers
Joined: 2/2/2007(UTC)
Posts: 367

Was thanked: 1 time(s) in 1 post(s)

Leon Wilson’s article, “The Wilson Relative Price Channel,” introduces a new way to show overbought and oversold conditions. The procedure and formula for displaying these channel lines in MetaStock is listed below:

To enter these indicators into MetaStock:

  1. In the Tools menu, select Indicator Builder.
  2. Click New to open the Indicator Editor for a new indicator.
  3. Type the name of the formula
  4. Click in the larger window and type in the formula.
  5. Click Ok to close the Indicator Editor.

    Name: Wilson Relative Price Channel
    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}
    CLOSE-(CLOSE*(OS/100));

    {OverBought}
    CLOSE-(CLOSE*(OB/100));

    {NeutUp}
    CLOSE-(CLOSE*(NZU/100));

    {NeutLower}
    CLOSE-(CLOSE*(NZL/100));

William Golson
Equis International

Users browsing this topic
Forum Jump  
You cannot post new topics in this forum.
You cannot reply to topics in this forum.
You cannot delete your posts in this forum.
You cannot edit your posts in this forum.
You cannot create polls in this forum.
You cannot vote in polls in this forum.