Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
def run(self,
data,
symbols,
start=datetime(2007, 1, 1),
end=None,
lookback=0):
if not end:
end = datetime.now()
symbols_data = super(YahooVolumeData, self).run(
data=data, symbols=symbols, start=start,
end=end, lookback=lookback, source="yahoo")
return symbols_data['Volume']