PureBytes Links
Trading Reference Links
|
Try this as determined by trial and error itterations:
Inputs: Price1(Average((H+L)/2,5) -
Average((H+L)/2,35)),K(1),K2(0.0555),Len(5);
Vars: UpperBand(0),LowerBand(0),AvgP(0);
If Price1 >0 then begin
upperband=price1;
If barnumber>=2 then
UpperBand= (upperband[1] + k2*(K*Price1 - upperband[1]));
end;
If Price1 < 0 then begin
LowerBand = Price1;
If barnumber>=2 then
LowerBand=(lowerband[1] + K2*(K*Price1 - lowerband[1]));
end;
AvgP = XAverage(Price1,Len);
Plot1(Price1,"Osc535");
Plot2(AvgP,"AvgP");
Plot3(UpperBand,"upper");
Plot4(LowerBand,"lower");
BobR
----- Original Message -----
From: "Jim Johnson" <jejohn@xxxxxxxxxxx>
To: <omega-list@xxxxxxxxxx>; "Dave..." <denglish48060@xxxxxxxxxxxxx>
Sent: Saturday, May 25, 2002 7:35 AM
Subject: 5/35 oscillator in Adv GET
> Hello omega-list,
>
> Does anyone know what the formula is for the black bands used with
> the 5/35 oscillator in Advanced GET?
>
> --
> Best regards,
> Jim Johnson mailto:jejohn@xxxxxxxxxxx
>
>
|