The server sometimes (multiple times per market day) sends me duplicate minutes bars but with slightly different volume data. For example:
Bar({ 'close': 121.2199,
'high': 121.25,
'low': 121.06,
'open': 121.07,
'symbol': 'AAPL',
'timestamp': 1617031500000000000,
'volume': 233197})
Bar({ 'close': 121.2199,
'high': 121.25,
'low': 121.06,
'open': 121.07,
'symbol': 'AAPL',
'timestamp': 1617031500000000000,
'volume': 233198})
Can anyone tell me why this happens?