{ "cells": [ { "cell_type": "code", "execution_count": 4, "id": "3a269644", "metadata": {}, "outputs": [], "source": [ "import modules.aster_auth as aster_auth" ] }, { "cell_type": "code", "execution_count": 9, "id": "4395fabb", "metadata": {}, "outputs": [], "source": [ "listen_key_request = {\n", " \"url\": \"/fapi/v3/listenKey\",\n", " \"method\": \"POST\",\n", " \"params\": {}\n", "}\n", "cancel_all_open_orders = {\n", " \"url\": \"/fapi/v3/allOpenOrders\",\n", " \"method\": \"DELETE\",\n", " \"params\": {\n", " 'symbol': 'ETHUSDT',\n", " }\n", "}\n", "cancel_order = {\n", " \"url\": \"/fapi/v3/order\",\n", " \"method\": \"DELETE\",\n", " \"params\": {\n", " 'symbol': 'ETHUSDT',\n", " 'orderId': 17349955824,\n", " }\n", "}\n", "fut_acct_balances = {\n", " \"url\": \"/fapi/v3/balance\",\n", " \"method\": \"GET\",\n", " \"params\": {}\n", "}\n", "fut_acct_openOrders = {\n", " \"url\": \"/fapi/v3/openOrders\",\n", " \"method\": \"GET\",\n", " \"params\": {}\n", "}\n", "fut_acct_positionRisk = {\n", " \"url\": \"/fapi/v3/positionRisk\",\n", " \"method\": \"GET\",\n", " \"params\": {\n", " 'symbol': '',\n", " }\n", "}\n", "fut_acct_exchangeInfo = {\n", " \"url\": \"/fapi/v3/exchangeInfo\",\n", " \"method\": \"GET\",\n", " \"params\": {}\n", "}\n", "commission_rate = {\n", " \"url\": \"/fapi/v3/commissionRate\",\n", " \"method\": \"GET\",\n", " \"params\": {\n", " 'symbol': 'ETHUSDT',\n", " }\n", "}\n", "candles = {\n", " \"url\": \"/fapi/v3/klines\",\n", " \"method\": \"GET\",\n", " \"params\": {\n", " 'symbol': 'BTCUSDT',\n", " 'interval': '1m',\n", " 'limit':'1440'\n", " }\n", "}\n", "post_order = {\n", " \"url\": \"/fapi/v3/order\",\n", " \"method\": \"POST\",\n", " \"params\": {\n", " 'symbol': 'BNBUSDT',\n", " 'side': 'SELL',\n", " 'type': 'LIMIT',\n", " 'timeInForce': 'GTX',\n", " 'quantity': '0.01',\n", " 'price': '620.1',\n", " 'reduce_only': True,\n", " }\n", "}" ] }, { "cell_type": "code", "execution_count": 10, "id": "2122885a", "metadata": {}, "outputs": [], "source": [ "j = await aster_auth.post_authenticated_url(fut_acct_positionRisk)" ] }, { "cell_type": "code", "execution_count": 11, "id": "e7341726", "metadata": {}, "outputs": [ { "data": { "text/plain": [ "[{'symbol': 'TRUTHUSDT',\n", " 'positionAmt': '0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '5',\n", " 'maxNotionalValue': '100000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'SBETUSDT',\n", " 'positionAmt': '0.00',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '20',\n", " 'maxNotionalValue': '130000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'BANKUSDT',\n", " 'positionAmt': '0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '5',\n", " 'maxNotionalValue': '100000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'EVAAUSDT',\n", " 'positionAmt': '0.0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '5',\n", " 'maxNotionalValue': '100000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'XAIUSDT',\n", " 'positionAmt': '0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '5',\n", " 'maxNotionalValue': '125000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'TSLAUSDT',\n", " 'positionAmt': '0.00',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '20',\n", " 'maxNotionalValue': '130000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'MONUSDT',\n", " 'positionAmt': '0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '5',\n", " 'maxNotionalValue': '100000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'PNUTUSDT',\n", " 'positionAmt': '0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '20',\n", " 'maxNotionalValue': '50000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'PENDLEUSDT',\n", " 'positionAmt': '0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '20',\n", " 'maxNotionalValue': '100000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'DEXEUSDT',\n", " 'positionAmt': '0.00',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '5',\n", " 'maxNotionalValue': '250000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'RVVUSDT',\n", " 'positionAmt': '0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '5',\n", " 'maxNotionalValue': '100000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'AWEUSDT',\n", " 'positionAmt': '0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '5',\n", " 'maxNotionalValue': '50000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'JANITORUSDT',\n", " 'positionAmt': '0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '20',\n", " 'maxNotionalValue': '1000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'SHELLUSDT',\n", " 'positionAmt': '0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '20',\n", " 'maxNotionalValue': '10000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'NIGHTUSDT',\n", " 'positionAmt': '0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '5',\n", " 'maxNotionalValue': '100000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'WHITEWHALEUSDT',\n", " 'positionAmt': '0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '2',\n", " 'maxNotionalValue': '80000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'CHIPUSDT',\n", " 'positionAmt': '0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '50',\n", " 'maxNotionalValue': '5000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': '1000BONKUSDT',\n", " 'positionAmt': '0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '20',\n", " 'maxNotionalValue': '1000000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'ESPUSDT',\n", " 'positionAmt': '0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '5',\n", " 'maxNotionalValue': '50000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'GRIFFAINUSDT',\n", " 'positionAmt': '0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '5',\n", " 'maxNotionalValue': '50000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'TRXUSDT',\n", " 'positionAmt': '0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '20',\n", " 'maxNotionalValue': '5000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'MORPHOUSDT',\n", " 'positionAmt': '0.0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '3',\n", " 'maxNotionalValue': '1000000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'FHEUSDT',\n", " 'positionAmt': '0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '10',\n", " 'maxNotionalValue': '10000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'CHILLGUYUSDT',\n", " 'positionAmt': '0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '5',\n", " 'maxNotionalValue': '60000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'BROCCOLI714USDT',\n", " 'positionAmt': '0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '20',\n", " 'maxNotionalValue': '10000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': '龙虾USDT',\n", " 'positionAmt': '0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '2',\n", " 'maxNotionalValue': '80000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'SAPIENUSDT',\n", " 'positionAmt': '0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '20',\n", " 'maxNotionalValue': '100000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'SOMIUSDT',\n", " 'positionAmt': '0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '20',\n", " 'maxNotionalValue': '50000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'EULUSDT',\n", " 'positionAmt': '0.0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '5',\n", " 'maxNotionalValue': '250000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'BREVUSDT',\n", " 'positionAmt': '0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '5',\n", " 'maxNotionalValue': '125000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'POLUSDT',\n", " 'positionAmt': '0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '20',\n", " 'maxNotionalValue': '200000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'OKBUSDT',\n", " 'positionAmt': '0.0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '20',\n", " 'maxNotionalValue': '5000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'UMAUSDT',\n", " 'positionAmt': '0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '5',\n", " 'maxNotionalValue': '125000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'APEUSDT',\n", " 'positionAmt': '0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '20',\n", " 'maxNotionalValue': '5000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'AIOTUSDT',\n", " 'positionAmt': '0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '5',\n", " 'maxNotionalValue': '60000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'SKLUSDT',\n", " 'positionAmt': '0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '20',\n", " 'maxNotionalValue': '25000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'B2USDT',\n", " 'positionAmt': '0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '5',\n", " 'maxNotionalValue': '100000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'ZEREBROUSDT',\n", " 'positionAmt': '0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '5',\n", " 'maxNotionalValue': '60000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'OPENUSDT',\n", " 'positionAmt': '0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '20',\n", " 'maxNotionalValue': '100000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'RECALLUSDT',\n", " 'positionAmt': '0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '5',\n", " 'maxNotionalValue': '100000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'SKYAIUSDT',\n", " 'positionAmt': '0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '5',\n", " 'maxNotionalValue': '100000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'MTLUSDT',\n", " 'positionAmt': '0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '20',\n", " 'maxNotionalValue': '25000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'VIRTUALUSDT',\n", " 'positionAmt': '0.0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '20',\n", " 'maxNotionalValue': '100000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'PROMUSDT',\n", " 'positionAmt': '0.0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '5',\n", " 'maxNotionalValue': '125000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'AFEEUSDT',\n", " 'positionAmt': '0.0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '2',\n", " 'maxNotionalValue': '2500',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'GUSDT',\n", " 'positionAmt': '0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '5',\n", " 'maxNotionalValue': '50000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'HUMAUSDT',\n", " 'positionAmt': '0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '3',\n", " 'maxNotionalValue': '500000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'MANAUSDT',\n", " 'positionAmt': '0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '20',\n", " 'maxNotionalValue': '5000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'TRBUSDT',\n", " 'positionAmt': '0.0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '20',\n", " 'maxNotionalValue': '25000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'MANTRAUSDT',\n", " 'positionAmt': '0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '5',\n", " 'maxNotionalValue': '125000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'IPUSDT',\n", " 'positionAmt': '0.0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '20',\n", " 'maxNotionalValue': '2000000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'ONDOUSDT',\n", " 'positionAmt': '0.0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '20',\n", " 'maxNotionalValue': '60000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': '2ZUSDT',\n", " 'positionAmt': '0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '5',\n", " 'maxNotionalValue': '125000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'PTBUSDT',\n", " 'positionAmt': '0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '20',\n", " 'maxNotionalValue': '100000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'PIPPINUSDT',\n", " 'positionAmt': '0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '5',\n", " 'maxNotionalValue': '100000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'FORMUSDT',\n", " 'positionAmt': '0.0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '5',\n", " 'maxNotionalValue': '125000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'KOMAUSDT',\n", " 'positionAmt': '0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '5',\n", " 'maxNotionalValue': '50000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'HANAUSDT',\n", " 'positionAmt': '0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '10',\n", " 'maxNotionalValue': '10000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': '42USDT',\n", " 'positionAmt': '0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '5',\n", " 'maxNotionalValue': '100000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'INTCUSDT',\n", " 'positionAmt': '0.00',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '5',\n", " 'maxNotionalValue': '10000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'TAUSDT',\n", " 'positionAmt': '0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '3',\n", " 'maxNotionalValue': '250000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'ENJUSDT',\n", " 'positionAmt': '0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '5',\n", " 'maxNotionalValue': '125000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'OPGUSDT',\n", " 'positionAmt': '0.0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '2',\n", " 'maxNotionalValue': '500000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'TRADOORUSDT',\n", " 'positionAmt': '0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '20',\n", " 'maxNotionalValue': '100000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'ENSUSDT',\n", " 'positionAmt': '0.0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '20',\n", " 'maxNotionalValue': '100000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'ASTEROIDUSDT',\n", " 'positionAmt': '0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '2',\n", " 'maxNotionalValue': '200000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'CRCLUSDT',\n", " 'positionAmt': '0.00',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '5',\n", " 'maxNotionalValue': '10000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'ZECUSDT',\n", " 'positionAmt': '0.000',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '75',\n", " 'maxNotionalValue': '6250',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'HYPEUSDT',\n", " 'positionAmt': '0.00',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '300',\n", " 'maxNotionalValue': '1000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'SYRUPUSDT',\n", " 'positionAmt': '0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '3',\n", " 'maxNotionalValue': '500000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'GALAUSDT',\n", " 'positionAmt': '0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '20',\n", " 'maxNotionalValue': '5000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'TAGUSDT',\n", " 'positionAmt': '0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '20',\n", " 'maxNotionalValue': '100000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'MANTAUSDT',\n", " 'positionAmt': '0.0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '20',\n", " 'maxNotionalValue': '25000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'LISTAUSDT',\n", " 'positionAmt': '0.0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '2',\n", " 'maxNotionalValue': '6000000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'METUSDT',\n", " 'positionAmt': '0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '5',\n", " 'maxNotionalValue': '250000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'RLSUSDT',\n", " 'positionAmt': '0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '5',\n", " 'maxNotionalValue': '100000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'MEMESUSDT',\n", " 'positionAmt': '0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '2',\n", " 'maxNotionalValue': '80000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'PUMPBTCUSDT',\n", " 'positionAmt': '0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '5',\n", " 'maxNotionalValue': '50000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'AAPLUSDT',\n", " 'positionAmt': '0.00',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '10',\n", " 'maxNotionalValue': '130000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'LRCUSDT',\n", " 'positionAmt': '0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '20',\n", " 'maxNotionalValue': '10000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': '雪球USDT',\n", " 'positionAmt': '0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '2',\n", " 'maxNotionalValue': '80000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'STGUSDT',\n", " 'positionAmt': '0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '20',\n", " 'maxNotionalValue': '25000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'STXUSDT',\n", " 'positionAmt': '0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '20',\n", " 'maxNotionalValue': '100000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'GIGGLEUSDT',\n", " 'positionAmt': '0.00',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '2',\n", " 'maxNotionalValue': '7500000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'AIUSDT',\n", " 'positionAmt': '0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '20',\n", " 'maxNotionalValue': '25000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'STOUSDT',\n", " 'positionAmt': '0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '5',\n", " 'maxNotionalValue': '50000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': '1000WOJAKUSDT',\n", " 'positionAmt': '0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '2',\n", " 'maxNotionalValue': '80000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'SENTISUSDT',\n", " 'positionAmt': '0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '4',\n", " 'maxNotionalValue': '1000000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'IOUSDT',\n", " 'positionAmt': '0.0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '2',\n", " 'maxNotionalValue': '2000000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'TAOUSDT',\n", " 'positionAmt': '0.0000',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '20',\n", " 'maxNotionalValue': '1000000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'TURTLEUSDT',\n", " 'positionAmt': '0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '5',\n", " 'maxNotionalValue': '125000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'ARUSDT',\n", " 'positionAmt': '0.0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '5',\n", " 'maxNotionalValue': '250000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'FILUSDT',\n", " 'positionAmt': '0.0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '20',\n", " 'maxNotionalValue': '1000000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'TRUMPUSDT',\n", " 'positionAmt': '0.00',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '10',\n", " 'maxNotionalValue': '60000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'PUMPUSDT',\n", " 'positionAmt': '0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '2',\n", " 'maxNotionalValue': '3000000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'BLENDUSDT',\n", " 'positionAmt': '0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '2',\n", " 'maxNotionalValue': '80000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'SOLUSDT',\n", " 'positionAmt': '0.00',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '100',\n", " 'maxNotionalValue': '50000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'AXLUSDT',\n", " 'positionAmt': '0.0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '20',\n", " 'maxNotionalValue': '50000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'LOOMUSDT',\n", " 'positionAmt': '0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '20',\n", " 'maxNotionalValue': '25000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'RONINUSDT',\n", " 'positionAmt': '0.0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '5',\n", " 'maxNotionalValue': '250000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': '1000SATSUSDT',\n", " 'positionAmt': '0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '5',\n", " 'maxNotionalValue': '125000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'BLASTUSDT',\n", " 'positionAmt': '0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '2',\n", " 'maxNotionalValue': '2000000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': '币安人生USDT',\n", " 'positionAmt': '0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '20',\n", " 'maxNotionalValue': '10000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'GMTUSDT',\n", " 'positionAmt': '0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '20',\n", " 'maxNotionalValue': '50000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'LINEAUSDT',\n", " 'positionAmt': '0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '4',\n", " 'maxNotionalValue': '1500000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'PIEVERSEUSDT',\n", " 'positionAmt': '0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '5',\n", " 'maxNotionalValue': '100000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'GWEIUSDT',\n", " 'positionAmt': '0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '2',\n", " 'maxNotionalValue': '7500000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'SPACEUSDT',\n", " 'positionAmt': '0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '20',\n", " 'maxNotionalValue': '5000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'FLUXUSDT',\n", " 'positionAmt': '0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '5',\n", " 'maxNotionalValue': '100000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'BANDUSDT',\n", " 'positionAmt': '0.0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '20',\n", " 'maxNotionalValue': '25000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'SKRUSDT',\n", " 'positionAmt': '0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '2',\n", " 'maxNotionalValue': '500000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'NATGASUSDT',\n", " 'positionAmt': '0.00',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '5',\n", " 'maxNotionalValue': '50000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'RPLUSDT',\n", " 'positionAmt': '0.0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '5',\n", " 'maxNotionalValue': '125000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'BLUAIUSDT',\n", " 'positionAmt': '0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '5',\n", " 'maxNotionalValue': '100000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'CRVUSDT',\n", " 'positionAmt': '0.0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '20',\n", " 'maxNotionalValue': '300000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'METAUSDT',\n", " 'positionAmt': '0.00',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '20',\n", " 'maxNotionalValue': '130000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'DOTUSDT',\n", " 'positionAmt': '0.0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '20',\n", " 'maxNotionalValue': '5000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'ACXUSDT',\n", " 'positionAmt': '0.0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '5',\n", " 'maxNotionalValue': '50000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'TAKEUSDT',\n", " 'positionAmt': '0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '20',\n", " 'maxNotionalValue': '100000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'APTUSDT',\n", " 'positionAmt': '0.0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '20',\n", " 'maxNotionalValue': '5000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'SEIUSDT',\n", " 'positionAmt': '0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '20',\n", " 'maxNotionalValue': '50000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'BIOUSDT',\n", " 'positionAmt': '0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '5',\n", " 'maxNotionalValue': '750000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'REDUSDT',\n", " 'positionAmt': '0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '5',\n", " 'maxNotionalValue': '250000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'NOMUSDT',\n", " 'positionAmt': '0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '20',\n", " 'maxNotionalValue': '50000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'ETHUSD1',\n", " 'positionAmt': '0.000',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '5',\n", " 'maxNotionalValue': '500000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'FRAXUSDT',\n", " 'positionAmt': '0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '20',\n", " 'maxNotionalValue': '25000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'MMTUSDT',\n", " 'positionAmt': '0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '5',\n", " 'maxNotionalValue': '125000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'PRLUSDT',\n", " 'positionAmt': '0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '2',\n", " 'maxNotionalValue': '500000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'MOODENGUSDT',\n", " 'positionAmt': '0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '20',\n", " 'maxNotionalValue': '100000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'AVAAIUSDT',\n", " 'positionAmt': '0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '5',\n", " 'maxNotionalValue': '60000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'XPINUSDT',\n", " 'positionAmt': '0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '20',\n", " 'maxNotionalValue': '100000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'TREEUSDT',\n", " 'positionAmt': '0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '20',\n", " 'maxNotionalValue': '100000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'ZROUSDT',\n", " 'positionAmt': '0.0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '20',\n", " 'maxNotionalValue': '50000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'XCNUSDT',\n", " 'positionAmt': '0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '2',\n", " 'maxNotionalValue': '80000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'BIGTIMEUSDT',\n", " 'positionAmt': '0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '20',\n", " 'maxNotionalValue': '25000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'HYPERUSDT',\n", " 'positionAmt': '0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '5',\n", " 'maxNotionalValue': '125000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'ETHFIUSDT',\n", " 'positionAmt': '0.0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '20',\n", " 'maxNotionalValue': '100000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'MUSDT',\n", " 'positionAmt': '0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '5',\n", " 'maxNotionalValue': '125000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'ETHUSDT',\n", " 'positionAmt': '0.000',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '2327.94576938',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '150',\n", " 'maxNotionalValue': '300000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 1777835550378},\n", " {'symbol': 'ZKCUSDT',\n", " 'positionAmt': '0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '20',\n", " 'maxNotionalValue': '100000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'ORDIUSDT',\n", " 'positionAmt': '0.0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '20',\n", " 'maxNotionalValue': '50000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'WOOUSDT',\n", " 'positionAmt': '0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '20',\n", " 'maxNotionalValue': '25000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'ALLOUSDT',\n", " 'positionAmt': '0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '5',\n", " 'maxNotionalValue': '125000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'GOOGUSDT',\n", " 'positionAmt': '0.00',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '20',\n", " 'maxNotionalValue': '130000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'MSTRUSDT',\n", " 'positionAmt': '0.00',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '5',\n", " 'maxNotionalValue': '10000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'XANUSDT',\n", " 'positionAmt': '0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '5',\n", " 'maxNotionalValue': '50000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'SOLUSD1',\n", " 'positionAmt': '0.00',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '5',\n", " 'maxNotionalValue': '500000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'SWARMSUSDT',\n", " 'positionAmt': '0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '5',\n", " 'maxNotionalValue': '60000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'XAGUSDT',\n", " 'positionAmt': '0.000',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '75.87000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '100',\n", " 'maxNotionalValue': '50000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'CFXUSDT',\n", " 'positionAmt': '0.0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '20',\n", " 'maxNotionalValue': '5000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'KGENUSDT',\n", " 'positionAmt': '0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '5',\n", " 'maxNotionalValue': '100000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'FOLKSUSDT',\n", " 'positionAmt': '0.0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '5',\n", " 'maxNotionalValue': '100000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'BUSDT',\n", " 'positionAmt': '0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '20',\n", " 'maxNotionalValue': '100000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'CLUSDT',\n", " 'positionAmt': '0.000',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '50',\n", " 'maxNotionalValue': '10000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'KATUSDT',\n", " 'positionAmt': '0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '5',\n", " 'maxNotionalValue': '50000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'MINAUSDT',\n", " 'positionAmt': '0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '20',\n", " 'maxNotionalValue': '25000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'ONUSDT',\n", " 'positionAmt': '0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '5',\n", " 'maxNotionalValue': '100000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'SPKUSDT',\n", " 'positionAmt': '0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '20',\n", " 'maxNotionalValue': '100000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'COAIUSDT',\n", " 'positionAmt': '0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '5',\n", " 'maxNotionalValue': '100000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'CLANKERUSDT',\n", " 'positionAmt': '0.00',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '5',\n", " 'maxNotionalValue': '100000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'RESOLVUSDT',\n", " 'positionAmt': '0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '20',\n", " 'maxNotionalValue': '10000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'COLLECTUSDT',\n", " 'positionAmt': '0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '5',\n", " 'maxNotionalValue': '50000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'LUNA2USDT',\n", " 'positionAmt': '0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '20',\n", " 'maxNotionalValue': '25000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'IRUSDT',\n", " 'positionAmt': '0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '5',\n", " 'maxNotionalValue': '15000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'PORT3USDT',\n", " 'positionAmt': '0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '20',\n", " 'maxNotionalValue': '100000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'MUUSDT',\n", " 'positionAmt': '0.00',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '2',\n", " 'maxNotionalValue': '8000000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'MITOUSDT',\n", " 'positionAmt': '0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '20',\n", " 'maxNotionalValue': '100000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': '黑马USDT',\n", " 'positionAmt': '0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '2',\n", " 'maxNotionalValue': '80000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'EOSUSDT',\n", " 'positionAmt': '0.0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '20',\n", " 'maxNotionalValue': '5000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'ZBTUSDT',\n", " 'positionAmt': '0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '5',\n", " 'maxNotionalValue': '125000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'EWYUSDT',\n", " 'positionAmt': '0.000',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '5',\n", " 'maxNotionalValue': '50000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'SUIUSDT',\n", " 'positionAmt': '0.0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '75',\n", " 'maxNotionalValue': '20000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'MAGMAUSDT',\n", " 'positionAmt': '0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '5',\n", " 'maxNotionalValue': '50000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'METISUSDT',\n", " 'positionAmt': '0.00',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '5',\n", " 'maxNotionalValue': '125000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'TRUUSDT',\n", " 'positionAmt': '0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '5',\n", " 'maxNotionalValue': '60000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'MERLUSDT',\n", " 'positionAmt': '0.0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '2',\n", " 'maxNotionalValue': '7500000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'AVNTUSDT',\n", " 'positionAmt': '0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '20',\n", " 'maxNotionalValue': '50000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'BIRBUSDT',\n", " 'positionAmt': '0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '2',\n", " 'maxNotionalValue': '7500000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'C98USDT',\n", " 'positionAmt': '0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '20',\n", " 'maxNotionalValue': '25000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'LABUSDT',\n", " 'positionAmt': '0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '5',\n", " 'maxNotionalValue': '100000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'GUNUSDT',\n", " 'positionAmt': '0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '20',\n", " 'maxNotionalValue': '10000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'BCHUSDT',\n", " 'positionAmt': '0.000',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '20',\n", " 'maxNotionalValue': '100000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'YBUSDT',\n", " 'positionAmt': '0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '5',\n", " 'maxNotionalValue': '250000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'BOMEUSDT',\n", " 'positionAmt': '0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '20',\n", " 'maxNotionalValue': '50000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': '1000SHIBUSDT',\n", " 'positionAmt': '0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '20',\n", " 'maxNotionalValue': '5000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'BERAUSDT',\n", " 'positionAmt': '0.0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '20',\n", " 'maxNotionalValue': '100000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'KAITOUSDT',\n", " 'positionAmt': '0.0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '3',\n", " 'maxNotionalValue': '1000000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'CUSDT',\n", " 'positionAmt': '0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '20',\n", " 'maxNotionalValue': '100000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'BEATUSDT',\n", " 'positionAmt': '0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '5',\n", " 'maxNotionalValue': '100000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'TONUSDT',\n", " 'positionAmt': '0.0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '20',\n", " 'maxNotionalValue': '400000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': '1000LUNCUSDT',\n", " 'positionAmt': '0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '5',\n", " 'maxNotionalValue': '100000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'TURBOUSDT',\n", " 'positionAmt': '0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '20',\n", " 'maxNotionalValue': '50000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'AVAXUSDT',\n", " 'positionAmt': '0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '20',\n", " 'maxNotionalValue': '800000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'PARTIUSDT',\n", " 'positionAmt': '0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '5',\n", " 'maxNotionalValue': '100000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'JUPUSDT',\n", " 'positionAmt': '0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '20',\n", " 'maxNotionalValue': '100000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'IRYSUSDT',\n", " 'positionAmt': '0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '5',\n", " 'maxNotionalValue': '100000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'PENGUINUSDT',\n", " 'positionAmt': '0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '2',\n", " 'maxNotionalValue': '300000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'MOVRUSDT',\n", " 'positionAmt': '0.00',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '5',\n", " 'maxNotionalValue': '50000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'MATICUSDT',\n", " 'positionAmt': '0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '20',\n", " 'maxNotionalValue': '10000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'JCTUSDT',\n", " 'positionAmt': '0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '5',\n", " 'maxNotionalValue': '100000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'INXUSDT',\n", " 'positionAmt': '0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '5',\n", " 'maxNotionalValue': '125000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'TIAUSDT',\n", " 'positionAmt': '0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '20',\n", " 'maxNotionalValue': '1000000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'MKRUSDT',\n", " 'positionAmt': '0.000',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '20',\n", " 'maxNotionalValue': '5000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'UNIUSDT',\n", " 'positionAmt': '0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '20',\n", " 'maxNotionalValue': '5000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'PERPUSDT',\n", " 'positionAmt': '0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '20',\n", " 'maxNotionalValue': '25000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'ARKMUSDT',\n", " 'positionAmt': '0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '20',\n", " 'maxNotionalValue': '10000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'COMPUSDT',\n", " 'positionAmt': '0.000',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '20',\n", " 'maxNotionalValue': '25000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'BTCDOMUSDT',\n", " 'positionAmt': '0.0000',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '5',\n", " 'maxNotionalValue': '250000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'ATUSDT',\n", " 'positionAmt': '0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '4',\n", " 'maxNotionalValue': '250000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': '1000PEPEUSDT',\n", " 'positionAmt': '0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '20',\n", " 'maxNotionalValue': '1500000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'FETUSDT',\n", " 'positionAmt': '0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '20',\n", " 'maxNotionalValue': '100000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'BANANAS31USDT',\n", " 'positionAmt': '0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '5',\n", " 'maxNotionalValue': '125000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'ARTXUSDT',\n", " 'positionAmt': '0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '2',\n", " 'maxNotionalValue': '80000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'SXPUSDT',\n", " 'positionAmt': '0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '20',\n", " 'maxNotionalValue': '25000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'AKEUSDT',\n", " 'positionAmt': '0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '5',\n", " 'maxNotionalValue': '50000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'ZILUSDT',\n", " 'positionAmt': '0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '20',\n", " 'maxNotionalValue': '50000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'AXSUSDT',\n", " 'positionAmt': '0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '20',\n", " 'maxNotionalValue': '50000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'TOSHIUSDT',\n", " 'positionAmt': '0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '20',\n", " 'maxNotionalValue': '100000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'BSBUSDT',\n", " 'positionAmt': '0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '5',\n", " 'maxNotionalValue': '50000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'CHZUSDT',\n", " 'positionAmt': '0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '20',\n", " 'maxNotionalValue': '50000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'XPLUSDT',\n", " 'positionAmt': '0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '4',\n", " 'maxNotionalValue': '1000000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'KASUSDT',\n", " 'positionAmt': '0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '5',\n", " 'maxNotionalValue': '750000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'BAYUSDT',\n", " 'positionAmt': '0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '2',\n", " 'maxNotionalValue': '80000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'NEIROUSDT',\n", " 'positionAmt': '0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '20',\n", " 'maxNotionalValue': '100000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'FUNUSDT',\n", " 'positionAmt': '0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '2',\n", " 'maxNotionalValue': '80000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'VINEUSDT',\n", " 'positionAmt': '0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '5',\n", " 'maxNotionalValue': '50000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'INJUSDT',\n", " 'positionAmt': '0.0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '20',\n", " 'maxNotionalValue': '400000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'LUMIAUSDT',\n", " 'positionAmt': '0.0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '3',\n", " 'maxNotionalValue': '250000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'EIGENUSDT',\n", " 'positionAmt': '0.0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '2',\n", " 'maxNotionalValue': '7500000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'ENSOUSDT',\n", " 'positionAmt': '0.0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '5',\n", " 'maxNotionalValue': '250000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'INITUSDT',\n", " 'positionAmt': '0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.08765944',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '50',\n", " 'maxNotionalValue': '5000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'ZORAUSDT',\n", " 'positionAmt': '0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '5',\n", " 'maxNotionalValue': '100000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'ARIAUSDT',\n", " 'positionAmt': '0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '20',\n", " 'maxNotionalValue': '100000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'ZRXUSDT',\n", " 'positionAmt': '0.0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '20',\n", " 'maxNotionalValue': '25000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'HIGHUSDT',\n", " 'positionAmt': '0.0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '5',\n", " 'maxNotionalValue': '50000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'DUSDT',\n", " 'positionAmt': '0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '5',\n", " 'maxNotionalValue': '60000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'ZKPUSDT',\n", " 'positionAmt': '0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '5',\n", " 'maxNotionalValue': '100000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'STABLEUSDT',\n", " 'positionAmt': '0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '5',\n", " 'maxNotionalValue': '100000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'STBLUSDT',\n", " 'positionAmt': '0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '20',\n", " 'maxNotionalValue': '100000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'BNBUSDT',\n", " 'positionAmt': '0.00',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '619.51000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '100',\n", " 'maxNotionalValue': '10000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 1777665139181},\n", " {'symbol': 'ETCUSDT',\n", " 'positionAmt': '0.00',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '20',\n", " 'maxNotionalValue': '20000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'XMRUSDT',\n", " 'positionAmt': '0.000',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '50',\n", " 'maxNotionalValue': '10000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'MEUSDT',\n", " 'positionAmt': '0.0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '20',\n", " 'maxNotionalValue': '25000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'CCUSDT',\n", " 'positionAmt': '0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '5',\n", " 'maxNotionalValue': '250000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'ALICEUSDT',\n", " 'positionAmt': '0.0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '20',\n", " 'maxNotionalValue': '25000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'AEROUSDT',\n", " 'positionAmt': '0.0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '5',\n", " 'maxNotionalValue': '750000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'TOWNSUSDT',\n", " 'positionAmt': '0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '20',\n", " 'maxNotionalValue': '100000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'DOGEUSDT',\n", " 'positionAmt': '0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '75',\n", " 'maxNotionalValue': '80000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'GPSUSDT',\n", " 'positionAmt': '0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '5',\n", " 'maxNotionalValue': '125000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'SNXUSDT',\n", " 'positionAmt': '0.0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '20',\n", " 'maxNotionalValue': '100000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'SOLVUSDT',\n", " 'positionAmt': '0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '5',\n", " 'maxNotionalValue': '50000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'CFGUSDT',\n", " 'positionAmt': '0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '5',\n", " 'maxNotionalValue': '125000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'SUSDT',\n", " 'positionAmt': '0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '5',\n", " 'maxNotionalValue': '750000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'EDENUSDT',\n", " 'positionAmt': '0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '5',\n", " 'maxNotionalValue': '250000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'XLMUSDT',\n", " 'positionAmt': '0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '20',\n", " 'maxNotionalValue': '100000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'DASHUSDT',\n", " 'positionAmt': '0.000',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '5',\n", " 'maxNotionalValue': '750000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'KAVAUSDT',\n", " 'positionAmt': '0.0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '20',\n", " 'maxNotionalValue': '25000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'SAHARAUSDT',\n", " 'positionAmt': '0.0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '2',\n", " 'maxNotionalValue': '60000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'JELLYJELLYUSDT',\n", " 'positionAmt': '0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '5',\n", " 'maxNotionalValue': '100000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'RUNEUSDT',\n", " 'positionAmt': '0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '20',\n", " 'maxNotionalValue': '25000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'OPUSDT',\n", " 'positionAmt': '0.0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '20',\n", " 'maxNotionalValue': '5000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'PLAYUSDT',\n", " 'positionAmt': '0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '5',\n", " 'maxNotionalValue': '50000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'COSUSDT',\n", " 'positionAmt': '0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '5',\n", " 'maxNotionalValue': '50000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'USELESSUSDT',\n", " 'positionAmt': '0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '5',\n", " 'maxNotionalValue': '50000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'BIRDUSDT',\n", " 'positionAmt': '0.00',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '2',\n", " 'maxNotionalValue': '80000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'LTCUSDT',\n", " 'positionAmt': '0.000',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '20',\n", " 'maxNotionalValue': '15000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'RENDERUSDT',\n", " 'positionAmt': '0.0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '20',\n", " 'maxNotionalValue': '100000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'FARTCOINUSDT',\n", " 'positionAmt': '0.0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '20',\n", " 'maxNotionalValue': '20000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'XPTUSDT',\n", " 'positionAmt': '0.000',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '3',\n", " 'maxNotionalValue': '30000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'TACUSDT',\n", " 'positionAmt': '0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '3',\n", " 'maxNotionalValue': '700000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'FLOWUSDT',\n", " 'positionAmt': '0.0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '5',\n", " 'maxNotionalValue': '200000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'HEMIUSDT',\n", " 'positionAmt': '0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '20',\n", " 'maxNotionalValue': '30000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'XPDUSDT',\n", " 'positionAmt': '0.000',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '2',\n", " 'maxNotionalValue': '80000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'CUDISUSDT',\n", " 'positionAmt': '0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '20',\n", " 'maxNotionalValue': '100000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'AEVOUSDT',\n", " 'positionAmt': '0.0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '3',\n", " 'maxNotionalValue': '500000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'GALUSDT',\n", " 'positionAmt': '0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '20',\n", " 'maxNotionalValue': '25000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'OGNUSDT',\n", " 'positionAmt': '0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '20',\n", " 'maxNotionalValue': '10000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'MOVEUSDT',\n", " 'positionAmt': '0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '5',\n", " 'maxNotionalValue': '250000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'ENAUSDT',\n", " 'positionAmt': '0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '25',\n", " 'maxNotionalValue': '800000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'AIAUSDT',\n", " 'positionAmt': '0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '20',\n", " 'maxNotionalValue': '5000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'RAVEUSDT',\n", " 'positionAmt': '0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '5',\n", " 'maxNotionalValue': '100000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'USUSDT',\n", " 'positionAmt': '0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '5',\n", " 'maxNotionalValue': '100000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'KNCUSDT',\n", " 'positionAmt': '0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '20',\n", " 'maxNotionalValue': '25000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'BLURUSDT',\n", " 'positionAmt': '0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '5',\n", " 'maxNotionalValue': '250000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'MEGAUSDT',\n", " 'positionAmt': '0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '5',\n", " 'maxNotionalValue': '50000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'ZRCUSDT',\n", " 'positionAmt': '0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '20',\n", " 'maxNotionalValue': '100000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'ESPORTSUSDT',\n", " 'positionAmt': '0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '20',\n", " 'maxNotionalValue': '100000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'ATOMUSDT',\n", " 'positionAmt': '0.00',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '20',\n", " 'maxNotionalValue': '5000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'POWERUSDT',\n", " 'positionAmt': '0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '5',\n", " 'maxNotionalValue': '100000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'TRUSTUSDT',\n", " 'positionAmt': '0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '5',\n", " 'maxNotionalValue': '100000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'NMRUSDT',\n", " 'positionAmt': '0.0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '20',\n", " 'maxNotionalValue': '25000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'SQDUSDT',\n", " 'positionAmt': '0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '4',\n", " 'maxNotionalValue': '500000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'GASUSDT',\n", " 'positionAmt': '0.0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '20',\n", " 'maxNotionalValue': '25000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'IOSTUSDT',\n", " 'positionAmt': '0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '20',\n", " 'maxNotionalValue': '25000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'HBARUSDT',\n", " 'positionAmt': '0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '20',\n", " 'maxNotionalValue': '800000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'LIGHTUSDT',\n", " 'positionAmt': '0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '5',\n", " 'maxNotionalValue': '100000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'POLYXUSDT',\n", " 'positionAmt': '0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '20',\n", " 'maxNotionalValue': '25000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'VANAUSDT',\n", " 'positionAmt': '0.00',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '5',\n", " 'maxNotionalValue': '250000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'BANUSDT',\n", " 'positionAmt': '0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '3',\n", " 'maxNotionalValue': '500000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'FLOCKUSDT',\n", " 'positionAmt': '0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '20',\n", " 'maxNotionalValue': '100000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'EDUUSDT',\n", " 'positionAmt': '0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '20',\n", " 'maxNotionalValue': '25000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'SNDKUSDT',\n", " 'positionAmt': '0.00',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '2',\n", " 'maxNotionalValue': '8000000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'ALGOUSDT',\n", " 'positionAmt': '0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '20',\n", " 'maxNotionalValue': '25000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'BTRUSDT',\n", " 'positionAmt': '0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '20',\n", " 'maxNotionalValue': '100000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'PYTHUSDT',\n", " 'positionAmt': '0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '20',\n", " 'maxNotionalValue': '75000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'BRUSDT',\n", " 'positionAmt': '0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '5',\n", " 'maxNotionalValue': '50000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'CARUSDT',\n", " 'positionAmt': '0.00',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '2',\n", " 'maxNotionalValue': '80000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'SENTUSDT',\n", " 'positionAmt': '0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '5',\n", " 'maxNotionalValue': '100000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'VVVUSDT',\n", " 'positionAmt': '0.00',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '20',\n", " 'maxNotionalValue': '10000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'ARPAUSDT',\n", " 'positionAmt': '0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '20',\n", " 'maxNotionalValue': '10000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': '1INCHUSDT',\n", " 'positionAmt': '0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '20',\n", " 'maxNotionalValue': '25000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'VELOUSDT',\n", " 'positionAmt': '0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '2',\n", " 'maxNotionalValue': '80000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'SIRENUSDT',\n", " 'positionAmt': '0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '5',\n", " 'maxNotionalValue': '50000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'PIXELUSDT',\n", " 'positionAmt': '0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '20',\n", " 'maxNotionalValue': '25000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'LINAUSDT',\n", " 'positionAmt': '0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '20',\n", " 'maxNotionalValue': '25000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'OWLUSDT',\n", " 'positionAmt': '0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '2',\n", " 'maxNotionalValue': '80000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'STRKUSDT',\n", " 'positionAmt': '0.0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '20',\n", " 'maxNotionalValue': '100000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'NVDAUSDT',\n", " 'positionAmt': '0.00',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '20',\n", " 'maxNotionalValue': '130000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'AIOUSDT',\n", " 'positionAmt': '0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '20',\n", " 'maxNotionalValue': '100000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'FOGOUSDT',\n", " 'positionAmt': '0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '20',\n", " 'maxNotionalValue': '10000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'BLZUSDT',\n", " 'positionAmt': '0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '20',\n", " 'maxNotionalValue': '25000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'ARCUSDT',\n", " 'positionAmt': '0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '5',\n", " 'maxNotionalValue': '50000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'XAUUSDT',\n", " 'positionAmt': '0.000',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '75',\n", " 'maxNotionalValue': '2500',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'DOODUSDT',\n", " 'positionAmt': '0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '5',\n", " 'maxNotionalValue': '50000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'LDOUSDT',\n", " 'positionAmt': '0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '20',\n", " 'maxNotionalValue': '400000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'PENGUUSDT',\n", " 'positionAmt': '0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '20',\n", " 'maxNotionalValue': '2000000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'ORCAUSDT',\n", " 'positionAmt': '0.0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '5',\n", " 'maxNotionalValue': '125000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'XRPUSDT',\n", " 'positionAmt': '0.0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '100',\n", " 'maxNotionalValue': '40000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'PORTALUSDT',\n", " 'positionAmt': '0.0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '5',\n", " 'maxNotionalValue': '50000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': '4USDT',\n", " 'positionAmt': '0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '50',\n", " 'maxNotionalValue': '5000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'BELUSDT',\n", " 'positionAmt': '0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '20',\n", " 'maxNotionalValue': '10000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'PROVEUSDT',\n", " 'positionAmt': '0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '20',\n", " 'maxNotionalValue': '100000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'QQQUSDT',\n", " 'positionAmt': '0.00',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '20',\n", " 'maxNotionalValue': '130000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'DOLOUSDT',\n", " 'positionAmt': '0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '20',\n", " 'maxNotionalValue': '25000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'USD1USDT',\n", " 'positionAmt': '0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '20',\n", " 'maxNotionalValue': '10000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'PROMPTUSDT',\n", " 'positionAmt': '0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '5',\n", " 'maxNotionalValue': '50000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'FIGHTUSDT',\n", " 'positionAmt': '0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '2',\n", " 'maxNotionalValue': '500000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'AIGENSYNUSDT',\n", " 'positionAmt': '0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '3',\n", " 'maxNotionalValue': '250000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'PHAUSDT',\n", " 'positionAmt': '0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '5',\n", " 'maxNotionalValue': '125000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'ANIMEUSDT',\n", " 'positionAmt': '0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '5',\n", " 'maxNotionalValue': '100000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'API3USDT',\n", " 'positionAmt': '0.0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '3',\n", " 'maxNotionalValue': '500000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'ELSAUSDT',\n", " 'positionAmt': '0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '2',\n", " 'maxNotionalValue': '500000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'CYSUSDT',\n", " 'positionAmt': '0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '5',\n", " 'maxNotionalValue': '100000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'BULLAUSDT',\n", " 'positionAmt': '0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '5',\n", " 'maxNotionalValue': '50000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': '人生K线USDT',\n", " 'positionAmt': '0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '2',\n", " 'maxNotionalValue': '80000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'ADAUSDT',\n", " 'positionAmt': '0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '20',\n", " 'maxNotionalValue': '2000000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'JTOUSDT',\n", " 'positionAmt': '0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '5',\n", " 'maxNotionalValue': '250000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'TSTUSDT',\n", " 'positionAmt': '0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '5',\n", " 'maxNotionalValue': '60000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'LITUSDT',\n", " 'positionAmt': '0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.93992527',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '50',\n", " 'maxNotionalValue': '2500',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 1777819835027},\n", " {'symbol': 'FFUSDT',\n", " 'positionAmt': '0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '5',\n", " 'maxNotionalValue': '100000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'XNYUSDT',\n", " 'positionAmt': '0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '20',\n", " 'maxNotionalValue': '10000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'EDGEUSDT',\n", " 'positionAmt': '0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '5',\n", " 'maxNotionalValue': '5000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'BMTUSDT',\n", " 'positionAmt': '0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '5',\n", " 'maxNotionalValue': '50000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'LYNUSDT',\n", " 'positionAmt': '0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '5',\n", " 'maxNotionalValue': '100000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'SOONUSDT',\n", " 'positionAmt': '0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '20',\n", " 'maxNotionalValue': '10000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'TRIAUSDT',\n", " 'positionAmt': '0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '5',\n", " 'maxNotionalValue': '125000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'SFPUSDT',\n", " 'positionAmt': '0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '20',\n", " 'maxNotionalValue': '25000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'RLCUSDT',\n", " 'positionAmt': '0.0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '20',\n", " 'maxNotionalValue': '25000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'WETUSDT',\n", " 'positionAmt': '0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '5',\n", " 'maxNotionalValue': '100000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'XCUUSDT',\n", " 'positionAmt': '0.0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '2',\n", " 'maxNotionalValue': '80000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'BOBUSDT',\n", " 'positionAmt': '0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '5',\n", " 'maxNotionalValue': '100000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'MSFTUSDT',\n", " 'positionAmt': '0.00',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '20',\n", " 'maxNotionalValue': '130000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'GOOGLUSDT',\n", " 'positionAmt': '0.00',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '5',\n", " 'maxNotionalValue': '10000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'IDUSDT',\n", " 'positionAmt': '0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '20',\n", " 'maxNotionalValue': '25000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'ACUUSDT',\n", " 'positionAmt': '0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '10',\n", " 'maxNotionalValue': '10000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'PAXGUSDT',\n", " 'positionAmt': '0.000',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '5',\n", " 'maxNotionalValue': '750000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'VELVETUSDT',\n", " 'positionAmt': '0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '3',\n", " 'maxNotionalValue': '500000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'SANDUSDT',\n", " 'positionAmt': '0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '20',\n", " 'maxNotionalValue': '100000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'LINKUSDT',\n", " 'positionAmt': '0.00',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '20',\n", " 'maxNotionalValue': '100000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'RIFUSDT',\n", " 'positionAmt': '0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '20',\n", " 'maxNotionalValue': '25000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'INUSDT',\n", " 'positionAmt': '0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '20',\n", " 'maxNotionalValue': '100000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'JASMYUSDT',\n", " 'positionAmt': '0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '20',\n", " 'maxNotionalValue': '100000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'BASUSDT',\n", " 'positionAmt': '0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '20',\n", " 'maxNotionalValue': '100000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'MELANIAUSDT',\n", " 'positionAmt': '0.00',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '5',\n", " 'maxNotionalValue': '250000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'YGGUSDT',\n", " 'positionAmt': '0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '20',\n", " 'maxNotionalValue': '25000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': '我踏马来了USDT',\n", " 'positionAmt': '0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '2',\n", " 'maxNotionalValue': '500000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'DAMUSDT',\n", " 'positionAmt': '0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '20',\n", " 'maxNotionalValue': '100000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'AVLUSDT',\n", " 'positionAmt': '0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '4',\n", " 'maxNotionalValue': '1000000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'NAORISUSDT',\n", " 'positionAmt': '0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '5',\n", " 'maxNotionalValue': '50000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'DYMUSDT',\n", " 'positionAmt': '0.0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '5',\n", " 'maxNotionalValue': '125000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'IMXUSDT',\n", " 'positionAmt': '0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '20',\n", " 'maxNotionalValue': '25000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'VETUSDT',\n", " 'positionAmt': '0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '20',\n", " 'maxNotionalValue': '5000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'NFPUSDT',\n", " 'positionAmt': '0.0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '20',\n", " 'maxNotionalValue': '25000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'UBUSDT',\n", " 'positionAmt': '0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '20',\n", " 'maxNotionalValue': '100000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'ONTUSDT',\n", " 'positionAmt': '0.0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '5',\n", " 'maxNotionalValue': '250000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': '1000CHEEMSUSDT',\n", " 'positionAmt': '0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '5',\n", " 'maxNotionalValue': '250000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'ARBUSDT',\n", " 'positionAmt': '0.0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '20',\n", " 'maxNotionalValue': '100000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': '老子USDT',\n", " 'positionAmt': '0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '2',\n", " 'maxNotionalValue': '80000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'GRTUSDT',\n", " 'positionAmt': '0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '20',\n", " 'maxNotionalValue': '25000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'WLFIUSDT',\n", " 'positionAmt': '0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.05870000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '25',\n", " 'maxNotionalValue': '1000000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 1777766514881},\n", " {'symbol': 'RIVERUSDT',\n", " 'positionAmt': '0.0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '5',\n", " 'maxNotionalValue': '100000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'AUCTIONUSDT',\n", " 'positionAmt': '0.00',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '5',\n", " 'maxNotionalValue': '250000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'SPYUSDT',\n", " 'positionAmt': '0.00',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '5',\n", " 'maxNotionalValue': '10000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'AMZNUSDT',\n", " 'positionAmt': '0.00',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '20',\n", " 'maxNotionalValue': '130000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'GENIUSUSDT',\n", " 'positionAmt': '0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '2',\n", " 'maxNotionalValue': '500000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'MASKUSDT',\n", " 'positionAmt': '0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '20',\n", " 'maxNotionalValue': '5000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'SKYUSDT',\n", " 'positionAmt': '0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '20',\n", " 'maxNotionalValue': '800000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'NBUSDT',\n", " 'positionAmt': '0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '4',\n", " 'maxNotionalValue': '1000000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'ZKUSDT',\n", " 'positionAmt': '0.0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '2',\n", " 'maxNotionalValue': '7500000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'ALCHUSDT',\n", " 'positionAmt': '0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '5',\n", " 'maxNotionalValue': '50000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'BBUSDT',\n", " 'positionAmt': '0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '3',\n", " 'maxNotionalValue': '500000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'BARDUSDT',\n", " 'positionAmt': '0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '20',\n", " 'maxNotionalValue': '100000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'COMMONUSDT',\n", " 'positionAmt': '0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '5',\n", " 'maxNotionalValue': '100000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'CYBERUSDT',\n", " 'positionAmt': '0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '20',\n", " 'maxNotionalValue': '25000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'ZENUSDT',\n", " 'positionAmt': '0.0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '5',\n", " 'maxNotionalValue': '3000000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'APRUSDT',\n", " 'positionAmt': '0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '5',\n", " 'maxNotionalValue': '100000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'NEARUSDT',\n", " 'positionAmt': '0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '20',\n", " 'maxNotionalValue': '10000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'ZAMAUSDT',\n", " 'positionAmt': '0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '5',\n", " 'maxNotionalValue': '50000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'KITEUSDT',\n", " 'positionAmt': '0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '5',\n", " 'maxNotionalValue': '125000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'COWUSDT',\n", " 'positionAmt': '0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '5',\n", " 'maxNotionalValue': '250000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'PDDUSDT',\n", " 'positionAmt': '0.00',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '2',\n", " 'maxNotionalValue': '80000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'SIGNUSDT',\n", " 'positionAmt': '0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '5',\n", " 'maxNotionalValue': '250000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'AAVEUSDT',\n", " 'positionAmt': '0.0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '10',\n", " 'maxNotionalValue': '3000000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'ICPUSDT',\n", " 'positionAmt': '0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '5',\n", " 'maxNotionalValue': '750000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'GRASSUSDT',\n", " 'positionAmt': '0.0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '5',\n", " 'maxNotionalValue': '250000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'WIFUSDT',\n", " 'positionAmt': '0.0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '20',\n", " 'maxNotionalValue': '30000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'PROSUSDT',\n", " 'positionAmt': '0.0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '2',\n", " 'maxNotionalValue': '80000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'BABAUSDT',\n", " 'positionAmt': '0.00',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '2',\n", " 'maxNotionalValue': '8000000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'MBLUSDT',\n", " 'positionAmt': '0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '20',\n", " 'maxNotionalValue': '25000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'CAKEUSDT',\n", " 'positionAmt': '0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '20',\n", " 'maxNotionalValue': '5000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'ROBOUSDT',\n", " 'positionAmt': '0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '5',\n", " 'maxNotionalValue': '50000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'BTCUSD1',\n", " 'positionAmt': '0.000',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '5',\n", " 'maxNotionalValue': '500000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'OPNUSDT',\n", " 'positionAmt': '0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '5',\n", " 'maxNotionalValue': '50000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': '0GUSDT',\n", " 'positionAmt': '0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '20',\n", " 'maxNotionalValue': '2000000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'ROSEUSDT',\n", " 'positionAmt': '0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '20',\n", " 'maxNotionalValue': '50000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'PEOPLEUSDT',\n", " 'positionAmt': '0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '20',\n", " 'maxNotionalValue': '25000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'MYXUSDT',\n", " 'positionAmt': '0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '10',\n", " 'maxNotionalValue': '10000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'CLOUSDT',\n", " 'positionAmt': '0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '5',\n", " 'maxNotionalValue': '100000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'PUNDIAIUSDT',\n", " 'positionAmt': '0.0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '2',\n", " 'maxNotionalValue': '80000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'TSMUSDT',\n", " 'positionAmt': '0.00',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '5',\n", " 'maxNotionalValue': '10000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'LAUSDT',\n", " 'positionAmt': '0.0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '5',\n", " 'maxNotionalValue': '250000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'DEGOUSDT',\n", " 'positionAmt': '0.0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '5',\n", " 'maxNotionalValue': '60000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'TNSRUSDT',\n", " 'positionAmt': '0.0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '5',\n", " 'maxNotionalValue': '100000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'BTCUSDT',\n", " 'positionAmt': '0.000',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '78659.35912065',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '150',\n", " 'maxNotionalValue': '300000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 1777829275331},\n", " {'symbol': '1000FLOKIUSDT',\n", " 'positionAmt': '0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '20',\n", " 'maxNotionalValue': '25000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'BASEDUSDT',\n", " 'positionAmt': '0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '5',\n", " 'maxNotionalValue': '125000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'FTMUSDT',\n", " 'positionAmt': '0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '20',\n", " 'maxNotionalValue': '5000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'HOODUSDT',\n", " 'positionAmt': '0.00',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '5',\n", " 'maxNotionalValue': '10000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'SPXUSDT',\n", " 'positionAmt': '0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '20',\n", " 'maxNotionalValue': '100000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'QUSDT',\n", " 'positionAmt': '0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '20',\n", " 'maxNotionalValue': '100000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'UAIUSDT',\n", " 'positionAmt': '0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '5',\n", " 'maxNotionalValue': '100000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'GUAUSDT',\n", " 'positionAmt': '0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '4',\n", " 'maxNotionalValue': '1000000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'WARDUSDT',\n", " 'positionAmt': '0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '2',\n", " 'maxNotionalValue': '80000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'HUSDT',\n", " 'positionAmt': '0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '5',\n", " 'maxNotionalValue': '100000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'WLDUSDT',\n", " 'positionAmt': '0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '20',\n", " 'maxNotionalValue': '1000000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'HOLOUSDT',\n", " 'positionAmt': '0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '20',\n", " 'maxNotionalValue': '100000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'ASTERUSDT',\n", " 'positionAmt': '0.00',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '75',\n", " 'maxNotionalValue': '20000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'AZTECUSDT',\n", " 'positionAmt': '0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '5',\n", " 'maxNotionalValue': '50000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'BLESSUSDT',\n", " 'positionAmt': '0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '20',\n", " 'maxNotionalValue': '100000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'DYDXUSDT',\n", " 'positionAmt': '0.0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '20',\n", " 'maxNotionalValue': '5000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\n", " {'symbol': 'DUSKUSDT',\n", " 'positionAmt': '0',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '20',\n", " 'maxNotionalValue': '10000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0}]" ] }, "execution_count": 11, "metadata": {}, "output_type": "execute_result" } ], "source": [ "j" ] }, { "cell_type": "code", "execution_count": null, "id": "f75ddbb7", "metadata": {}, "outputs": [], "source": [] }, { "cell_type": "code", "execution_count": 1, "id": "e845a43d", "metadata": {}, "outputs": [ { "data": { "text/plain": [ "False" ] }, "execution_count": 1, "metadata": {}, "output_type": "execute_result" } ], "source": [ "bool(0)" ] }, { "cell_type": "code", "execution_count": 34, "id": "43b3d4b5", "metadata": {}, "outputs": [], "source": [ "import pandas as pd\n", "df = pd.DataFrame(j)" ] }, { "cell_type": "code", "execution_count": 35, "id": "8d83fed3", "metadata": {}, "outputs": [], "source": [ "df['timestamp_dt'] = pd.to_datetime(df[0], unit='ms')" ] }, { "cell_type": "code", "execution_count": 36, "id": "f84a9233", "metadata": {}, "outputs": [ { "data": { "application/vnd.microsoft.datawrangler.viewer.v0+json": { "columns": [ { "name": "index", "rawType": "int64", "type": "integer" }, { "name": "0", "rawType": "int64", "type": "integer" }, { "name": "1", "rawType": "str", "type": "string" }, { "name": "2", "rawType": "str", "type": "string" }, { "name": "3", "rawType": "str", "type": "string" }, { "name": "4", "rawType": "str", "type": "string" }, { "name": "5", "rawType": "str", "type": "string" }, { "name": "6", "rawType": "int64", "type": "integer" }, { "name": "7", "rawType": "str", "type": "string" }, { "name": "8", "rawType": "int64", "type": "integer" }, { "name": "9", "rawType": "str", "type": "string" }, { "name": "10", "rawType": "str", "type": "string" }, { "name": "11", "rawType": "str", "type": "string" }, { "name": "timestamp_dt", "rawType": "datetime64[ms]", "type": "datetime" } ], "ref": "42a1079a-baaf-4fb5-914f-24d61e5df137", "rows": [ [ "1439", "1777827360000", "78655.2", "78655.2", "78655.2", "78655.2", "0.007", "1777827419999", "550.5864", "2", "0.005", "393.2760", "0", "2026-05-03 16:56:00" ], [ "1438", "1777827300000", "78659.5", "78659.6", "78659.5", "78659.5", "0.356", "1777827359999", "28002.8080", "35", "0.185", "14552.0254", "0", "2026-05-03 16:55:00" ], [ "1437", "1777827240000", "78664.7", "78664.7", "78658.5", "78659.5", "0.445", "1777827299999", "35004.6537", "35", "0.123", "9675.2159", "0", "2026-05-03 16:54:00" ], [ "1436", "1777827180000", "78658.6", "78669.5", "78658.6", "78664.7", "0.384", "1777827239999", "30208.1977", "38", "0.153", "12036.0195", "0", "2026-05-03 16:53:00" ], [ "1435", "1777827120000", "78669.2", "78673.0", "78658.6", "78658.6", "0.535", "1777827179999", "42087.5276", "34", "0.250", "19667.0352", "0", "2026-05-03 16:52:00" ], [ "1434", "1777827060000", "78679.9", "78686.9", "78669.2", "78669.2", "0.681", "1777827119999", "53581.0840", "35", "0.365", "28718.0563", "0", "2026-05-03 16:51:00" ], [ "1433", "1777827000000", "78665.4", "78692.8", "78665.4", "78679.9", "5.968", "1777827059999", "469622.2121", "41", "0.520", "40911.3741", "0", "2026-05-03 16:50:00" ], [ "1432", "1777826940000", "78670.2", "78670.2", "78665.4", "78665.4", "0.424", "1777826999999", "33355.3920", "31", "0.203", "15969.7338", "0", "2026-05-03 16:49:00" ], [ "1431", "1777826880000", "78698.1", "78698.1", "78670.2", "78670.2", "0.598", "1777826939999", "47048.7881", "33", "0.276", "21714.6928", "0", "2026-05-03 16:48:00" ], [ "1430", "1777826820000", "78682.8", "78698.1", "78682.7", "78698.1", "0.381", "1777826879999", "29982.2536", "35", "0.270", "21247.5953", "0", "2026-05-03 16:47:00" ], [ "1429", "1777826760000", "78682.7", "78682.8", "78682.7", "78682.8", "0.401", "1777826819999", "31551.7656", "35", "0.209", "16444.6868", "0", "2026-05-03 16:46:00" ], [ "1428", "1777826700000", "78689.1", "78689.1", "78682.7", "78682.7", "0.547", "1777826759999", "43041.8153", "36", "0.201", "15815.9459", "0", "2026-05-03 16:45:00" ], [ "1427", "1777826640000", "78675.0", "78689.2", "78675.0", "78689.1", "6.580", "1777826699999", "517741.8476", "53", "6.071", "477693.9699", "0", "2026-05-03 16:44:00" ], [ "1426", "1777826580000", "78677.5", "78688.2", "78674.7", "78675.0", "0.700", "1777826639999", "55076.6136", "37", "0.312", "24548.1927", "0", "2026-05-03 16:43:00" ], [ "1425", "1777826520000", "78682.4", "78698.6", "78677.5", "78677.5", "0.565", "1777826579999", "44459.7070", "34", "0.216", "16997.1015", "0", "2026-05-03 16:42:00" ], [ "1424", "1777826460000", "78675.6", "78680.5", "78675.6", "78680.5", "0.923", "1777826519999", "72618.6685", "38", "0.794", "62469.1823", "0", "2026-05-03 16:41:00" ], [ "1423", "1777826400000", "78687.4", "78687.4", "78675.6", "78675.6", "0.444", "1777826459999", "34933.4226", "35", "0.202", "15893.2144", "0", "2026-05-03 16:40:00" ], [ "1422", "1777826340000", "78665.4", "78703.5", "78665.4", "78687.4", "1.217", "1777826399999", "95767.3246", "40", "0.598", "47056.2822", "0", "2026-05-03 16:39:00" ], [ "1421", "1777826280000", "78691.6", "78691.6", "78665.4", "78665.4", "1.201", "1777826339999", "94500.2138", "40", "0.273", "21479.4071", "0", "2026-05-03 16:38:00" ], [ "1420", "1777826220000", "78695.6", "78701.4", "78691.6", "78691.6", "1.154", "1777826279999", "90816.8901", "44", "0.248", "19516.5367", "0", "2026-05-03 16:37:00" ], [ "1419", "1777826160000", "78704.1", "78706.7", "78695.6", "78695.6", "4.782", "1777826219999", "376369.7663", "45", "0.453", "35651.5124", "0", "2026-05-03 16:36:00" ], [ "1418", "1777826100000", "78697.1", "78740.0", "78697.1", "78704.1", "2.581", "1777826159999", "203148.2817", "61", "1.453", "114364.5799", "0", "2026-05-03 16:35:00" ], [ "1417", "1777826040000", "78665.1", "78697.1", "78659.6", "78697.1", "1.004", "1777826099999", "78985.8906", "56", "0.545", "42876.9708", "0", "2026-05-03 16:34:00" ], [ "1416", "1777825980000", "78656.0", "78665.1", "78656.0", "78665.1", "0.919", "1777826039999", "72289.1402", "47", "0.547", "43027.1362", "0", "2026-05-03 16:33:00" ], [ "1415", "1777825920000", "78638.0", "78665.2", "78638.0", "78656.0", "0.366", "1777825979999", "28785.1104", "40", "0.203", "15966.0459", "0", "2026-05-03 16:32:00" ], [ "1414", "1777825860000", "78631.9", "78638.0", "78628.5", "78638.0", "1.613", "1777825919999", "126840.8412", "44", "0.236", "18557.6650", "0", "2026-05-03 16:31:00" ], [ "1413", "1777825800000", "78622.2", "78649.4", "78622.2", "78632.0", "0.516", "1777825859999", "40575.5615", "47", "0.308", "24219.0358", "0", "2026-05-03 16:30:00" ], [ "1412", "1777825740000", "78618.0", "78622.2", "78618.0", "78622.2", "0.264", "1777825799999", "20755.7367", "32", "0.130", "10220.6181", "0", "2026-05-03 16:29:00" ], [ "1411", "1777825680000", "78618.0", "78618.0", "78618.0", "78618.0", "0.300", "1777825739999", "23585.4000", "31", "0.151", "11871.3180", "0", "2026-05-03 16:28:00" ], [ "1410", "1777825620000", "78616.1", "78623.5", "78616.1", "78618.1", "0.665", "1777825679999", "52281.5492", "35", "0.386", "30346.7973", "0", "2026-05-03 16:27:00" ], [ "1409", "1777825560000", "78622.9", "78622.9", "78616.1", "78616.1", "0.823", "1777825619999", "64705.8171", "35", "0.270", "21227.7818", "0", "2026-05-03 16:26:00" ], [ "1408", "1777825500000", "78617.7", "78627.7", "78617.7", "78622.9", "1.339", "1777825559999", "105274.4886", "40", "0.703", "55270.8475", "0", "2026-05-03 16:25:00" ], [ "1407", "1777825440000", "78608.2", "78617.7", "78601.9", "78617.7", "0.738", "1777825499999", "58011.2757", "34", "0.390", "30656.4921", "0", "2026-05-03 16:24:00" ], [ "1406", "1777825380000", "78586.0", "78608.2", "78586.0", "78608.2", "1.179", "1777825439999", "92661.6474", "36", "0.598", "46998.8807", "0", "2026-05-03 16:23:00" ], [ "1405", "1777825320000", "78567.3", "78587.6", "78567.3", "78586.0", "0.734", "1777825379999", "57675.4662", "35", "0.364", "28601.8867", "0", "2026-05-03 16:22:00" ], [ "1404", "1777825260000", "78559.1", "78567.3", "78559.1", "78567.3", "1.908", "1777825319999", "149899.4372", "34", "0.943", "74085.3411", "0", "2026-05-03 16:21:00" ], [ "1403", "1777825200000", "78583.6", "78583.6", "78556.3", "78559.1", "3.661", "1777825259999", "287602.4231", "44", "2.278", "178955.2267", "0", "2026-05-03 16:20:00" ], [ "1402", "1777825140000", "78608.2", "78608.2", "78583.2", "78583.6", "0.751", "1777825199999", "59024.3246", "35", "0.364", "28608.3924", "0", "2026-05-03 16:19:00" ], [ "1401", "1777825080000", "78608.1", "78608.2", "78608.1", "78608.2", "2.652", "1777825139999", "208468.7637", "33", "1.396", "109736.9495", "0", "2026-05-03 16:18:00" ], [ "1400", "1777825020000", "78570.4", "78608.1", "78570.4", "78608.1", "2.192", "1777825079999", "172278.2056", "44", "1.055", "82915.6782", "0", "2026-05-03 16:17:00" ], [ "1399", "1777824960000", "78571.4", "78571.4", "78570.4", "78570.4", "1.565", "1777825019999", "122963.7660", "30", "0.739", "58064.0196", "0", "2026-05-03 16:16:00" ], [ "1398", "1777824900000", "78584.1", "78584.1", "78571.4", "78571.4", "2.520", "1777824959999", "198004.9463", "39", "0.934", "73386.6212", "0", "2026-05-03 16:15:00" ], [ "1397", "1777824840000", "78584.1", "78584.1", "78584.1", "78584.1", "0.601", "1777824899999", "47229.0441", "34", "0.260", "20431.8660", "0", "2026-05-03 16:14:00" ], [ "1396", "1777824780000", "78584.1", "78584.1", "78584.1", "78584.1", "0.545", "1777824839999", "42828.3345", "30", "0.281", "22082.1321", "0", "2026-05-03 16:13:00" ], [ "1395", "1777824720000", "78586.2", "78586.2", "78584.1", "78584.1", "1.017", "1777824779999", "79921.3799", "33", "0.510", "40078.5840", "0", "2026-05-03 16:12:00" ], [ "1394", "1777824660000", "78586.1", "78586.2", "78586.1", "78586.2", "1.657", "1777824719999", "130217.2576", "31", "0.913", "71749.1576", "0", "2026-05-03 16:11:00" ], [ "1393", "1777824600000", "78592.2", "78592.2", "78570.5", "78586.1", "4.649", "1777824659999", "365325.0743", "41", "2.455", "192915.4123", "0", "2026-05-03 16:10:00" ], [ "1392", "1777824540000", "78579.2", "78592.2", "78574.4", "78592.2", "2.628", "1777824599999", "206518.4075", "43", "1.442", "113318.1486", "0", "2026-05-03 16:09:00" ], [ "1391", "1777824480000", "78593.9", "78593.9", "78579.1", "78579.2", "4.747", "1777824539999", "373028.5119", "47", "2.451", "192606.7265", "0", "2026-05-03 16:08:00" ], [ "1390", "1777824420000", "78618.7", "78618.8", "78590.4", "78590.4", "1.617", "1777824479999", "127104.3786", "39", "0.794", "62413.4009", "0", "2026-05-03 16:07:00" ] ], "shape": { "columns": 13, "rows": 1440 } }, "text/html": [ "
| \n", " | 0 | \n", "1 | \n", "2 | \n", "3 | \n", "4 | \n", "5 | \n", "6 | \n", "7 | \n", "8 | \n", "9 | \n", "10 | \n", "11 | \n", "timestamp_dt | \n", "
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 1439 | \n", "1777827360000 | \n", "78655.2 | \n", "78655.2 | \n", "78655.2 | \n", "78655.2 | \n", "0.007 | \n", "1777827419999 | \n", "550.5864 | \n", "2 | \n", "0.005 | \n", "393.2760 | \n", "0 | \n", "2026-05-03 16:56:00 | \n", "
| 1438 | \n", "1777827300000 | \n", "78659.5 | \n", "78659.6 | \n", "78659.5 | \n", "78659.5 | \n", "0.356 | \n", "1777827359999 | \n", "28002.8080 | \n", "35 | \n", "0.185 | \n", "14552.0254 | \n", "0 | \n", "2026-05-03 16:55:00 | \n", "
| 1437 | \n", "1777827240000 | \n", "78664.7 | \n", "78664.7 | \n", "78658.5 | \n", "78659.5 | \n", "0.445 | \n", "1777827299999 | \n", "35004.6537 | \n", "35 | \n", "0.123 | \n", "9675.2159 | \n", "0 | \n", "2026-05-03 16:54:00 | \n", "
| 1436 | \n", "1777827180000 | \n", "78658.6 | \n", "78669.5 | \n", "78658.6 | \n", "78664.7 | \n", "0.384 | \n", "1777827239999 | \n", "30208.1977 | \n", "38 | \n", "0.153 | \n", "12036.0195 | \n", "0 | \n", "2026-05-03 16:53:00 | \n", "
| 1435 | \n", "1777827120000 | \n", "78669.2 | \n", "78673.0 | \n", "78658.6 | \n", "78658.6 | \n", "0.535 | \n", "1777827179999 | \n", "42087.5276 | \n", "34 | \n", "0.250 | \n", "19667.0352 | \n", "0 | \n", "2026-05-03 16:52:00 | \n", "
| ... | \n", "... | \n", "... | \n", "... | \n", "... | \n", "... | \n", "... | \n", "... | \n", "... | \n", "... | \n", "... | \n", "... | \n", "... | \n", "... | \n", "
| 4 | \n", "1777741260000 | \n", "78413.3 | \n", "78413.3 | \n", "78411.3 | \n", "78411.3 | \n", "0.630 | \n", "1777741319999 | \n", "49399.3445 | \n", "37 | \n", "0.393 | \n", "30815.7824 | \n", "0 | \n", "2026-05-02 17:01:00 | \n", "
| 3 | \n", "1777741200000 | \n", "78422.9 | \n", "78423.0 | \n", "78413.3 | \n", "78413.3 | \n", "0.514 | \n", "1777741259999 | \n", "40308.5056 | \n", "54 | \n", "0.233 | \n", "18272.2217 | \n", "0 | \n", "2026-05-02 17:00:00 | \n", "
| 2 | \n", "1777741140000 | \n", "78422.9 | \n", "78422.9 | \n", "78422.9 | \n", "78422.9 | \n", "0.276 | \n", "1777741199999 | \n", "21644.7204 | \n", "30 | \n", "0.146 | \n", "11449.7434 | \n", "0 | \n", "2026-05-02 16:59:00 | \n", "
| 1 | \n", "1777741080000 | \n", "78424.0 | \n", "78424.0 | \n", "78422.9 | \n", "78422.9 | \n", "0.252 | \n", "1777741139999 | \n", "19762.7952 | \n", "29 | \n", "0.129 | \n", "10116.6718 | \n", "0 | \n", "2026-05-02 16:58:00 | \n", "
| 0 | \n", "1777741020000 | \n", "78433.9 | \n", "78433.9 | \n", "78424.0 | \n", "78424.0 | \n", "0.757 | \n", "1777741079999 | \n", "59372.6391 | \n", "37 | \n", "0.338 | \n", "26509.9252 | \n", "0 | \n", "2026-05-02 16:57:00 | \n", "
1440 rows × 13 columns
\n", "