PureBytes Links
Trading Reference Links
|
This ShowMe plots when any part of a bar crosses the MA. If you change to
Crosses Above or Crosses Below you will Plot crosses from below the MA or from
below.
Input: Length(20), Price(C);
Condition1 = High crosses over Average(Price,Length);
Condition2 = Low crosses over Average(Price,Length);
Condition3 = Close crosses over Average(Price,Length);
IF condition1 or condition2 or condition3 Then Begin Plot1(High,"ShowMe");
IF CheckAlert Then Alert = True;
End;
|