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()

Want to kickstart your project?Use the new AI Studio to create your code