I'm doing like this:
import refinitiv.data.eikon as ek
import refinitiv.data as rd
df_teste2 = rd.get_history(
universe = [
"BRIMAB=ANDS",
],
fields=["CF_LAST"],
interval = "daily"
)
the output is a empty
New posts are disabled while we improve the user experience.
You can browse the site, or for urgent issues, raise a query at MyAccount.
I'm doing like this:
import refinitiv.data.eikon as ek
import refinitiv.data as rd
df_teste2 = rd.get_history(
universe = [
"BRIMAB=ANDS",
],
fields=["CF_LAST"],
interval = "daily"
)
the output is a empty
Hi @natanael.fernandes ,
That is because there is no CF_LAST prices for this instruments (I have quickly checked via DIB in Workspace). Consider using "TRDPRC_1" as a field name as shown:
df_teste2 = rd.get_history(universe = ["BRIMAB=ANDS"],fields=["TRDPRC_1"], start = '2023-01-01', end = '2023-02-06', interval = "daily") df_teste2
Best regards,
Haykaz