Projection Oscillator for MT4?

 

Hi,

I cant find Projection Oscillator indicator for MT4.

I found this description::::: (im not a programmer so i cant figure this out, maybe someone could create this indicator for MT4 users?) i think many ppl would find it useful to use. Thank you.

---------------------------------------------------------------------------------------------------------------------------------------------------------------------------


SlopeHigh = LINEARREGRESSIONSLOPE[n](high)
SlopeLow = LINEARREGRESSIONSLOPE[n](low)


UpProjBand = high
LoProjBand = low

FOR i = 1 TO n
UpProjBand = MAX(UpProjBand, high[i] + i * SlopeHigh)
LoProjBand = MIN(LoProjBand, low[i] - i * SlopeLow)
NEXT

ProOsc = 100 * (Close - LoProjBand) / (UpProjBand - LoProjBand)

RETURN ProOsc AS "ProOsc",20 AS "Line 20",80 AS "Line 80",50 AS "Line 50"

Description:

Projection Bands were developed by Mel Widner, Ph.D.
They were originally introduced in the July 1995 issue of Technical Analysisof Stocks and Commodities magazine.

The Projection Oscillator is based on the Projection Bands indicator.
The Oscillator calculates where the close lies within the band as a percentage.

The Projection Oscillator can be interpreted several ways.

Look for divergence with price to indicate a trend reversal.
Extreme values (over 80 or under 20) indicate overbought/oversold levels.

A moving average of the oscillator can be used as a trigger line.
A buy/sell signal is generated when the Projection Oscillator to cross above/below the trigger line.
The signal is stronger if it happens above 70 or below 30.


-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------

 
Files:
 
coastrica:


This cannot be the indicator! It must be drawn in a separate window moving between 100 and 0 like a Stochastic Oszilator.
Reason: