Skip to content

Instantly share code, notes, and snippets.

View paul1522's full-sized avatar
😷

Paul paul1522

😷
View GitHub Profile
@paul1522
paul1522 / BarTzar
Last active September 18, 2018 17:04 — forked from illcrx/BarTzar
Bar analyzing Indicator for TradingView from Real-Crypto
//@version=3
study("BarTzar", overlay=true)
//Variables to get percentage open/close
breadth = high - low //this is the bar range
closeBreadth = close - low // this is the closing
barCloseBreadth = closeBreadth / breadth
//supDayThresh = input(40, minval=0, maxval=100, title="Threshold for support")