Quantopian's community platform is shutting down. Please read this post for more information and download your code.
Back to Community
Volume lookup for list of symbols

How do you modify the below command to lookup a list of symbols:

data = get_pricing('SPY', start_date='2015-6-1', end_date='2015-6-20', frequency='daily')

1 response

symbol_list = ['ABR','ACC','ADC']
data = get_pricing(symbol_list, start_date='2015-6-1', end_date='2015-6-20', frequency='daily', fields='volume')