OPEN-SOURCE SCRIPT

Short Volume % of Total - NVDA

49
// This Pine Script® code is subject to the terms of the Mozilla Public License 2.0 at mozilla.org/MPL/2.0/
// © sergioamercado77

//version=5
indicator("Short Volume % of Total", overlay=false)
shortVol = request.security("NVDA_SHORT_VOLUME", "D", close) // replace with your short-volume source
totalVol = request.security("NVDA", "D", volume)
plot(shortVol / totalVol * 100, color=color.new(color.red, 0), title="Short %")
hline(40, 'High Short Activity', color=color.orange)

Disclaimer

The information and publications are not meant to be, and do not constitute, financial, investment, trading, or other types of advice or recommendations supplied or endorsed by TradingView. Read more in the Terms of Use.