ShaohuaLi

OKCOIN3M Futures Premium

ShaohuaLi Actualizado   
// 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 prensa:
Update the BTC/LTC USD index calculation.
Notas de prensa:
Updated to show BTC3M and ETH3M premiums.
BTC: orange(>0) / green (<0)
ETH: purple(>0) / blue (<0)
Script de código abierto

Siguiendo el verdadero espíritu de TradingView, el autor de este script lo ha publicado en código abierto, para que los traders puedan entenderlo y verificarlo. ¡Un hurra por el autor! Puede utilizarlo de forma gratuita, aunque si vuelve a utilizar este código en una publicación, debe cumplir con lo establecido en las Normas internas. Puede añadir este script a sus favoritos y usarlo en un gráfico.

Exención de responsabilidad

La información y las publicaciones que ofrecemos, no implican ni constituyen un asesoramiento financiero, ni de inversión, trading o cualquier otro tipo de consejo o recomendación emitida o respaldada por TradingView. Puede obtener información adicional en las Condiciones de uso.

¿Quiere utilizar este script en un gráfico?