I'm pretty new in financial data analyzing with python. I have a clean data with ask and bid order books like this:
In:
df.loc ['2022-03-18 00:00:00' , 'LOB_Bid']
Out:
200.000000|1|578.750000|1|586.500000|1|6490.000000|3|7396.000000|3|7859.000000|1|8000.000000|1|8391.000000|1|9050.000000|4|9679.000000|2|9984.000000|1|10184.000000|1|10284.000000|1|10700.000000|1|10786.000000|2|10882.000000|2|10888.000000|1|11111.000000|1|11136.000000|1|11611.000000|2|11686.000000|1|11712.000000|1|11750.000000|1|11800.000000|5|11818.000000|2|11911.000000|1|12000.000000|203|12002.000000|2|12075.000000|1|12096.000000|9|12113.250000|1|12213.750000|2|12223.000000|1|12234.000000|1|12255.000000|1|12282.500000|5|12303.000000|1|12329.000000|1|12345.750000|4|12355.500000|6
(Actually it's so much longer)
How I can use this data in my analysis? How I can extract useful data from that for predicting price? Could you please kindly guide me? Thanks
I want to use this data in classification and analysis. But I don't have any idea about it.