Page 1 of 1

Smart Money Index

PostPosted: Sat Feb 10, 2018 4:15 pm
by isamegrelo
Code:


study(title="Smart Money Index (SMI)", shorttitle="Smart Money Index")
xcloseH1 = security(tickerid, "60", close)
xopenH1 = security(tickerid, "60", open)
nRes = nz(nRes[1], 1) - (open - close) + (xopenH1 - xcloseH1)
plot(nRes, color=green, title="SMI")

Re: Smart Money Index

PostPosted: Sun Feb 11, 2018 5:24 am
by Apprentice
Something similar is provided here.
viewtopic.php?f=17&t=52933&p=113025&hilit=Smart+Money+Index#p113025

Will this do.
Or the exact translation is needed.