OPEN-SOURCE SCRIPT

Short Volume % of Total - NVDA

65
// 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が提供または推奨する金融、投資、トレード、その他のアドバイスや推奨を意図するものではなく、それらを構成するものでもありません。詳細は利用規約をご覧ください。