OPEN-SOURCE SCRIPT

Short Volume % of Total - NVDA

66
// 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)

免责声明

这些信息和出版物并非旨在提供,也不构成TradingView提供或认可的任何形式的财务、投资、交易或其他类型的建议或推荐。请阅读使用条款了解更多信息。