PureBytes Links
Trading Reference Links
|
Here is the code and .ela and example on the NQU1.
enjoy,
bobr
===========================================================
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");
----- Original Message -----
From: "Karl" <kschr@xxxxxxxxxxx>
To: <realtraders@xxxxxxxxxxxxxxx>
Sent: Tuesday, August 28, 2001 3:20 PM
Subject: Re: [RT] s&p
> Bob,
> Very nice gifs showing the EWOsc. Could you tell me what the red and
> green lines are and how they are calculated?
> Is the ela for any of these available?
> Many thanks,
> Karl
>
>
>
>
> To unsubscribe from this group, send an email to:
> realtraders-unsubscribe@xxxxxxxxxxxxxxx
>
>
>
> Your use of Yahoo! Groups is subject to http://docs.yahoo.com/info/terms/
>
>
------------------------ Yahoo! Groups Sponsor ---------------------~-->
FREE COLLEGE MONEY
CLICK HERE to search
600,000 scholarships!
http://us.click.yahoo.com/zoU8wD/4m7CAA/ySSFAA/zMEolB/TM
---------------------------------------------------------------------~->
To unsubscribe from this group, send an email to:
realtraders-unsubscribe@xxxxxxxxxxxxxxx
Your use of Yahoo! Groups is subject to http://docs.yahoo.com/info/terms/
Attachment:
Description: "NQ.GIF"
Attachment:
Description: "EWOSC.ELA"
|