Generation

generate functionTue, 30 May 2023

leer libro de ordenes de binance

def read_orders(symbol, step): ''' This function reads the book of orders of a symbol in binance ''' url = f'https://api.binance.com/api/v3/depth?symbol={symbol}&limit={step}' return requests.get(url).json()

Questions about programming?Chat with your personal AI assistant