CMO(Period) as Array

CMO function returns an array containing the Chande Momentum Oscillator indicator of the selected period.

 

This function has one parameter:
Period   Enter the period to calculate the CMO.

 

Example:

' This indicator is based on Chande Momentum Oscillator
Sub Main()
  TArr = CMO(10)
  SetIndic(Slope(TArr, 5))
End Sub