Getting a historic_agg_v2() got an unexpected keyword argument 'size'

I’ve resolved the historic agg error but updating the variables for time space and from…to but now receive this error when running the script:

def get_1000m_history_data(symbols): print('Getting historical data...') minute_history = {} c = 0 for symbol in symbols: minute_history[symbol] = api.polygon.historic_agg_v2( timespan="minute", symbol=symbol, limit=1000, multiplier=1, _from='2021-01-01', to='2021-01-26' ).df c += 1 print('{}/{}'.format(c, len(symbols))) print('Success.') return minute_history

Getting current ticker data…
Success.
Tracking 105 symbols.
Getting historical data…
1/105
2/105
3/105
4/105
5/105
6/105
7/105
8/105
9/105
10/105
11/105
12/105
13/105

100/105
101/105
102/105
103/105
104/105
105/105
Success.
Watching 105 symbols.
ERROR:root:error while consuming ws messages: unknown channel A.UONE (you may need to specify the right data_stream

Was actually able to resolve this but not sure if my code is working it now just sits at watching symbols…