Hello,
I have a misunderstanding between two Eikons queries (get_data) :
data_grid, err = ek.get_data("CHRW.OQ", fields=['TR.HIGHPRICE','TR.PriceClose','TR.LOWPRICE','TR.PriceOpen','TR.Volume','TR.BIDPRICE','TR.ASKPRICE','TR.HIGHPRICE.date'], parameters={'SDate':'2006-10-09'})
print (data_grid.T)
data_grid, err = ek.get_data("CHRW.OQ", fields=['TR.HIGHPRICE','TR.PriceClose','TR.LOWPRICE','TR.PriceOpen','TR.Volume','TR.BIDPRICE','TR.ASKPRICE','TR.HIGHPRICE.date'], parameters={'SDate':'2006-10-06','EDate':'2006-10-09'})
print (data_grid.T)
The first one returns all the data for the RIC "CHRW.OQ" of 2006-10-09 and the second one returns to me the data for the RIC "CHRW.OQ" from 2006-10-06 to 2006-10-09.
Except that the second command does not return me all the data for the 2006-10-09 I miss "PriceClose"; "Price Open"; "Volume"; .. Yet I get all the datas with the first command.
Why do I miss data when I ask with two dates?
Thanksdata.png