Pine Script Chart ViewerDisplay your custom charts exported from anywhere in TradingView.
Put your candles on  candles :
 var Candle  candles = array.from(...) 
For instance:
 var Candle  candles = array.from(Candle.new(2.0, 4.0, 1.0, 3.0), Candle.new(3.0, 5.0, 2.0, 4.0)) 
Candle details:
 Candle.new(open_1, high_1, low_1, close_1) 
