Hi,
I'm using the following code to import historical data for a stock in Python:
ld.get_data(universe = "ABBN.S", fields = ['TR.CLOSEPRICE.DATE', 'TR.CompanyMarketCapitalization'], parameters = {'SDate': Start_Date, 'EDate': End_Date, 'Frq': 'D'})
Now I would like to import the price-to-book ratio.
What is the best way to get it — ideally not per share, but the total price-to-book for the company?
Thanks in advance!