#BTC #ETH
不断有人问大B网的溢价在哪看,以及怎么看,这里统一解答一下:
一:大B网的溢价在tv,也就是tradeview上看,不知道这个网站的可以去了解一下;
二:在tv上指标都是以脚本的形式存在,这也是tv的最强大之处,你可以基于很多基础数据写出自己的脚本,下面我把我用来算各种溢价的脚本贴出来给大家用;
// premium - created by zilong
//@version=5
indicator("BITFINEX Premium", shorttitle="BITFINEX Premium(BITFINEX vs Binance、Coinbase)", overlay=false)
cb=https://t.co/5c1xwhsBde("COINBASE:BTCUSD", timeframe.period, close)
bn=https://t.co/5c1xwhsBde("BINANCE:BTCUSDT", timeframe.period, close)
//b=https://t.co/5c1xwhsBde("BYBIT:BTCUSDT", timeframe.period, close)
//okx=https://t.co/5c1xwhsBde("OKX:BTCUSDT", timeframe.period, close)
//upbit=https://t.co/5c1xwhsBde("UPBIT:BTCUSDT", timeframe.period, close)
//e=https://t.co/5c1xwhsBde("BITGET:BTCUSDT", timeframe.period, close)
//kraken=https://t.co/5c1xwhsBde("KRAKEN:BTCUSDT", timeframe.period, close)
//kucoin=https://t.co/5c1xwhsBde("KUCOIN:BTCUSDT", timeframe.period, close)
bitfinex=https://t.co/5c1xwhsBde("BITFINEX:BTCUSD", timeframe.period, close)
//i=https://t.co/5c1xwhsBde("BITSTAMP:BTCUSD", timeframe.period, close)
bnf=https://t.co/5c1xwhsBde("BINANCE:BTCUSDT.P", timeframe.period, close)
//okf=https://t.co/5c1xwhsBde("OKX:BTCUSDT.P", timeframe.period, close)
bnf_usdc=https://t.co/5c1xwhsBde("BINANCE:BTCUSDC.P", timeframe.period, close)
avg = math.avg(bn,cb)
diff = bitfinex-avg
diff2 = bnf_usdc-bnf
//colorValue = diff>0 ? https://t.co/ZjQvFsA5hT : https://t.co/y10j8K0onS
//hline(0)
//plot(diff, title="Coinbase", color=colorValue, style=https://t.co/dMzNgXrZKw_histogram)
//plot(diffOfSpotToFuture, title="Bn Sport Vs Futures", color=color.yellow, style=https://t.co/dMzNgXrZKw_line)
cClr = diff>0 ? https://t.co/ZjQvFsA5hT : https://t.co/y10j8K0onS
cClr2 = diff2>0 ? color.rgb(255, 241, 82) : https://t.co/y10j8K0onS
hline(0)
plot(diff, title="BITFINEX Premium", color=cClr, style=https://t.co/dMzNgXrZKw_histogram)
From X
Disclaimer: The above content reflects only the author's opinion and does not represent any stance of CoinNX, nor does it constitute any investment advice related to CoinNX.