This is just a gem to assist in managing candlestick chart data in Ruby. I couldn't find anything with a cursory glance, so I wrote one.
Make a new candle like this:
candle = Candle.new(open_time, open, high, low, close, volume)
Update its data like this:
candle.update(price, volume)