Jump to content

⤴️-Paid Ad- Check advertising disclaimer here. Add your banner here.🔥

Recommended Posts

Posted

does this help anyone?

(I know it's not precisely what you are looking for...)

 

From: hssp://[email protected]/library/detail.php?id=344

 

/* Projection Oscillator - Version 2.0 - 
Hans -  2004 march 14

*/

n = Param("Periods",12,5,50,1);
av = Param("Average",5,2,20,1);

n = Optimize("Periods",n,5,50,1);
av = Optimize("Average",av,2,20,1);

function ProjOsc(n) { 

// Slope of High {n period regression line of High)} 
SlopeHigh = ((n * (Sum( ***(1) * High, n))) - (Sum( ***(1),n) * ( 
Sum(High, n)))) / ((n * Sum( ***(1) ^ 2 , n)) - (Sum(***(1),n) ^ 
2)); 

//Slope of Low {n period regression line of Low} 
SlopeLow = ((n * (Sum( ***(1) * Low, n))) - (Sum( ***(1), n) * ( 
Sum(Low, n)))) / ((n * Sum( ***(1)^ 2, n)) - ( Sum(***(1),n) ^ 
2)); 

//Upper Projection Band 
UpProjBand = 0; 
for (i=0; i<n-1; i++) 
{ 
UpProjBand = 
Max(Max(Ref(High,-i)+i*slopehigh,Ref(High,-i-1)+(i+1)*slopehigh),UpProjBand); 
} 

//Lower Projection Band 
LoProjBand = 10000; 
for (i=0; i<n-1; i++) 
{ 
LoProjBand = 
Min(Min(Ref(Low,-i)+i*slopelow,Ref(Low,-i-1)+(i+1)*slopelow),LoProjBand); 
} 

//Projection Oscillator 
ProOsc = 100 * (Close - LoProjBand) / (UpProjBand - LoProjBand); 

return ProOsc; 

} 
aa= ProjOsc(n);
bb= MA(ProjOsc(n),av);

Plot(aa,"Projection Osc",colorGreen,styleLine); 
Plot(bb,"MA ProjOsc",colorRed,styleLine); 

Buy = Cross (aa,bb);
Sell = Cross (bb,aa);
Cover=Buy;
Short=Sell;

Posted (edited)

danny, that is not MQL code.

It is from the Amibroker library. Please see the link...

 

From the link...

Developed by Mel Widner, Ph.D., the Projection Oscillator is a by-product of his Projection Bands (see Projection Bands). The Projection Oscillator is basically a slope-adjusted Stochastic. Where the Stochastic Oscillator (see Stochastic Oscillator) shows the relationship of the current price to its minimum and maximum prices over a recent time period, the Projection Oscillator shows the same thing, but the minimum and maximum prices are adjusted up/down by the slope of the price s regression line. This adjustment makes the Projection Oscillator more responsive to short-term price moves than an equi-period Stochastic.

 

I found some good stuff quite *closely related* to this on another forum under the heading "fast fourier transform cycle extraction" (google is your friend)

 

Also, the original site is here..

hzzp://[email protected]/about.htm

 

Can someone compile the above so that it does not show errors....I am no good in programming
Edited by sidecona
added bit about fft & original site
Posted

check the video starting at 42:00

hxxp://www.forexpr0fitpredictor.c0m/Ste@lth/cpo-live.html

 

He talks all about "live trade alert" emails and SMS...

He talks about logging on to their server to see the forecasts....

 

there aint gon be nothin to downlaod (probably apart from the MSI which is most likely a momentum indicator with a moving average, or even RSI with a moving average for smoothing)

  • 1 month later...
  • 4 weeks later...
  • 3 weeks later...
Posted

has anyone paid for the system, and can actually confirm it works??? I'm not looking for account statements or anything...

 

it just seemed like a lot of HYPE to me when it was initially about...

 

I can give you loads of indicators that pretend to draw where the price is going to go, but they ALL re-draw, and are pretty pointless....

  • 9 months later...
  • 2 weeks later...
Posted (edited)

Hello boys and girls,

 

The forecast for tomorrow.

 

EURUSD H1

 

http://imageshack.us/a/img13/4840/201303131919.png

 

GBPUSD H1

 

http://img42.imageshack.us/img42/9375/201303131928.png

 

USDJPY H1

 

http://img341.imageshack.us/img341/6187/201303131936.png

 

 

Donations are welcomed :)

 

 

 

Have fun,

Forex Trader

Edited by Forex_Trader

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now


⤴️-Paid Ad- Check advertising disclaimer here. Add your banner here.🔥

×
×
  • Create New...