{ "cells": [ { "cell_type": "code", "execution_count": 10, "id": "3a269644", "metadata": {}, "outputs": [], "source": [ "import modules.aster_auth as aster_auth" ] }, { "cell_type": "code", "execution_count": 13, "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", "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", "}\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", "post_order = {\n", " \"url\": \"/fapi/v3/order\",\n", " \"method\": \"POST\",\n", " \"params\": {\n", " 'symbol': 'ETHUSDT',\n", " 'side': 'BUY',\n", " 'type': 'LIMIT',\n", " 'timeInForce': 'GTC',\n", " 'quantity': '0.01',\n", " 'price': '2100',\n", " }\n", "}" ] }, { "cell_type": "code", "execution_count": null, "id": "ac4a7cfc", "metadata": {}, "outputs": [], "source": [] }, { "cell_type": "code", "execution_count": 44, "id": "bfc3ebd4", "metadata": {}, "outputs": [ { "data": { "text/plain": [ "0.23809523809523808" ] }, "execution_count": 44, "metadata": {}, "output_type": "execute_result" } ], "source": [ "500 / 2100" ] }, { "cell_type": "code", "execution_count": 48, "id": "e73dccc8", "metadata": {}, "outputs": [ { "data": { "text/plain": [ "Decimal('0.238')" ] }, "execution_count": 48, "metadata": {}, "output_type": "execute_result" } ], "source": [ "from decimal import Decimal, ROUND_DOWN\n", "\n", "number = 500 / 2100\n", "rounded = Decimal(str(number)).quantize(Decimal('0.001'), rounding=ROUND_DOWN)\n", "rounded" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "1.667\n" ] } ], "source": [ "from decimal import Decimal, ROUND_HALF_UP\n", "\n", "def round_decimal(value, decimal_places):\n", " # Construct precision string like '0.01' for 2 places\n", " fmt = f'0.{\"0\" * decimal_places}' if decimal_places > 0 else '0'\n", " precision = Decimal(fmt)\n", " return Decimal(str(value)).quantize(precision, rounding=ROUND_HALF_UP)\n", "\n", "# Example: Round to 3 decimal places\n", "result = round_decimal(3500 / 2100, 3)\n", "result" ] }, { "cell_type": "code", "execution_count": null, "id": "8bd17c5f", "metadata": {}, "outputs": [], "source": [ "sign(1)" ] }, { "cell_type": "code", "execution_count": 24, "id": "2122885a", "metadata": {}, "outputs": [], "source": [ "j = aster_auth.post_authenticated_url(fut_acct_positionRisk)\n" ] }, { "cell_type": "code", "execution_count": 25, "id": "0533f5de", "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': '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': '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': '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': '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': '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': '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': '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': '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': 'HYPEUSDT',\n", " 'positionAmt': '0.00',\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': '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': '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': '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': '20',\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': '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': 'SOLUSDT',\n", " 'positionAmt': '0.00',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '20',\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': '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': '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': '2330.00000000',\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': 0},\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': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '20',\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': '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': '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': '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': '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': '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': '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': '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': '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': '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': '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': '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': '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': '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.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': 'ZORAUSDT',\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': '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': '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': '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': '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': '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': '20',\n", " 'maxNotionalValue': '4000000',\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': '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': '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': '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': '20',\n", " 'maxNotionalValue': '1600000',\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': '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': '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': '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': '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': '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': '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': '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': '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': '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': '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': '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': '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': '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.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': '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': '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': '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.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '4',\n", " 'maxNotionalValue': '10000000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\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': '20',\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': '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': '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': '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': '0.00000000',\n", " 'unRealizedProfit': '0.00000000',\n", " 'liquidationPrice': '0',\n", " 'leverage': '20',\n", " 'maxNotionalValue': '100000000',\n", " 'marginType': 'cross',\n", " 'isolatedMargin': '0.00000000',\n", " 'isAutoAddMargin': 'false',\n", " 'positionSide': 'BOTH',\n", " 'notional': '0',\n", " 'isolatedWallet': '0',\n", " 'updateTime': 0},\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': '4',\n", " 'maxNotionalValue': '10000000',\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": 25, "metadata": {}, "output_type": "execute_result" } ], "source": [ "j" ] }, { "cell_type": "code", "execution_count": 26, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "{'symbol': 'ETHUSDT',\n", " 'positionAmt': '0.000',\n", " 'entryPrice': '0.0',\n", " 'markPrice': '2330.00000000',\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': 0}" ] }, "execution_count": 26, "metadata": {}, "output_type": "execute_result" } ], "source": [ "[d for d in j if d.get('symbol', None) == 'ETHUSDT'][0]" ] }, { "cell_type": "code", "execution_count": 21, "id": "b0267d30", "metadata": {}, "outputs": [ { "data": { "text/plain": [ "{'orderId': 17348880018,\n", " 'symbol': 'ETHUSDT',\n", " 'status': 'NEW',\n", " 'clientOrderId': 'TOcxh8MjrBvZ72rZyG2o7H',\n", " 'price': '2100',\n", " 'avgPrice': '0.00000',\n", " 'origQty': '0.010',\n", " 'executedQty': '0',\n", " 'cumQty': '0',\n", " 'cumQuote': '0',\n", " 'timeInForce': 'GTC',\n", " 'type': 'LIMIT',\n", " 'reduceOnly': False,\n", " 'closePosition': False,\n", " 'side': 'BUY',\n", " 'positionSide': 'BOTH',\n", " 'stopPrice': '0',\n", " 'workingType': 'CONTRACT_PRICE',\n", " 'priceProtect': False,\n", " 'origType': 'LIMIT',\n", " 'updateTime': 1776961573900,\n", " 'newChainData': {'hash': '0x3e200c78c969f33d0298795e1c1a5644bb71c351121c13d9a8e76e824e51cb6a'}}" ] }, "execution_count": 21, "metadata": {}, "output_type": "execute_result" } ], "source": [ "j" ] }, { "cell_type": "code", "execution_count": 5, "id": "de8c8f9a", "metadata": {}, "outputs": [ { "data": { "text/plain": [ "{'orderId': 17348764932,\n", " 'symbol': 'ETHUSDT',\n", " 'status': 'NEW',\n", " 'clientOrderId': 'Q52AOoKEgQPGFNMZcRGNv8',\n", " 'price': '2100',\n", " 'avgPrice': '0.00000',\n", " 'origQty': '0.010',\n", " 'executedQty': '0',\n", " 'cumQty': '0',\n", " 'cumQuote': '0',\n", " 'timeInForce': 'GTC',\n", " 'type': 'LIMIT',\n", " 'reduceOnly': False,\n", " 'closePosition': False,\n", " 'side': 'BUY',\n", " 'positionSide': 'BOTH',\n", " 'stopPrice': '0',\n", " 'workingType': 'CONTRACT_PRICE',\n", " 'priceProtect': False,\n", " 'origType': 'LIMIT',\n", " 'updateTime': 1776959763150,\n", " 'newChainData': {'hash': '0xb74c256af39e08e2a5582845d47c8daf010736c604e2a24da03d05a1b8275da7'}}" ] }, "execution_count": 5, "metadata": {}, "output_type": "execute_result" } ], "source": [ "j" ] }, { "cell_type": "code", "execution_count": 6, "id": "8d5aecd8", "metadata": {}, "outputs": [], "source": [ "order_resp_aster = j" ] }, { "cell_type": "code", "execution_count": null, "id": "f0538cde", "metadata": {}, "outputs": [], "source": [] }, { "cell_type": "code", "execution_count": null, "id": "ebded6ad", "metadata": {}, "outputs": [], "source": [] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [] }, { "cell_type": "code", "execution_count": null, "id": "67a3bbb2", "metadata": {}, "outputs": [], "source": [] }, { "cell_type": "code", "execution_count": 23, "id": "e958e7da", "metadata": {}, "outputs": [], "source": [ "import json\n", "\n", "### User Data Stream ###\n", "# After posting limit order to rest\n", "after_order_post = json.loads('{\"e\":\"ORDER_TRADE_UPDATE\",\"T\":1776836992350,\"E\":1776836992388,\"o\":{\"s\":\"ETHUSDT\",\"c\":\"KFi375tZh5kzHsQJWKMJHe\",\"S\":\"BUY\",\"o\":\"LIMIT\",\"f\":\"GTC\",\"q\":\"0.010\",\"p\":\"2100\",\"ap\":\"0\",\"sp\":\"0\",\"x\":\"NEW\",\"X\":\"NEW\",\"i\":17341121450,\"l\":\"0\",\"z\":\"0\",\"L\":\"0\",\"T\":1776836992350,\"t\":0,\"b\":\"21\",\"a\":\"0\",\"m\":false,\"R\":false,\"wt\":\"CONTRACT_PRICE\",\"ot\":\"LIMIT\",\"ps\":\"BOTH\",\"cp\":false,\"rp\":\"0\",\"pP\":false,\"si\":0,\"ss\":0,\"h\":\"0xeec41a368072d5a47c13b3ad83703eded2e2b8cf9ff427095beb8b7684968db0\"}}')\n", "\n", "# After order cancellation in GUI\n", "after_order_cxl = json.loads('{\"e\":\"ORDER_TRADE_UPDATE\",\"T\":1776836998500,\"E\":1776836998533,\"o\":{\"s\":\"ETHUSDT\",\"c\":\"KFi375tZh5kzHsQJWKMJHe\",\"S\":\"BUY\",\"o\":\"LIMIT\",\"f\":\"GTC\",\"q\":\"0.010\",\"p\":\"2100\",\"ap\":\"0\",\"sp\":\"0\",\"x\":\"CANCELED\",\"X\":\"CANCELED\",\"i\":17341121450,\"l\":\"0\",\"z\":\"0\",\"L\":\"0\",\"T\":1776836998500,\"t\":0,\"b\":\"0\",\"a\":\"0\",\"m\":false,\"R\":false,\"wt\":\"CONTRACT_PRICE\",\"ot\":\"LIMIT\",\"ps\":\"BOTH\",\"cp\":false,\"rp\":\"0\",\"pP\":false,\"si\":0,\"ss\":0,\"h\":\"0x116bb48a4b41420aebbc76343d6f55f22d1ccbc36b04462e6172571fda836599\"}}')\n", "\n" ] }, { "cell_type": "code", "execution_count": 24, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "{'e': 'ORDER_TRADE_UPDATE',\n", " 'T': 1776836992350,\n", " 'E': 1776836992388,\n", " 'o': {'s': 'ETHUSDT',\n", " 'c': 'KFi375tZh5kzHsQJWKMJHe',\n", " 'S': 'BUY',\n", " 'o': 'LIMIT',\n", " 'f': 'GTC',\n", " 'q': '0.010',\n", " 'p': '2100',\n", " 'ap': '0',\n", " 'sp': '0',\n", " 'x': 'NEW',\n", " 'X': 'NEW',\n", " 'i': 17341121450,\n", " 'l': '0',\n", " 'z': '0',\n", " 'L': '0',\n", " 'T': 1776836992350,\n", " 't': 0,\n", " 'b': '21',\n", " 'a': '0',\n", " 'm': False,\n", " 'R': False,\n", " 'wt': 'CONTRACT_PRICE',\n", " 'ot': 'LIMIT',\n", " 'ps': 'BOTH',\n", " 'cp': False,\n", " 'rp': '0',\n", " 'pP': False,\n", " 'si': 0,\n", " 'ss': 0,\n", " 'h': '0xeec41a368072d5a47c13b3ad83703eded2e2b8cf9ff427095beb8b7684968db0'}}" ] }, "execution_count": 24, "metadata": {}, "output_type": "execute_result" } ], "source": [ "after_order_post" ] }, { "cell_type": "code", "execution_count": 25, "id": "1ea320f2", "metadata": {}, "outputs": [ { "data": { "text/plain": [ "{'e': 'ORDER_TRADE_UPDATE',\n", " 'T': 1776836998500,\n", " 'E': 1776836998533,\n", " 'o': {'s': 'ETHUSDT',\n", " 'c': 'KFi375tZh5kzHsQJWKMJHe',\n", " 'S': 'BUY',\n", " 'o': 'LIMIT',\n", " 'f': 'GTC',\n", " 'q': '0.010',\n", " 'p': '2100',\n", " 'ap': '0',\n", " 'sp': '0',\n", " 'x': 'CANCELED',\n", " 'X': 'CANCELED',\n", " 'i': 17341121450,\n", " 'l': '0',\n", " 'z': '0',\n", " 'L': '0',\n", " 'T': 1776836998500,\n", " 't': 0,\n", " 'b': '0',\n", " 'a': '0',\n", " 'm': False,\n", " 'R': False,\n", " 'wt': 'CONTRACT_PRICE',\n", " 'ot': 'LIMIT',\n", " 'ps': 'BOTH',\n", " 'cp': False,\n", " 'rp': '0',\n", " 'pP': False,\n", " 'si': 0,\n", " 'ss': 0,\n", " 'h': '0x116bb48a4b41420aebbc76343d6f55f22d1ccbc36b04462e6172571fda836599'}}" ] }, "execution_count": 25, "metadata": {}, "output_type": "execute_result" } ], "source": [ "after_order_cxl" ] }, { "cell_type": "code", "execution_count": 26, "id": "07ef4360", "metadata": {}, "outputs": [ { "data": { "text/plain": [ "Timestamp('2019-09-19 07:51:05.651000')" ] }, "execution_count": 26, "metadata": {}, "output_type": "execute_result" } ], "source": [ "import pandas as pd\n", "\n", "pd.to_datetime(1568879465651, unit='ms')" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [] }, { "cell_type": "code", "execution_count": null, "id": "284b7266", "metadata": {}, "outputs": [], "source": [] }, { "cell_type": "code", "execution_count": null, "id": "98ed3a27", "metadata": {}, "outputs": [], "source": [] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [] }, { "cell_type": "code", "execution_count": null, "id": "940ceba7", "metadata": {}, "outputs": [], "source": [] } ], "metadata": { "kernelspec": { "display_name": "py_313", "language": "python", "name": "python3" }, "language_info": { "codemirror_mode": { "name": "ipython", "version": 3 }, "file_extension": ".py", "mimetype": "text/x-python", "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", "version": "3.13.12" } }, "nbformat": 4, "nbformat_minor": 5 }