ShaohuaLi

OKCOIN3M Futures Premium

ShaohuaLi Atualizado   
// Futures Fomo - Tradingview.com
// Update by @ShaohuaLi to change from absolute diff to relative diff
// Update of @lastbattle script to account for OKCoin futures index scheme
study(title="OKCOIN3M Futures Premium", shorttitle="OKCOIN3M Futures Premium")

// Inputs from user
notifyRed = input(0, title="Sell warning") // when difference is > x
notifyGreen = input(0, title="Buy warning") // when difference is > x
timePerod = input(-1, title="Time period ", minval=1)

// Security
futures = security("OKCOIN:BTCUSD3M", period, close)
spot1 = security("BITFINEX:BTCUSD", period, close)
spot2 = security("OKCOIN:BTCUSD", period, close)
spot3 = security("OKCOIN:BTCCNY / FX:USDCNH", period, close)
spot4 = security("HUOBI:BTCCNY / FX:USDCNH", period, close)
spot5 = security("BTCCHINA:BTCCNY / FX:USDCNH", period, close)
spot6 = security("BITSTAMP:BTCUSD", period, close)
spot = (spot1+spot2+spot3+spot4+spot5+spot6) / 6

// Functions
isNotifyRed(difference) => difference > notifyRed
isNotifyGreen(difference) => difference < notifyGreen

// Val
difference = nz( nz(nz(futures) - nz(spot)) * 100 / nz(spot) )

// Plots
plot(difference, style=line, linewidth=1, color=isNotifyRed(difference) ? orange : isNotifyGreen(difference) ? green : black)
Notas de Lançamento:
Update the BTC/LTC USD index calculation.
Notas de Lançamento:
Updated to show BTC3M and ETH3M premiums.
BTC: orange(>0) / green (<0)
ETH: purple(>0) / blue (<0)
Script de código aberto

Dentro do verdadeiro espírito TradingView, o autor deste script publicou ele como um script de código aberto, para que os traders possam compreender e checar ele. Um viva ao autor! Você pode usá-lo gratuitamente, mas a reutilização deste código em uma publicação é regida pelas Regras da Casa. Você pode favoritá-lo para usá-lo em um gráfico.

Aviso legal

As informações e publicações não devem ser e não constituem conselhos ou recomendações financeiras, de investimento, de negociação ou de qualquer outro tipo, fornecidas ou endossadas pela TradingView. Leia mais em Termos de uso.

Quer usar esse script no gráfico?