SineWMA as Array

SineWMA returns the Sine Weighted Moving Average of the closing prices.

 

Example:

' This indicators gives the difference between the Closing prices and the SineWMA
Sub Main()
  TSin = SineWMA
  TClo = GetClose
  SetIndic(Substract(TClo, TSin))
  Level(0)
End Sub