PureBytes Links
Trading Reference Links
|
This a repost my original did not show up in my mailbox so I can only
assume it did not go through ,,,This is a 3/10/16 Oscillator as it
relates to the Anti pattern ,,,This I am 90% sure maybe someone else can
verify,,,this code is for TS4
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;
|