CRISIS

(CRISIS) Aggregate BTC Volume V0.1

BTC
21
btc
Agreggate volume from 3 exchanges into one indicator.

Securities can be changed in settings -> inputs
開源腳本

本著真正的TradingView精神,該腳本的作者將其開源發布,以便交易者可以理解和驗證它。為作者喝彩吧!您可以免費使用它,但在出版物中重複使用此代碼受網站規則的約束。 您可以收藏它以在圖表上使用。

免責聲明

這些資訊和出版物並不意味著也不構成TradingView提供或認可的金融、投資、交易或其他類型的意見或建議。請在使用條款閱讀更多資訊。

想在圖表上使用此腳本?
study("aggregateBTCvol V0.1", precision=0)

SecVol1Input = input(defval="HUOBI:BTCCNY", title="first security", type=symbol, confirm=true)
SecVol1 = security(SecVol1Input, period, volume)

UseSecVol2 = input(true, title="Use second security?")
SecVol2Input = input(defval="OKCOIN:BTCCNY", title="second security", type=symbol, confirm=true)
SecVol2Value = security(SecVol2Input, period, volume)
SecVol2 = UseSecVol2 ?  SecVol2Value : 0

UseSecVol3 = input(true, title="Use Third security?")
SecVol3Input = input(defval="BITFINEX:BTCUSD", title="Third security", type=symbol, confirm=true)
SecVol3Value = security(SecVol3Input, period, volume)
SecVol3 = UseSecVol3 ?  SecVol3Value : 0

AggSecVol = SecVol1+SecVol2+SecVol3

plot(AggSecVol, title='BTC Volume', style=columns, transp=80, trackprice=false,linewidth=3, color=white)