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)

면책사항

해당 정보와 게시물은 금융, 투자, 트레이딩 또는 기타 유형의 조언이나 권장 사항으로 간주되지 않으며, 트레이딩뷰에서 제공하거나 보증하는 것이 아닙니다. 자세한 내용은 이용 약관을 참조하세요.