diff --git a/aster.ipynb b/aster.ipynb index a01e580..afa1195 100644 --- a/aster.ipynb +++ b/aster.ipynb @@ -2,7 +2,7 @@ "cells": [ { "cell_type": "code", - "execution_count": null, + "execution_count": 10, "id": "3a269644", "metadata": {}, "outputs": [], @@ -12,7 +12,7 @@ }, { "cell_type": "code", - "execution_count": 27, + "execution_count": 13, "id": "4395fabb", "metadata": {}, "outputs": [], @@ -34,6 +34,21 @@ " \"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", @@ -58,16 +73,6726 @@ { "cell_type": "code", "execution_count": null, - "id": "2122885a", + "id": "ac4a7cfc", + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "code", + "execution_count": 44, + "id": "bfc3ebd4", "metadata": {}, "outputs": [ { "data": { "text/plain": [ - "{'orderId': 17341253499,\n", + "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': 'J1SvsvvDhlDAqwGau1T77F',\n", + " 'clientOrderId': 'TOcxh8MjrBvZ72rZyG2o7H',\n", " 'price': '2100',\n", " 'avgPrice': '0.00000',\n", " 'origQty': '0.010',\n", @@ -84,61 +6809,93 @@ " 'workingType': 'CONTRACT_PRICE',\n", " 'priceProtect': False,\n", " 'origType': 'LIMIT',\n", - " 'updateTime': 1776838867250,\n", - " 'newChainData': {'hash': '0xa2c23513491587b2961bfa77d2077489a14522d7ce359a9e3635e7c4f0d12a22'}}" + " 'updateTime': 1776961573900,\n", + " 'newChainData': {'hash': '0x3e200c78c969f33d0298795e1c1a5644bb71c351121c13d9a8e76e824e51cb6a'}}" ] }, - "execution_count": 28, + "execution_count": 21, "metadata": {}, "output_type": "execute_result" } ], "source": [ - "# j = aster_auth_api.post_authenticated_url(post_order)\n", - "# j" + "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": "45d68bf4", + "id": "f0538cde", "metadata": {}, - "outputs": [ - { - "data": { - "text/plain": [ - "1776836583531" - ] - }, - "execution_count": 15, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "from datetime import datetime\n", - "round(datetime.now().timestamp())" - ] + "outputs": [], + "source": [] }, { "cell_type": "code", - "execution_count": 16, + "execution_count": null, + "id": "ebded6ad", "metadata": {}, - "outputs": [ - { - "data": { - "text/plain": [ - "1800" - ] - }, - "execution_count": 16, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "30*60" - ] + "outputs": [], + "source": [] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [] }, { "cell_type": "code", diff --git a/main.py b/main.py index b2e8803..9ed8365 100644 --- a/main.py +++ b/main.py @@ -9,7 +9,7 @@ from dataclasses import asdict, dataclass from datetime import datetime, timezone from typing import AsyncContextManager from dotenv import load_dotenv - +from decimal import Decimal, ROUND_DOWN import numpy as np import pandas as pd import requests @@ -48,19 +48,27 @@ ASTER_MIN_ORDER_QTY = 0.001 EXTEND_MIN_ORDER_QTY = 0.01 ASTER_AVAIL_COLLATERAL = 0 -ASTER_NOTIONAL_POSITION = 0 EXTEND_AVAIL_COLLATERAL = 0 -EXTEND_NOTIONAL_POSITION = 0 -ASTER_OPEN_POSITIONS = [] -EXTEND_OPEN_POSITIONS = [] +ASTER_NOTIONAL_POSITION = 0 +EXTEND_NOTIONAL_POSITION = 0 ASTER_OPEN_ORDERS = [] EXTEND_OPEN_ORDERS = [] +# ASTER_OPEN_POSITIONS = [] +# EXTEND_OPEN_POSITIONS = [] + ### FLAGS ### LIQUIDATE_POS_AND_KILL_ALGO_FLAG: bool = False +NET_FUNDING_IS_ZERO: bool = False +### UTILS ### +def round_decimal_down(value, decimal_places): + # Construct precision string like '0.01' for 2 places + fmt = f'0.{"0" * decimal_places}' if decimal_places > 0 else '0' + precision = Decimal(fmt) + return Decimal(str(value)).quantize(precision, rounding=ROUND_DOWN) ### OPEN ORDERS ### async def get_aster_open_orders(): @@ -146,6 +154,11 @@ async def get_extend_exch_info(): EXTEND_MIN_ORDER_QTY = float(r['ETH-USD'].trading_config.min_order_size) +### CANCEL ORDERS ### +async def aster_cancel_all_orders(): + + + ### ROUTES ### async def aster_remainder_route(): # Check open orders...cancel replace or new order? @@ -186,7 +199,10 @@ async def run_algo(): ASTER_PAYOUT_DIRECTION_STR = 'LONG PAYS SHORT' if ASTER_FUND_RATE > 0 else 'SHORT PAYS LONG' EXTEND_PAYOUT_DIRECTION_STR = 'LONG PAYS SHORT' if EXTEND_FUND_RATE > 0 else 'SHORT PAYS LONG' - FUNDINGS_AT_SAME_TIME_NEXT_HR = ( (ASTER_FUND_RATE_TIME < 60*60*1000) and (EXTEND_FUND_RATE < 60*60*1000) ) + min_between_fundings = round((abs(ASTER_FUND_RATE_TIME - EXTEND_FUND_RATE_TIME) / 1000 / 60)) + FUNDINGS_AT_SAME_TIME_NEXT_HR = min_between_fundings < 5 + # FUNDINGS_AT_SAME_TIME_NEXT_HR = ( (ASTER_FUND_RATE_TIME < 60*60*1000) and (EXTEND_FUND_RATE < 60*60*1000) ) + if ( abs(ASTER_FUND_RATE) > abs(EXTEND_FUND_RATE) ) and FUNDINGS_AT_SAME_TIME_NEXT_HR: ALPHA_EXCH = 'ASTER' @@ -210,35 +226,52 @@ async def run_algo(): return EXTEND_FUND_RATE NEXT_NET_FUNDING_RATE = calc_next_net_fund_rate(FUNDINGS_AT_SAME_TIME_NEXT_HR) + NET_FUNDING_IS_ZERO = NEXT_NET_FUNDING_RATE == 0.00 if ALPHA_EXCH == 'EXTEND': ASTER_TGT_NOTIONAL = ALPHA_TGT_NOTIONAL*-1 EXTEND_TGT_NOTIONAL = ALPHA_TGT_NOTIONAL + if ALPHA_CARRY_SIDE == 'BUY': + ASTER_TOB_PX = float(ASTER_TICKER_DICT['best_ask_px']) + EXTEND_TOB_PX = float(EXTENDED_TICKER_DICT['best_bid_px']) + else: + ASTER_TOB_PX = float(ASTER_TICKER_DICT['best_bid_px']) + EXTEND_TOB_PX = float(EXTENDED_TICKER_DICT['best_ask_px']) else: ASTER_TGT_NOTIONAL = ALPHA_TGT_NOTIONAL EXTEND_TGT_NOTIONAL = ALPHA_TGT_NOTIONAL*-1 - + if ALPHA_CARRY_SIDE == 'BUY': + ASTER_TOB_PX = float(ASTER_TICKER_DICT['best_bid_px']) + EXTEND_TOB_PX = float(EXTENDED_TICKER_DICT['best_ask_px']) + else: + ASTER_TOB_PX = float(ASTER_TICKER_DICT['best_ask_px']) + EXTEND_TOB_PX = float(EXTENDED_TICKER_DICT['best_bid_px']) + + ASTER_TGT_TAIL = ASTER_TGT_NOTIONAL - ASTER_NOTIONAL_POSITION EXTEND_TGT_TAIL = EXTEND_TGT_NOTIONAL - EXTEND_NOTIONAL_POSITION - ASTER_TGT_TAIL_ORDERABLE = abs(ASTER_TGT_TAIL) >= ASTER_MIN_ORDER_QTY - EXTEND_TGT_TAIL_ORDERABLE = abs(EXTEND_TGT_TAIL) >= EXTEND_MIN_ORDER_QTY + ASTER_TGT_TAIL_BASE_QTY = Decimal(str(ASTER_TGT_TAIL / ASTER_TOB_PX)).quantize(Decimal(str(0.001)), rounding=ROUND_DOWN) + EXTEND_TGT_TAIL_BASE_QTY = Decimal(str(EXTEND_TGT_TAIL / EXTEND_TOB_PX)).quantize(Decimal(str(0.001)), rounding=ROUND_DOWN) + + ASTER_TGT_TAIL_ORDERABLE = abs(ASTER_TGT_TAIL_BASE_QTY) >= ASTER_MIN_ORDER_QTY + EXTEND_TGT_TAIL_ORDERABLE = abs(EXTEND_TGT_TAIL_BASE_QTY) >= EXTEND_MIN_ORDER_QTY print(f''' {pd.to_datetime(ASTER_FUND_RATE_TIME, unit='ms')} ({(pd.to_datetime(ASTER_FUND_RATE_TIME, unit='ms')-datetime.now()):}) | {pd.to_datetime(EXTEND_FUND_RATE_TIME, unit='ms')} ({(pd.to_datetime(EXTEND_FUND_RATE_TIME, unit='ms')-datetime.now()):}) - ASTER: {ASTER_FUND_RATE:.6%} [{ASTER_FUND_RATE*10_000:.2f}bps] [{ASTER_FUND_RATE*1_000_000:.0f}pips] | EXTEND: {EXTEND_FUND_RATE:.6%} [{EXTEND_FUND_RATE*10_000:.2f}bps] [{EXTEND_FUND_RATE*1_000_000:.0f}pips] + ASTER: {ASTER_FUND_RATE:.6%} [{ASTER_FUND_RATE*10_000:.2f}bps] [{ASTER_FUND_RATE*1_000_000:.0f}pips] | EXTEND: {EXTEND_FUND_RATE:.6%} [{EXTEND_FUND_RATE*10_000:.2f}bps] [{EXTEND_FUND_RATE*1_000_000:.0f}pips] ASTER: {ASTER_PAYOUT_DIRECTION_STR} | EXTEND: {EXTEND_PAYOUT_DIRECTION_STR} ASTER: [ Available Collateral: {ASTER_AVAIL_COLLATERAL:.4f} ] | EXTEND: [ Available Collateral: {EXTEND_AVAIL_COLLATERAL:.4f} ] ASTER: [ Notional Position $ : {ASTER_NOTIONAL_POSITION:.4f} ] | EXTEND: [ Notional Position $ : {EXTEND_NOTIONAL_POSITION:.4f} ] - SAME TIME? : {FUNDINGS_AT_SAME_TIME_NEXT_HR} - NET FUNDING : {NEXT_NET_FUNDING_RATE:.6%} [{NEXT_NET_FUNDING_RATE*10_000:.2f}bps] [{NEXT_NET_FUNDING_RATE*1_000_000:.0f}pips] + SAME TIME? : {FUNDINGS_AT_SAME_TIME_NEXT_HR} [ Minutes Between Fundings: {min_between_fundings} ] + NET FUNDING : {NEXT_NET_FUNDING_RATE:.6%} [{NEXT_NET_FUNDING_RATE*10_000:.2f}bps] [{NEXT_NET_FUNDING_RATE*1_000_000:.0f}pips]; Is Zero?: {NET_FUNDING_IS_ZERO} ALPHA SIDE : {ALPHA_EXCH} [{ALPHA_CARRY_SIDE}] TGT NOTIONAL: $ {MAX_TARGET_NOTIONAL} ASTER: {ASTER_NOTIONAL_POSITION:.4f} -> {ASTER_TGT_NOTIONAL:.2f} [ Remain: {ASTER_TGT_TAIL:.4f} ] | EXTEND: {EXTEND_NOTIONAL_POSITION:.4f} -> {EXTEND_TGT_NOTIONAL:.2f} [ Remain: {EXTEND_TGT_TAIL} ] - ASTER: {ASTER_TGT_TAIL:.4f} > {ASTER_MIN_ORDER_QTY:.4f} min [ Order: {ASTER_TGT_TAIL_ORDERABLE} ] | EXTEND: {EXTEND_TGT_TAIL:.4f} > {EXTEND_MIN_ORDER_QTY:.4f} min [ Order: {EXTEND_TGT_TAIL_ORDERABLE} ] + ASTER: {ASTER_TGT_TAIL_BASE_QTY:.4f} > {ASTER_MIN_ORDER_QTY:.4f} min [ Order: {ASTER_TGT_TAIL_ORDERABLE} ] | EXTEND: {EXTEND_TGT_TAIL_BASE_QTY:.4f} > {EXTEND_MIN_ORDER_QTY:.4f} min [ Order: {EXTEND_TGT_TAIL_ORDERABLE} ] ''') @@ -250,13 +283,19 @@ async def run_algo(): ### ROUTES ### - if ASTER_TGT_TAIL_ORDERABLE: - await aster_remainder_route() - - if EXTEND_TGT_TAIL_ORDERABLE: - await extend_remainder_route() + if NET_FUNDING_IS_ZERO: + logging.info('NET FUNDING = 0.00; Cancelling Open Order and Flattening Open Positions; Wait Until Non-Zero.') + ### ZERO NET FUNDING - CXL OPEN ORDERS, CLOSE POSITIONS, and WAIT + else: + if ASTER_TGT_TAIL_ORDERABLE: + await aster_remainder_route() + elif not(ASTER_TGT_TAIL_ORDERABLE) and ASTER_OPEN_ORDERS: + logging.info('ASTER HAS NO TAIL BUT OPEN ORDERS - CANCELLING OPEN ORDERS') + + pass + if EXTEND_TGT_TAIL_ORDERABLE: + await extend_remainder_route() - print(f'__________ End ___________ (Algo Engine ms: {(time.time() - loop_start)*1000})') time.sleep(5)