Hi,
I was trying to migrate a formula form Excel to Python API. The excel formula is below:
=RHistory({"CZCF9"},".Timestamp;OFF_CLOSE;","START:42005 END:43392 INTERVAL:1D",,"TSREPEAT:NO SORT:ASC CH:Fd",G11)
When I used Eikon Python API
ek.get_timeseries( ['CZCF9'], 'OFF_CLOSE')
I could not retrieve the data. If 'CLOSE' was used as field name, there were data returned. However, returned prices were settlement prices from the exchange, NOT the actual closing price.
How could I get the closing price via Python API? Thanks