Is there a way we could get certains indicators from a vector of Deal IDs?
I have tried the get_data function, but that requires RICs. Is there something similar for deals?
For example, "proj" is a vector of Project IDs, and "pjf_fields" is the vector of indicators I want to download. What functions could I use to get something similar to this?
all_results = []
for proj in list_projects:
universe = [str(proj)]
df = ld.get_data(
universe=universe,
fields=pjf_fields
)
df["Project"] = proj
all_results.append(df)
final_df = pd.concat(all_results, ignore_index=True)
final_df
print(len(final_df))
Thank you in advance!
Matilde