[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

2nd Attempt



PureBytes Links

Trading Reference Links

Hi,

This is my second attempt at posting some codes. I had originally sent it
around 12:34 pm ESt on wensday, March 25, 1998 but for some reason, I
didn't see it get posted. If you are seeing this for the second time,
please forgive me.

{Indicator: Pivot Points Daily}
Vars:  DlyPivot(0), Res1(0), Res2(0), Sup1(0), Sup2(0);

DlyPivot = (HighM(1) + LowM(1) + CloseM(1))/3;
Res1 = 2 * DlyPivot - LowM(1);
Sup1 = 2*DlyPivot-HighM(1);
Res2 = DlyPivot-Sup1 + Res1; 
Sup2  = DlyPivot - (Res1 - Sup1);

Plot1(Res2,"Resist");
Plot2(Res1,"High Rest");
Plot3(Sup1,"Low Sup");
Plot4(Sup2,"Support");

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

{Indicator:Pivot Points Intraday}
Vars:  DlyPivot(0), Res1(0), Res2(0), Sup1(0), Sup2(0);

DlyPivot = (HighD(1) + LowD(1) + CloseD(1))/3;
Res1 = 2 * DlyPivot - LowD(1);
Sup1 = 2*DlyPivot-HighD(1);
Res2 = DlyPivot-Sup1 + Res1; 
Sup2  = DlyPivot - (Res1 - Sup1);

Plot1(Res2,"Resist");
Plot2(Res1,"High Rest");
Plot3(Sup1,"Low Sup");
Plot4(Sup2,"Support");

_____________________________________________

"The mark of a successful commander is the ability to adapt 
rapidly to the constantly changing conditions on the field of
battle."

-Carlo D'Este on Field Marshall  Walter Model
Attachment Converted: "c:\eudora\attach\Combine.ela"