Skip to content

Instantly share code, notes, and snippets.

// Created by @pequet (https://www.tradingview.com/u/pequet) May 28 2018
// https://github.com/pequet/
// NOT FOR DISTRIBUTION
// @version=3
// Thanks Greg A! https://www.tradingview.com/u/Gregg_s/
// Candles are often missing for shitcoins on tradingview and sometimes in not-so-small resolutions
// https://www.tradingview.com/script/Cp6sqEAN-Candle-Thief-v1-0-TradingView-Anomalies/
// Implications:
// Created by @pequet (https://www.tradingview.com/u/pequet) May 20, 2018
// https://github.com/pequet/
// NOT FOR DISTRIBUTION
// @version=3
// References:
// https://www.youtube.com/watch?v=cq3gkwin1y4
study(title="Intraday Intensity v0.1", shorttitle="II", overlay=false, precision=8)
// Created by @pequet (https://www.tradingview.com/u/pequet) April 11 2017
// https://github.com/pequet/
// NOT FOR DISTRIBUTION
// @version=3
study(title="BITFINEX:LONGS:SHORTS v0.0.3", shorttitle="LONGS:SHORTS", overlay=false, precision=8)
Market(side) =>
market = ticker=="BTCEUR" or ticker=="XBTEUR" ? "BTCEUR"
: ticker=="BTCJPY" or ticker=="XBTJPY" ? "BTCJPY"
// Created by @pequet (https://www.tradingview.com/u/pequet) April 11, 2018
// https://github.com/pequet/
// NOT FOR DISTRIBUTION
// @version=3
// References:
// http://stockcharts.com/school/doku.php?id=chart_school:chart_analysis:gaps_and_gap_analysis
// https://bioequity.org/statistics-do-stock-price-gaps-always-get-filled/
study(title="Pandas Target Practice v1.0.4", shorttitle="Pandas Target Practice", overlay=false, precision=8)
//@version=3
study("3MA")
plot(ema(close, 13), color=red, title="13 SMA")
plot(sma(close, 30), color=yellow, title="30 SMA")
plot(sma(close, 200), color=orange, title="200 SMA")