the original guppy indicator, with the short term traders (blue) and long term investors (red)
go only with the trend of the long term investors, and search for trouble in the short term traders (blue) to find good entries.
a = close
c1 = ExponentialAverage[3](a)
c2 = ExponentialAverage[5](a)
c3 = ExponentialAverage[8](a)
c4 = ExponentialAverage[10](a)
c5 = ExponentialAverage[12](a)
c6 = ExponentialAverage[15](a)
c7 = ExponentialAverage[30](a)
c8 = ExponentialAverage[35](a)
c9 = ExponentialAverage[40](a)
c10 = ExponentialAverage[45](a)
c11 = ExponentialAverage[50](a)
c12 = ExponentialAverage[60](a)
return c1, c2, c3, c4, c5, c6, c7, c8, c9, c10, c11, c12
i use it on weekly data for lower market noise.