Need help for RAVI formula

Please spot the error in my formula :

Abs(100*(((SMA(7)-SMA(65))/SMA(65))

123 does not want to accept it

Thx guys

Hugh

Abs((100*SMA(7)-SMA(65)) /SMA(65))

Missing close bracket:

Abs(100*(((SMA(7)-SMA(65))/SMA(65)))

Thx guys for helping a mathematical challenged member !!

Hugh

This is unlikely to be the OP’s intent, the order of operations would be to first multiply the 7 period moving average by 100 and then subtract the moving average 65, this doesn’t have much meaning.