PureBytes Links
Trading Reference Links
|
This is what I have on this pattern . Is it the Anti ocillator ? I have
used it to enter in the direction of longer term trends , but now use a
modified stoch , though this is worth another look .
Input: AV1(3),AV2(10),AV3(16);
Plot1(AVERAGE(C,AV1)-AVERAGE(C,AV2),"3-10");
Plot2(AVERAGE(AVERAGE(C,AV1)-AVERAGE(C,AV2),AV3),"3-10-16");
Plot3(0,"Zero");
IF CheckAlert Then Begin
IF Plot1 Crosses Above Plot2 or Plot1 Crosses Below Plot2
or Plot1 Crosses Above Plot3 or Plot1 Crosses Below Plot3
or Plot2 Crosses Above Plot3 or Plot2 Crosses Below Plot3
Then Alert = TRUE;
End;
|