Hey Guys im having trouble accessing bar data for my continous Futures contract, I need the High, Low, and Close of each minute. this is what ive tried so far:

bar = data[self._continuousContract.Mapped.Symbol]
bar = data[self._continuousContract.Mapped]
bar = data[contract]
bar = data[contract.Symbol]
bar = data.bar[contract.Symbol]

but none of these methods are working, if anybody knows how to do it please let me know, Thanks
Shner