How to make my "Binance CCXT" Code Run's Fast? bars = ex.fetch_ohlcv('ZIL/USDT', timeframe=timeframeEMA, limit=500) data = pd.DataFrame(bars[:-1], columns=['timestamp', 'open', 'high', 'low', 'close', 'volume']) data['timestamp'] = pd.to_datetime(data['timestamp'], unit='ms') I Want to make my code run fast Iam having multiple lines like this i have to take the data of multiple coins it is taking 3Minutes to run But i want this in 10 or 5seconds Can anybody HelpMe!
<pre>How to make my "Binance CCXT" Code Run's Fast? bars = ex.fetch_ohlcv('ZIL/USDT', timeframe=timeframeEMA, limit=500) data = pd.DataFrame(bars[:-1], columns=['timestamp', 'open', 'high', 'low', 'close', 'volume']) data['timestamp'] = pd.to_datetime(data['timestamp'], unit='ms') I Want to make my code run fast Iam having multiple lines like this i have to take the data of multiple coins it is taking 3Minutes to run But i want this in 10 or 5seconds Can anybody HelpMe!
var
This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)