Re: Multiple output for the same date

Here it is, thanks!


# trial for community

fields_financials_new = ["TR.CommonName", "TR.OrganizationID", "TR.SucceededBy", "TR.RegistrationCountry", 'TR.RegCountryCode', "TR.HeadquartersCountry", "TR.HQCountryCode","TR.F.StatementDate","TR.F.TotRevenue","TR.F.GrossTotRevBizActiv","TR.F.TotAssets","TR.F.TotCurrAssets","TR.F.IntangAssets","TR.F.EmpAvg","TR.F.LaborRelExpnTot","TR.F.EBIT","TR.F.EBITDAMargPct","TR.F.TotAssets.currency", 'TR.Revenue.date']


list_date0_str = [f"{2000 + i}-01-01" for i in range(1)]

for k in range(len(list_date0_str)):

date0 = list_date0_str[0]

dateT = 0

parameter_dict = parameters={'SDate': dateT, 'EDate': date0, 'Frq': 'Y', 'Curn':'USD'}


data_PermID, error_PermID = ek.get_data(instruments='AU000000TEN8', fields=fields_financials_new, parameters=parameter_dict)

print(f'PermID requests done!{k}', end='')

print(data_PermID)

From: Multiple output for the same date