Historical data on USFN3025=TWEB

I see a value for the field "CF_CLOSE" in the data item browser for RICS "USFN3025=TWEB". However, ek.get_timeseries(["USFN3025=TWEB"], fields="CF_CLOSE") returns NaN for every date. Please help.

Best Answer

  • Hi @pandichef - thanks for your question. The current timeseries API has a reduced data model of only 6 fields Open, High, Low, Close, Volume, Count. So if you use the Close field you will get what you are looking for:

    ek.get_timeseries(["USFN3025=TWEB"], fields="CLOSE")

    image

    I hope this can help.