Ina Goel

Results 2 comments of Ina Goel

# split stocks to 20 symbol_groups = list(chunks(stocks['Ticker'], 20)) symbol_strings = [] for i in range(0, len(symbol_groups)): symbol_strings.append(','.join(symbol_groups[i]) final_dataframe = pd.DataFrame(columns = my_columns) for symbol_string in symbol_strings[:1]: batch_api_call_url = f'https://cloud.iexapis.com/stable/stock/market/batch/types=quote&symbols{symbol_string}&token={IEX_CLOUD_API_TOKEN}'...