I have a trading bot that trades multiple pairs (30-40). It uses the previous 5m candle for the price input. Therefore, I get 5m history for ALL pairs one by on
I'm trying to open two web sockets - depth book and user socket. Here's my code: async def sockets(client): bm = BinanceSocketManager(client) ds = bm.de
exchange.load_markets() while 1: try: bars = exchange.fetch_ohlcv(ETH/USDT, timeframe='5m', limit=5)
i'm part of a MarketMaker team and currently need to get crypto Market Data from Binance. Here are the requirements... get public market data, so dont have api
I would like to get only one pair from the response. And I can't really understand how I should pass my parameter. Instructions say: Symbol price ticker GET
bsc = 'https://bsc-dataseed.binance.org/' web3 = Web3(Web3.HTTPProvider(bsc)) # print(web3.isConnected()) account_1 = '0xXXXXXXXXXXXXXXX
I’m trying to calculate Connor’s RSI (CRSI). RSI and ROC give correct results, but due to streaks I get incorrect results for CRSI. Does anyone know