Hello, any idea on how to find market cap for a stock on a specific date (or use shares oustanding * last close to calculate it)
Here is my example on how I get the specific day high, but would like to be able to do market cap in the same way...
test_day = '2017-06-29'
stock_syms = symbols([ 'TPX', 'COMM', 'AAPL' ])
all_pricing_df_h = get_pricing(stock_syms, start_date=test_day, end_date=test_day, fields='high', frequency='daily')
all_pricing_df_h #print
Equity(25802 [TPX]) Equity(45734 [COMM]) Equity(24 [AAPL])
2017-06-29 00:00:00+00:00 55.45 38.437 145.13
Thanks a lot and please advice!