CMO
Overview of the Chande Momentum Oscillator calculation.
/* CMO calculation is mostly identical to RSI.
*
* The only difference is in the last step of calculation:
*
* RSI = gain / (gain+loss)
* CMO = (gain-loss) / (gain+loss)
*
* See the RSI function for potentially some more info
* on this algo.
*/Last updated
Was this helpful?