If in real-time data in one stream, then how to combine historical data?
code:
UInt64 handle1 = consumer.registerClient( ReqMsg().domainType( MMT_MARKET_PRICE ).serviceName( "ELEKTRON_DD" ).name( "ESM1m" ), client ); UInt64 handle2 = consumer.registerClient( ReqMsg().domainType( MMT_MARKET_PRICE ).serviceName( "ELEKTRON_DD" ).name( "ESM1" ), client );
real-time data is mixed (Level 2+trade) in one stream, historical data two files (RawLegacyMarketDepth and Market Price).
is it possible to get the order book and trades from history in the formats we need in one file, sorted by time?
How to combine these two files correctly?