Describe the technology
- What API are you using? => Eikon
- What language are you using? => Python
- What environment are you in? => Windows
Palladium AM/PM is not queried by get_history function It was previously inquired, but it seems that the problem occurred around May 2023 For your information, get_data is inquired normally
Maybe it's not a grammatical problem, but there's a problem with the account you're using. [ ### email ### ] Check it out on your account
Please refer to the attached file
code
#-*- coding:utf-8 -*-
import time, pymysql, json
import eikon as tr
import pandas as pd
from datetime import datetime,timedelta
from calendar import month
import refinitiv.data as rd
import sys
import requests
import json
rd.open_session()
tr.set_app_key(' ### app key ### ')
print('###### TEST get_date Start ######')
result = tr.get_data(
instruments = ['XPDFIXAM=', 'XPDFIXPM='],
fields = ['PRIMACT_1', 'TRDPRC_1']
)
print(result)
print('###### TEST get_date End ######')
print('###### TEST get_history Start ######')
history = rd.get_history(universe=['XPDFIXAM=', 'XPDFIXPM='], fields=['PRIMACT_1','TRDPRC_1'])
print(history)
print('###### TEST get_history End ######')
result
###### TEST get_date Start ######
( Instrument PRIMACT_1 TRDPRC_1
0 XPDFIXAM= 1417 1417
1 XPDFIXPM= 1411 1411, None)
###### TEST get_date End ######
###### TEST get_history Start ######
Empty DataFrame
Columns: []
Index: []
###### TEST get_history End ######
PS C:\LME>