Advertisement
Guest User

Untitled

a guest
Dec 28th, 2017
360
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. // version 1.0 just simply btcusdshorts and btcusdlongs together
  2. // see my other scripts for some cool stuff!
  3.  
  4. //@version=3
  5. study("BTCUSDSHORTS BTCUSDLONGS - Bitfinex BTC Shorts & Longs")
  6. shorts = pow(security("BITFINEX:BTCUSDSHORTS", period, close),1.0)
  7. plot(shorts, title='Bitfinex Shorts', color=red)
  8.  
  9. longs = pow(security("BITFINEX:BTCUSDLONGS", period, close),1.0)
  10. plot(longs, title='Bitfinex Longs', color=green)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement