The link below is a binary dump of the communication content of an investment application.
What should I do if I want to parse meaningful data (such as the Nikkei average)?
This application shows real-time price fluctuations.
I think it was sent in some format (msgpack, jsonb, etc.), but I can't tell what format it is.
I can parse it if I know what format it is...
I also tried the file command, but it didn't work.
https://gist.github.com/anonymous/81b083fce661838032de25ca774178c7
This dump is the data when displaying Nikkei futures data.
The application allows you to obtain various types of data, including stock prices, futures, FX, and overseas market indicators.
However, when switching from stock prices to futures, it takes a reasonable amount of time, so maybe only the ones currently displayed are coming.
This value is not visible from the app, but
when expressed in ascii from 0000004F
to 0000005F
20180307.210053
, which seems to be the time this data was sent.
I think there is too little sample data or clue information to guess.
"For investment" means stock price (domestic only or foreign only)?Index only or individual stocks? Exchange rate?Virtual currency?etc
Most of the text is separated by 0x11.It may be some kind of general format, but I can't see the key value, so I have no choice but to imagine for myself which part of the parser is what it is.
© 2024 OneMinuteCode. All rights reserved.