I am looking to get historical currencies data (London or Europe close) the Python API, but US CLOSE seems to be the only one that is available. Any ideas about how to pull EU/London close quotations?
import eikon as ek import datetime as dt import pandas as pd ek.set_app_key(API_KEY) start_date = dt.datetime.now() end_date = dt.datetime.now() - dt.timedelta(days=100) currencies_list = [] # CURRENCY CODES GO HERE df = ek.get_timeseries( currencies_list, 'CLOSE', start_date=start_date.strftime('%Y-%m-%d'), end_date=end_date.strftime('%Y-%m-%d'), )