7389 lines
272 KiB
Plaintext
7389 lines
272 KiB
Plaintext
{
|
|
"cells": [
|
|
{
|
|
"cell_type": "code",
|
|
"execution_count": 14,
|
|
"id": "3a269644",
|
|
"metadata": {},
|
|
"outputs": [],
|
|
"source": [
|
|
"import modules.aster_auth as aster_auth"
|
|
]
|
|
},
|
|
{
|
|
"cell_type": "code",
|
|
"execution_count": null,
|
|
"id": "4395fabb",
|
|
"metadata": {},
|
|
"outputs": [],
|
|
"source": [
|
|
"listen_key_request = {\n",
|
|
" \"url\": \"/fapi/v3/listenKey\",\n",
|
|
" \"method\": \"POST\",\n",
|
|
" \"params\": {}\n",
|
|
"}\n",
|
|
"cancel_all_open_orders = {\n",
|
|
" \"url\": \"/fapi/v3/allOpenOrders\",\n",
|
|
" \"method\": \"DELETE\",\n",
|
|
" \"params\": {\n",
|
|
" 'symbol': 'ETHUSDT',\n",
|
|
" }\n",
|
|
"}\n",
|
|
"cancel_order = {\n",
|
|
" \"url\": \"/fapi/v3/order\",\n",
|
|
" \"method\": \"DELETE\",\n",
|
|
" \"params\": {\n",
|
|
" 'symbol': 'ETHUSDT',\n",
|
|
" 'orderId': 17349955824,\n",
|
|
" }\n",
|
|
"}\n",
|
|
"fut_acct_balances = {\n",
|
|
" \"url\": \"/fapi/v3/balance\",\n",
|
|
" \"method\": \"GET\",\n",
|
|
" \"params\": {}\n",
|
|
"}\n",
|
|
"fut_acct_openOrders = {\n",
|
|
" \"url\": \"/fapi/v3/openOrders\",\n",
|
|
" \"method\": \"GET\",\n",
|
|
" \"params\": {}\n",
|
|
"}\n",
|
|
"fut_acct_positionRisk = {\n",
|
|
" \"url\": \"/fapi/v3/positionRisk\",\n",
|
|
" \"method\": \"GET\",\n",
|
|
" \"params\": {\n",
|
|
" 'symbol': 'BNBUSDT',\n",
|
|
" }\n",
|
|
"}\n",
|
|
"fut_acct_exchangeInfo = {\n",
|
|
" \"url\": \"/fapi/v3/exchangeInfo\",\n",
|
|
" \"method\": \"GET\",\n",
|
|
" \"params\": {}\n",
|
|
"}\n",
|
|
"commission_rate = {\n",
|
|
" \"url\": \"/fapi/v3/commissionRate\",\n",
|
|
" \"method\": \"GET\",\n",
|
|
" \"params\": {\n",
|
|
" 'symbol': 'ETHUSDT',\n",
|
|
" }\n",
|
|
"}\n",
|
|
"post_order = {\n",
|
|
" \"url\": \"/fapi/v3/order\",\n",
|
|
" \"method\": \"POST\",\n",
|
|
" \"params\": {\n",
|
|
" 'symbol': 'BNBUSDT',\n",
|
|
" 'side': 'SELL',\n",
|
|
" 'type': 'LIMIT',\n",
|
|
" 'timeInForce': 'GTX',\n",
|
|
" 'quantity': '0.01',\n",
|
|
" 'price': '620.1',\n",
|
|
" 'reduce_only': True,\n",
|
|
" }\n",
|
|
"}"
|
|
]
|
|
},
|
|
{
|
|
"cell_type": "code",
|
|
"execution_count": 20,
|
|
"id": "2122885a",
|
|
"metadata": {},
|
|
"outputs": [],
|
|
"source": [
|
|
"j = await aster_auth.post_authenticated_url(fut_acct_positionRisk)\n"
|
|
]
|
|
},
|
|
{
|
|
"cell_type": "code",
|
|
"execution_count": 33,
|
|
"id": "dc8177c4",
|
|
"metadata": {},
|
|
"outputs": [],
|
|
"source": [
|
|
"from decimal import Decimal, ROUND_UP, ROUND_DOWN\n",
|
|
"ld = [x['symbol'] for x in j if abs(float(x.get('positionAmt', 0))) > 0]"
|
|
]
|
|
},
|
|
{
|
|
"cell_type": "code",
|
|
"execution_count": null,
|
|
"id": "6bd3758b",
|
|
"metadata": {},
|
|
"outputs": [],
|
|
"source": [
|
|
"6.19869632/620.29"
|
|
]
|
|
},
|
|
{
|
|
"cell_type": "code",
|
|
"execution_count": 34,
|
|
"id": "2f7018a6",
|
|
"metadata": {},
|
|
"outputs": [
|
|
{
|
|
"data": {
|
|
"text/plain": [
|
|
"Decimal('0.00')"
|
|
]
|
|
},
|
|
"execution_count": 34,
|
|
"metadata": {},
|
|
"output_type": "execute_result"
|
|
}
|
|
],
|
|
"source": [
|
|
"Decimal(str(float(6.19869632) / float(620.29))).quantize(Decimal(str(0.01)), rounding=ROUND_DOWN)"
|
|
]
|
|
},
|
|
{
|
|
"cell_type": "code",
|
|
"execution_count": null,
|
|
"id": "69078ee1",
|
|
"metadata": {},
|
|
"outputs": [
|
|
{
|
|
"data": {
|
|
"text/plain": [
|
|
"['BNBUSDT']"
|
|
]
|
|
},
|
|
"execution_count": 30,
|
|
"metadata": {},
|
|
"output_type": "execute_result"
|
|
}
|
|
],
|
|
"source": [
|
|
"ld"
|
|
]
|
|
},
|
|
{
|
|
"cell_type": "code",
|
|
"execution_count": 21,
|
|
"id": "4712d883",
|
|
"metadata": {},
|
|
"outputs": [
|
|
{
|
|
"data": {
|
|
"text/plain": [
|
|
"[{'symbol': 'TRUTHUSDT',\n",
|
|
" 'positionAmt': '0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '5',\n",
|
|
" 'maxNotionalValue': '100000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'SBETUSDT',\n",
|
|
" 'positionAmt': '0.00',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '20',\n",
|
|
" 'maxNotionalValue': '130000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'BANKUSDT',\n",
|
|
" 'positionAmt': '0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '5',\n",
|
|
" 'maxNotionalValue': '100000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'EVAAUSDT',\n",
|
|
" 'positionAmt': '0.0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '5',\n",
|
|
" 'maxNotionalValue': '100000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'XAIUSDT',\n",
|
|
" 'positionAmt': '0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '5',\n",
|
|
" 'maxNotionalValue': '125000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'TSLAUSDT',\n",
|
|
" 'positionAmt': '0.00',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '20',\n",
|
|
" 'maxNotionalValue': '130000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'MONUSDT',\n",
|
|
" 'positionAmt': '0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '5',\n",
|
|
" 'maxNotionalValue': '100000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'PNUTUSDT',\n",
|
|
" 'positionAmt': '0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '20',\n",
|
|
" 'maxNotionalValue': '50000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'PENDLEUSDT',\n",
|
|
" 'positionAmt': '0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '20',\n",
|
|
" 'maxNotionalValue': '100000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'DEXEUSDT',\n",
|
|
" 'positionAmt': '0.00',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '5',\n",
|
|
" 'maxNotionalValue': '250000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'RVVUSDT',\n",
|
|
" 'positionAmt': '0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '5',\n",
|
|
" 'maxNotionalValue': '100000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'AWEUSDT',\n",
|
|
" 'positionAmt': '0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '5',\n",
|
|
" 'maxNotionalValue': '50000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'JANITORUSDT',\n",
|
|
" 'positionAmt': '0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '20',\n",
|
|
" 'maxNotionalValue': '1000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'SHELLUSDT',\n",
|
|
" 'positionAmt': '0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '20',\n",
|
|
" 'maxNotionalValue': '10000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'NIGHTUSDT',\n",
|
|
" 'positionAmt': '0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '5',\n",
|
|
" 'maxNotionalValue': '100000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'WHITEWHALEUSDT',\n",
|
|
" 'positionAmt': '0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '2',\n",
|
|
" 'maxNotionalValue': '80000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'CHIPUSDT',\n",
|
|
" 'positionAmt': '0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '50',\n",
|
|
" 'maxNotionalValue': '5000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': '1000BONKUSDT',\n",
|
|
" 'positionAmt': '0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '20',\n",
|
|
" 'maxNotionalValue': '1000000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'ESPUSDT',\n",
|
|
" 'positionAmt': '0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '5',\n",
|
|
" 'maxNotionalValue': '50000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'GRIFFAINUSDT',\n",
|
|
" 'positionAmt': '0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '5',\n",
|
|
" 'maxNotionalValue': '50000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'TRXUSDT',\n",
|
|
" 'positionAmt': '0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '20',\n",
|
|
" 'maxNotionalValue': '5000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'MORPHOUSDT',\n",
|
|
" 'positionAmt': '0.0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '3',\n",
|
|
" 'maxNotionalValue': '1000000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'FHEUSDT',\n",
|
|
" 'positionAmt': '0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '10',\n",
|
|
" 'maxNotionalValue': '10000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'CHILLGUYUSDT',\n",
|
|
" 'positionAmt': '0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '5',\n",
|
|
" 'maxNotionalValue': '60000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'BROCCOLI714USDT',\n",
|
|
" 'positionAmt': '0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '20',\n",
|
|
" 'maxNotionalValue': '10000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': '龙虾USDT',\n",
|
|
" 'positionAmt': '0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '2',\n",
|
|
" 'maxNotionalValue': '80000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'SAPIENUSDT',\n",
|
|
" 'positionAmt': '0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '20',\n",
|
|
" 'maxNotionalValue': '100000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'SOMIUSDT',\n",
|
|
" 'positionAmt': '0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '20',\n",
|
|
" 'maxNotionalValue': '50000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'EULUSDT',\n",
|
|
" 'positionAmt': '0.0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '5',\n",
|
|
" 'maxNotionalValue': '250000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'BREVUSDT',\n",
|
|
" 'positionAmt': '0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '5',\n",
|
|
" 'maxNotionalValue': '125000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'POLUSDT',\n",
|
|
" 'positionAmt': '0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '20',\n",
|
|
" 'maxNotionalValue': '200000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'OKBUSDT',\n",
|
|
" 'positionAmt': '0.0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '20',\n",
|
|
" 'maxNotionalValue': '5000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'UMAUSDT',\n",
|
|
" 'positionAmt': '0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '5',\n",
|
|
" 'maxNotionalValue': '125000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'APEUSDT',\n",
|
|
" 'positionAmt': '0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '20',\n",
|
|
" 'maxNotionalValue': '5000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'AIOTUSDT',\n",
|
|
" 'positionAmt': '0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '5',\n",
|
|
" 'maxNotionalValue': '60000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'SKLUSDT',\n",
|
|
" 'positionAmt': '0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '20',\n",
|
|
" 'maxNotionalValue': '25000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'B2USDT',\n",
|
|
" 'positionAmt': '0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '5',\n",
|
|
" 'maxNotionalValue': '100000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'ZEREBROUSDT',\n",
|
|
" 'positionAmt': '0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '5',\n",
|
|
" 'maxNotionalValue': '60000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'OPENUSDT',\n",
|
|
" 'positionAmt': '0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '20',\n",
|
|
" 'maxNotionalValue': '100000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'RECALLUSDT',\n",
|
|
" 'positionAmt': '0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '5',\n",
|
|
" 'maxNotionalValue': '100000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'SKYAIUSDT',\n",
|
|
" 'positionAmt': '0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '5',\n",
|
|
" 'maxNotionalValue': '100000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'MTLUSDT',\n",
|
|
" 'positionAmt': '0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '20',\n",
|
|
" 'maxNotionalValue': '25000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'VIRTUALUSDT',\n",
|
|
" 'positionAmt': '0.0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '20',\n",
|
|
" 'maxNotionalValue': '100000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'PROMUSDT',\n",
|
|
" 'positionAmt': '0.0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '5',\n",
|
|
" 'maxNotionalValue': '125000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'AFEEUSDT',\n",
|
|
" 'positionAmt': '0.0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '2',\n",
|
|
" 'maxNotionalValue': '2500',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'GUSDT',\n",
|
|
" 'positionAmt': '0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '5',\n",
|
|
" 'maxNotionalValue': '50000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'HUMAUSDT',\n",
|
|
" 'positionAmt': '0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '3',\n",
|
|
" 'maxNotionalValue': '500000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'MANAUSDT',\n",
|
|
" 'positionAmt': '0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '20',\n",
|
|
" 'maxNotionalValue': '5000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'TRBUSDT',\n",
|
|
" 'positionAmt': '0.0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '20',\n",
|
|
" 'maxNotionalValue': '25000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'MANTRAUSDT',\n",
|
|
" 'positionAmt': '0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '5',\n",
|
|
" 'maxNotionalValue': '125000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'IPUSDT',\n",
|
|
" 'positionAmt': '0.0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '20',\n",
|
|
" 'maxNotionalValue': '2000000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'ONDOUSDT',\n",
|
|
" 'positionAmt': '0.0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '20',\n",
|
|
" 'maxNotionalValue': '60000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': '2ZUSDT',\n",
|
|
" 'positionAmt': '0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '5',\n",
|
|
" 'maxNotionalValue': '125000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'PTBUSDT',\n",
|
|
" 'positionAmt': '0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '20',\n",
|
|
" 'maxNotionalValue': '100000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'PIPPINUSDT',\n",
|
|
" 'positionAmt': '0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '5',\n",
|
|
" 'maxNotionalValue': '100000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'FORMUSDT',\n",
|
|
" 'positionAmt': '0.0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '5',\n",
|
|
" 'maxNotionalValue': '125000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'KOMAUSDT',\n",
|
|
" 'positionAmt': '0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '5',\n",
|
|
" 'maxNotionalValue': '50000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'HANAUSDT',\n",
|
|
" 'positionAmt': '0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '10',\n",
|
|
" 'maxNotionalValue': '10000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': '42USDT',\n",
|
|
" 'positionAmt': '0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '5',\n",
|
|
" 'maxNotionalValue': '100000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'INTCUSDT',\n",
|
|
" 'positionAmt': '0.00',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '5',\n",
|
|
" 'maxNotionalValue': '10000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'TAUSDT',\n",
|
|
" 'positionAmt': '0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '3',\n",
|
|
" 'maxNotionalValue': '250000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'ENJUSDT',\n",
|
|
" 'positionAmt': '0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '5',\n",
|
|
" 'maxNotionalValue': '125000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'OPGUSDT',\n",
|
|
" 'positionAmt': '0.0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '2',\n",
|
|
" 'maxNotionalValue': '500000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'TRADOORUSDT',\n",
|
|
" 'positionAmt': '0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '20',\n",
|
|
" 'maxNotionalValue': '100000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'ENSUSDT',\n",
|
|
" 'positionAmt': '0.0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '20',\n",
|
|
" 'maxNotionalValue': '100000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'ASTEROIDUSDT',\n",
|
|
" 'positionAmt': '0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '2',\n",
|
|
" 'maxNotionalValue': '200000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'CRCLUSDT',\n",
|
|
" 'positionAmt': '0.00',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '5',\n",
|
|
" 'maxNotionalValue': '10000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'ZECUSDT',\n",
|
|
" 'positionAmt': '0.000',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '75',\n",
|
|
" 'maxNotionalValue': '6250',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'HYPEUSDT',\n",
|
|
" 'positionAmt': '0.00',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '300',\n",
|
|
" 'maxNotionalValue': '1000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'SYRUPUSDT',\n",
|
|
" 'positionAmt': '0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '3',\n",
|
|
" 'maxNotionalValue': '500000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'GALAUSDT',\n",
|
|
" 'positionAmt': '0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '20',\n",
|
|
" 'maxNotionalValue': '5000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'TAGUSDT',\n",
|
|
" 'positionAmt': '0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '20',\n",
|
|
" 'maxNotionalValue': '100000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'MANTAUSDT',\n",
|
|
" 'positionAmt': '0.0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '20',\n",
|
|
" 'maxNotionalValue': '25000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'LISTAUSDT',\n",
|
|
" 'positionAmt': '0.0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '2',\n",
|
|
" 'maxNotionalValue': '6000000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'METUSDT',\n",
|
|
" 'positionAmt': '0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '5',\n",
|
|
" 'maxNotionalValue': '250000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'RLSUSDT',\n",
|
|
" 'positionAmt': '0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '5',\n",
|
|
" 'maxNotionalValue': '100000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'MEMESUSDT',\n",
|
|
" 'positionAmt': '0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '2',\n",
|
|
" 'maxNotionalValue': '80000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'PUMPBTCUSDT',\n",
|
|
" 'positionAmt': '0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '5',\n",
|
|
" 'maxNotionalValue': '50000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'AAPLUSDT',\n",
|
|
" 'positionAmt': '0.00',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '10',\n",
|
|
" 'maxNotionalValue': '130000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'LRCUSDT',\n",
|
|
" 'positionAmt': '0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '20',\n",
|
|
" 'maxNotionalValue': '10000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': '雪球USDT',\n",
|
|
" 'positionAmt': '0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '2',\n",
|
|
" 'maxNotionalValue': '80000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'STGUSDT',\n",
|
|
" 'positionAmt': '0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '20',\n",
|
|
" 'maxNotionalValue': '25000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'STXUSDT',\n",
|
|
" 'positionAmt': '0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '20',\n",
|
|
" 'maxNotionalValue': '100000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'GIGGLEUSDT',\n",
|
|
" 'positionAmt': '0.00',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '2',\n",
|
|
" 'maxNotionalValue': '7500000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'AIUSDT',\n",
|
|
" 'positionAmt': '0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '20',\n",
|
|
" 'maxNotionalValue': '25000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'STOUSDT',\n",
|
|
" 'positionAmt': '0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '5',\n",
|
|
" 'maxNotionalValue': '50000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': '1000WOJAKUSDT',\n",
|
|
" 'positionAmt': '0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '2',\n",
|
|
" 'maxNotionalValue': '80000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'SENTISUSDT',\n",
|
|
" 'positionAmt': '0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '4',\n",
|
|
" 'maxNotionalValue': '1000000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'IOUSDT',\n",
|
|
" 'positionAmt': '0.0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '2',\n",
|
|
" 'maxNotionalValue': '2000000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'TAOUSDT',\n",
|
|
" 'positionAmt': '0.0000',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '20',\n",
|
|
" 'maxNotionalValue': '1000000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'TURTLEUSDT',\n",
|
|
" 'positionAmt': '0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '5',\n",
|
|
" 'maxNotionalValue': '125000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'ARUSDT',\n",
|
|
" 'positionAmt': '0.0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '5',\n",
|
|
" 'maxNotionalValue': '250000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'FILUSDT',\n",
|
|
" 'positionAmt': '0.0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '20',\n",
|
|
" 'maxNotionalValue': '1000000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'TRUMPUSDT',\n",
|
|
" 'positionAmt': '0.00',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '10',\n",
|
|
" 'maxNotionalValue': '60000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'PUMPUSDT',\n",
|
|
" 'positionAmt': '0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '2',\n",
|
|
" 'maxNotionalValue': '3000000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'BLENDUSDT',\n",
|
|
" 'positionAmt': '0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '2',\n",
|
|
" 'maxNotionalValue': '80000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'SOLUSDT',\n",
|
|
" 'positionAmt': '0.00',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '100',\n",
|
|
" 'maxNotionalValue': '50000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'AXLUSDT',\n",
|
|
" 'positionAmt': '0.0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '20',\n",
|
|
" 'maxNotionalValue': '50000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'LOOMUSDT',\n",
|
|
" 'positionAmt': '0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '20',\n",
|
|
" 'maxNotionalValue': '25000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'RONINUSDT',\n",
|
|
" 'positionAmt': '0.0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '5',\n",
|
|
" 'maxNotionalValue': '250000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': '1000SATSUSDT',\n",
|
|
" 'positionAmt': '0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '5',\n",
|
|
" 'maxNotionalValue': '125000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'BLASTUSDT',\n",
|
|
" 'positionAmt': '0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '2',\n",
|
|
" 'maxNotionalValue': '2000000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': '币安人生USDT',\n",
|
|
" 'positionAmt': '0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '20',\n",
|
|
" 'maxNotionalValue': '10000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'GMTUSDT',\n",
|
|
" 'positionAmt': '0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '20',\n",
|
|
" 'maxNotionalValue': '50000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'LINEAUSDT',\n",
|
|
" 'positionAmt': '0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '4',\n",
|
|
" 'maxNotionalValue': '1500000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'PIEVERSEUSDT',\n",
|
|
" 'positionAmt': '0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '5',\n",
|
|
" 'maxNotionalValue': '100000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'GWEIUSDT',\n",
|
|
" 'positionAmt': '0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '2',\n",
|
|
" 'maxNotionalValue': '7500000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'SPACEUSDT',\n",
|
|
" 'positionAmt': '0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '20',\n",
|
|
" 'maxNotionalValue': '5000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'FLUXUSDT',\n",
|
|
" 'positionAmt': '0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '5',\n",
|
|
" 'maxNotionalValue': '100000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'BANDUSDT',\n",
|
|
" 'positionAmt': '0.0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '20',\n",
|
|
" 'maxNotionalValue': '25000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'SKRUSDT',\n",
|
|
" 'positionAmt': '0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '2',\n",
|
|
" 'maxNotionalValue': '500000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'NATGASUSDT',\n",
|
|
" 'positionAmt': '0.00',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '5',\n",
|
|
" 'maxNotionalValue': '50000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'RPLUSDT',\n",
|
|
" 'positionAmt': '0.0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '5',\n",
|
|
" 'maxNotionalValue': '125000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'BLUAIUSDT',\n",
|
|
" 'positionAmt': '0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '5',\n",
|
|
" 'maxNotionalValue': '100000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'CRVUSDT',\n",
|
|
" 'positionAmt': '0.0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '20',\n",
|
|
" 'maxNotionalValue': '300000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'METAUSDT',\n",
|
|
" 'positionAmt': '0.00',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '20',\n",
|
|
" 'maxNotionalValue': '130000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'DOTUSDT',\n",
|
|
" 'positionAmt': '0.0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '20',\n",
|
|
" 'maxNotionalValue': '5000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'ACXUSDT',\n",
|
|
" 'positionAmt': '0.0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '5',\n",
|
|
" 'maxNotionalValue': '50000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'TAKEUSDT',\n",
|
|
" 'positionAmt': '0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '20',\n",
|
|
" 'maxNotionalValue': '100000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'APTUSDT',\n",
|
|
" 'positionAmt': '0.0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '20',\n",
|
|
" 'maxNotionalValue': '5000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'SEIUSDT',\n",
|
|
" 'positionAmt': '0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '20',\n",
|
|
" 'maxNotionalValue': '50000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'BIOUSDT',\n",
|
|
" 'positionAmt': '0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '5',\n",
|
|
" 'maxNotionalValue': '750000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'REDUSDT',\n",
|
|
" 'positionAmt': '0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '5',\n",
|
|
" 'maxNotionalValue': '250000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'NOMUSDT',\n",
|
|
" 'positionAmt': '0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '20',\n",
|
|
" 'maxNotionalValue': '50000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'ETHUSD1',\n",
|
|
" 'positionAmt': '0.000',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '5',\n",
|
|
" 'maxNotionalValue': '500000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'FRAXUSDT',\n",
|
|
" 'positionAmt': '0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '20',\n",
|
|
" 'maxNotionalValue': '25000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'MMTUSDT',\n",
|
|
" 'positionAmt': '0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '5',\n",
|
|
" 'maxNotionalValue': '125000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'PRLUSDT',\n",
|
|
" 'positionAmt': '0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '2',\n",
|
|
" 'maxNotionalValue': '500000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'MOODENGUSDT',\n",
|
|
" 'positionAmt': '0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '20',\n",
|
|
" 'maxNotionalValue': '100000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'AVAAIUSDT',\n",
|
|
" 'positionAmt': '0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '5',\n",
|
|
" 'maxNotionalValue': '60000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'XPINUSDT',\n",
|
|
" 'positionAmt': '0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '20',\n",
|
|
" 'maxNotionalValue': '100000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'TREEUSDT',\n",
|
|
" 'positionAmt': '0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '20',\n",
|
|
" 'maxNotionalValue': '100000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'ZROUSDT',\n",
|
|
" 'positionAmt': '0.0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '20',\n",
|
|
" 'maxNotionalValue': '50000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'XCNUSDT',\n",
|
|
" 'positionAmt': '0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '2',\n",
|
|
" 'maxNotionalValue': '80000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'BIGTIMEUSDT',\n",
|
|
" 'positionAmt': '0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '20',\n",
|
|
" 'maxNotionalValue': '25000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'HYPERUSDT',\n",
|
|
" 'positionAmt': '0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '5',\n",
|
|
" 'maxNotionalValue': '125000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'ETHFIUSDT',\n",
|
|
" 'positionAmt': '0.0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '20',\n",
|
|
" 'maxNotionalValue': '100000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'MUSDT',\n",
|
|
" 'positionAmt': '0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '5',\n",
|
|
" 'maxNotionalValue': '125000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'ETHUSDT',\n",
|
|
" 'positionAmt': '0.000',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '2308.14000000',\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': 1777602532571},\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': '100',\n",
|
|
" 'maxNotionalValue': '50000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'CFXUSDT',\n",
|
|
" 'positionAmt': '0.0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '20',\n",
|
|
" 'maxNotionalValue': '5000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'KGENUSDT',\n",
|
|
" 'positionAmt': '0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '5',\n",
|
|
" 'maxNotionalValue': '100000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'FOLKSUSDT',\n",
|
|
" 'positionAmt': '0.0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '5',\n",
|
|
" 'maxNotionalValue': '100000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'BUSDT',\n",
|
|
" 'positionAmt': '0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '20',\n",
|
|
" 'maxNotionalValue': '100000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'CLUSDT',\n",
|
|
" 'positionAmt': '0.000',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '50',\n",
|
|
" 'maxNotionalValue': '10000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'KATUSDT',\n",
|
|
" 'positionAmt': '0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '5',\n",
|
|
" 'maxNotionalValue': '50000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'MINAUSDT',\n",
|
|
" 'positionAmt': '0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '20',\n",
|
|
" 'maxNotionalValue': '25000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'ONUSDT',\n",
|
|
" 'positionAmt': '0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '5',\n",
|
|
" 'maxNotionalValue': '100000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'SPKUSDT',\n",
|
|
" 'positionAmt': '0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '20',\n",
|
|
" 'maxNotionalValue': '100000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'COAIUSDT',\n",
|
|
" 'positionAmt': '0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '5',\n",
|
|
" 'maxNotionalValue': '100000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'CLANKERUSDT',\n",
|
|
" 'positionAmt': '0.00',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '5',\n",
|
|
" 'maxNotionalValue': '100000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'RESOLVUSDT',\n",
|
|
" 'positionAmt': '0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '20',\n",
|
|
" 'maxNotionalValue': '10000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'COLLECTUSDT',\n",
|
|
" 'positionAmt': '0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '5',\n",
|
|
" 'maxNotionalValue': '50000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'LUNA2USDT',\n",
|
|
" 'positionAmt': '0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '20',\n",
|
|
" 'maxNotionalValue': '25000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'IRUSDT',\n",
|
|
" 'positionAmt': '0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '5',\n",
|
|
" 'maxNotionalValue': '15000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'PORT3USDT',\n",
|
|
" 'positionAmt': '0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '20',\n",
|
|
" 'maxNotionalValue': '100000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'MUUSDT',\n",
|
|
" 'positionAmt': '0.00',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '2',\n",
|
|
" 'maxNotionalValue': '8000000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'MITOUSDT',\n",
|
|
" 'positionAmt': '0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '20',\n",
|
|
" 'maxNotionalValue': '100000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': '黑马USDT',\n",
|
|
" 'positionAmt': '0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '2',\n",
|
|
" 'maxNotionalValue': '80000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'EOSUSDT',\n",
|
|
" 'positionAmt': '0.0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '20',\n",
|
|
" 'maxNotionalValue': '5000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'ZBTUSDT',\n",
|
|
" 'positionAmt': '0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '5',\n",
|
|
" 'maxNotionalValue': '125000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'EWYUSDT',\n",
|
|
" 'positionAmt': '0.000',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '5',\n",
|
|
" 'maxNotionalValue': '50000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'SUIUSDT',\n",
|
|
" 'positionAmt': '0.0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '75',\n",
|
|
" 'maxNotionalValue': '20000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'MAGMAUSDT',\n",
|
|
" 'positionAmt': '0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '5',\n",
|
|
" 'maxNotionalValue': '50000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'METISUSDT',\n",
|
|
" 'positionAmt': '0.00',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '5',\n",
|
|
" 'maxNotionalValue': '125000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'TRUUSDT',\n",
|
|
" 'positionAmt': '0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '5',\n",
|
|
" 'maxNotionalValue': '60000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'MERLUSDT',\n",
|
|
" 'positionAmt': '0.0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '2',\n",
|
|
" 'maxNotionalValue': '7500000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'AVNTUSDT',\n",
|
|
" 'positionAmt': '0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '20',\n",
|
|
" 'maxNotionalValue': '50000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'BIRBUSDT',\n",
|
|
" 'positionAmt': '0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '2',\n",
|
|
" 'maxNotionalValue': '7500000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'C98USDT',\n",
|
|
" 'positionAmt': '0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '20',\n",
|
|
" 'maxNotionalValue': '25000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'LABUSDT',\n",
|
|
" 'positionAmt': '0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '5',\n",
|
|
" 'maxNotionalValue': '100000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'GUNUSDT',\n",
|
|
" 'positionAmt': '0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '20',\n",
|
|
" 'maxNotionalValue': '10000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'BCHUSDT',\n",
|
|
" 'positionAmt': '0.000',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '20',\n",
|
|
" 'maxNotionalValue': '100000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'YBUSDT',\n",
|
|
" 'positionAmt': '0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '5',\n",
|
|
" 'maxNotionalValue': '250000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'BOMEUSDT',\n",
|
|
" 'positionAmt': '0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '20',\n",
|
|
" 'maxNotionalValue': '50000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': '1000SHIBUSDT',\n",
|
|
" 'positionAmt': '0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '20',\n",
|
|
" 'maxNotionalValue': '5000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'BERAUSDT',\n",
|
|
" 'positionAmt': '0.0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '20',\n",
|
|
" 'maxNotionalValue': '100000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'KAITOUSDT',\n",
|
|
" 'positionAmt': '0.0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '3',\n",
|
|
" 'maxNotionalValue': '1000000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'CUSDT',\n",
|
|
" 'positionAmt': '0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '20',\n",
|
|
" 'maxNotionalValue': '100000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'BEATUSDT',\n",
|
|
" 'positionAmt': '0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '5',\n",
|
|
" 'maxNotionalValue': '100000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'TONUSDT',\n",
|
|
" 'positionAmt': '0.0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '20',\n",
|
|
" 'maxNotionalValue': '400000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': '1000LUNCUSDT',\n",
|
|
" 'positionAmt': '0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '5',\n",
|
|
" 'maxNotionalValue': '100000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'TURBOUSDT',\n",
|
|
" 'positionAmt': '0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '20',\n",
|
|
" 'maxNotionalValue': '50000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'AVAXUSDT',\n",
|
|
" 'positionAmt': '0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '20',\n",
|
|
" 'maxNotionalValue': '800000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'PARTIUSDT',\n",
|
|
" 'positionAmt': '0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '5',\n",
|
|
" 'maxNotionalValue': '100000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'JUPUSDT',\n",
|
|
" 'positionAmt': '0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '20',\n",
|
|
" 'maxNotionalValue': '100000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'IRYSUSDT',\n",
|
|
" 'positionAmt': '0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '5',\n",
|
|
" 'maxNotionalValue': '100000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'PENGUINUSDT',\n",
|
|
" 'positionAmt': '0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '2',\n",
|
|
" 'maxNotionalValue': '300000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'MOVRUSDT',\n",
|
|
" 'positionAmt': '0.00',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '5',\n",
|
|
" 'maxNotionalValue': '50000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'MATICUSDT',\n",
|
|
" 'positionAmt': '0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '20',\n",
|
|
" 'maxNotionalValue': '10000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'JCTUSDT',\n",
|
|
" 'positionAmt': '0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '5',\n",
|
|
" 'maxNotionalValue': '100000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'INXUSDT',\n",
|
|
" 'positionAmt': '0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '5',\n",
|
|
" 'maxNotionalValue': '125000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'TIAUSDT',\n",
|
|
" 'positionAmt': '0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '20',\n",
|
|
" 'maxNotionalValue': '1000000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'MKRUSDT',\n",
|
|
" 'positionAmt': '0.000',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '20',\n",
|
|
" 'maxNotionalValue': '5000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'UNIUSDT',\n",
|
|
" 'positionAmt': '0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '20',\n",
|
|
" 'maxNotionalValue': '5000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'PERPUSDT',\n",
|
|
" 'positionAmt': '0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '20',\n",
|
|
" 'maxNotionalValue': '25000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'ARKMUSDT',\n",
|
|
" 'positionAmt': '0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '20',\n",
|
|
" 'maxNotionalValue': '10000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'COMPUSDT',\n",
|
|
" 'positionAmt': '0.000',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '20',\n",
|
|
" 'maxNotionalValue': '25000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'BTCDOMUSDT',\n",
|
|
" 'positionAmt': '0.0000',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '5',\n",
|
|
" 'maxNotionalValue': '250000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'ATUSDT',\n",
|
|
" 'positionAmt': '0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '4',\n",
|
|
" 'maxNotionalValue': '250000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': '1000PEPEUSDT',\n",
|
|
" 'positionAmt': '0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '20',\n",
|
|
" 'maxNotionalValue': '1500000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'FETUSDT',\n",
|
|
" 'positionAmt': '0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '20',\n",
|
|
" 'maxNotionalValue': '100000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'BANANAS31USDT',\n",
|
|
" 'positionAmt': '0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '5',\n",
|
|
" 'maxNotionalValue': '125000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'ARTXUSDT',\n",
|
|
" 'positionAmt': '0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '2',\n",
|
|
" 'maxNotionalValue': '80000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'SXPUSDT',\n",
|
|
" 'positionAmt': '0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '20',\n",
|
|
" 'maxNotionalValue': '25000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'AKEUSDT',\n",
|
|
" 'positionAmt': '0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '5',\n",
|
|
" 'maxNotionalValue': '50000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'ZILUSDT',\n",
|
|
" 'positionAmt': '0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '20',\n",
|
|
" 'maxNotionalValue': '50000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'AXSUSDT',\n",
|
|
" 'positionAmt': '0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '20',\n",
|
|
" 'maxNotionalValue': '50000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'TOSHIUSDT',\n",
|
|
" 'positionAmt': '0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '20',\n",
|
|
" 'maxNotionalValue': '100000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'BSBUSDT',\n",
|
|
" 'positionAmt': '0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '5',\n",
|
|
" 'maxNotionalValue': '50000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'CHZUSDT',\n",
|
|
" 'positionAmt': '0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '20',\n",
|
|
" 'maxNotionalValue': '50000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'XPLUSDT',\n",
|
|
" 'positionAmt': '0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '4',\n",
|
|
" 'maxNotionalValue': '1000000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'KASUSDT',\n",
|
|
" 'positionAmt': '0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '5',\n",
|
|
" 'maxNotionalValue': '750000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'BAYUSDT',\n",
|
|
" 'positionAmt': '0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '2',\n",
|
|
" 'maxNotionalValue': '80000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'NEIROUSDT',\n",
|
|
" 'positionAmt': '0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '20',\n",
|
|
" 'maxNotionalValue': '100000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'FUNUSDT',\n",
|
|
" 'positionAmt': '0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '2',\n",
|
|
" 'maxNotionalValue': '80000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'VINEUSDT',\n",
|
|
" 'positionAmt': '0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '5',\n",
|
|
" 'maxNotionalValue': '50000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'INJUSDT',\n",
|
|
" 'positionAmt': '0.0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '20',\n",
|
|
" 'maxNotionalValue': '400000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'LUMIAUSDT',\n",
|
|
" 'positionAmt': '0.0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '3',\n",
|
|
" 'maxNotionalValue': '250000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'EIGENUSDT',\n",
|
|
" 'positionAmt': '0.0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '2',\n",
|
|
" 'maxNotionalValue': '7500000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'ENSOUSDT',\n",
|
|
" 'positionAmt': '0.0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '5',\n",
|
|
" 'maxNotionalValue': '250000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'INITUSDT',\n",
|
|
" 'positionAmt': '0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '50',\n",
|
|
" 'maxNotionalValue': '5000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'ZORAUSDT',\n",
|
|
" 'positionAmt': '0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '5',\n",
|
|
" 'maxNotionalValue': '100000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'ARIAUSDT',\n",
|
|
" 'positionAmt': '0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '20',\n",
|
|
" 'maxNotionalValue': '100000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'ZRXUSDT',\n",
|
|
" 'positionAmt': '0.0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '20',\n",
|
|
" 'maxNotionalValue': '25000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'HIGHUSDT',\n",
|
|
" 'positionAmt': '0.0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '5',\n",
|
|
" 'maxNotionalValue': '50000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'DUSDT',\n",
|
|
" 'positionAmt': '0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '5',\n",
|
|
" 'maxNotionalValue': '60000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'ZKPUSDT',\n",
|
|
" 'positionAmt': '0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '5',\n",
|
|
" 'maxNotionalValue': '100000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'STABLEUSDT',\n",
|
|
" 'positionAmt': '0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '5',\n",
|
|
" 'maxNotionalValue': '100000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'STBLUSDT',\n",
|
|
" 'positionAmt': '0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '20',\n",
|
|
" 'maxNotionalValue': '100000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'BNBUSDT',\n",
|
|
" 'positionAmt': '0.01',\n",
|
|
" 'entryPrice': '617.81',\n",
|
|
" 'markPrice': '620.59000000',\n",
|
|
" 'unRealizedProfit': '0.02780000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '100',\n",
|
|
" 'maxNotionalValue': '10000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '6.20590000',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 1777624213085},\n",
|
|
" {'symbol': 'ETCUSDT',\n",
|
|
" 'positionAmt': '0.00',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '20',\n",
|
|
" 'maxNotionalValue': '20000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'XMRUSDT',\n",
|
|
" 'positionAmt': '0.000',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '50',\n",
|
|
" 'maxNotionalValue': '10000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'MEUSDT',\n",
|
|
" 'positionAmt': '0.0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '20',\n",
|
|
" 'maxNotionalValue': '25000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'CCUSDT',\n",
|
|
" 'positionAmt': '0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '5',\n",
|
|
" 'maxNotionalValue': '250000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'ALICEUSDT',\n",
|
|
" 'positionAmt': '0.0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '20',\n",
|
|
" 'maxNotionalValue': '25000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'AEROUSDT',\n",
|
|
" 'positionAmt': '0.0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '5',\n",
|
|
" 'maxNotionalValue': '750000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'TOWNSUSDT',\n",
|
|
" 'positionAmt': '0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '20',\n",
|
|
" 'maxNotionalValue': '100000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'DOGEUSDT',\n",
|
|
" 'positionAmt': '0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '75',\n",
|
|
" 'maxNotionalValue': '80000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'GPSUSDT',\n",
|
|
" 'positionAmt': '0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '5',\n",
|
|
" 'maxNotionalValue': '125000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'SNXUSDT',\n",
|
|
" 'positionAmt': '0.0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '20',\n",
|
|
" 'maxNotionalValue': '100000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'SOLVUSDT',\n",
|
|
" 'positionAmt': '0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '5',\n",
|
|
" 'maxNotionalValue': '50000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'CFGUSDT',\n",
|
|
" 'positionAmt': '0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '5',\n",
|
|
" 'maxNotionalValue': '125000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'SUSDT',\n",
|
|
" 'positionAmt': '0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '5',\n",
|
|
" 'maxNotionalValue': '750000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'EDENUSDT',\n",
|
|
" 'positionAmt': '0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '5',\n",
|
|
" 'maxNotionalValue': '250000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'XLMUSDT',\n",
|
|
" 'positionAmt': '0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '20',\n",
|
|
" 'maxNotionalValue': '100000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'DASHUSDT',\n",
|
|
" 'positionAmt': '0.000',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '5',\n",
|
|
" 'maxNotionalValue': '750000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'KAVAUSDT',\n",
|
|
" 'positionAmt': '0.0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '20',\n",
|
|
" 'maxNotionalValue': '25000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'SAHARAUSDT',\n",
|
|
" 'positionAmt': '0.0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '2',\n",
|
|
" 'maxNotionalValue': '60000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'JELLYJELLYUSDT',\n",
|
|
" 'positionAmt': '0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '5',\n",
|
|
" 'maxNotionalValue': '100000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'RUNEUSDT',\n",
|
|
" 'positionAmt': '0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '20',\n",
|
|
" 'maxNotionalValue': '25000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'OPUSDT',\n",
|
|
" 'positionAmt': '0.0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '20',\n",
|
|
" 'maxNotionalValue': '5000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'PLAYUSDT',\n",
|
|
" 'positionAmt': '0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '5',\n",
|
|
" 'maxNotionalValue': '50000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'COSUSDT',\n",
|
|
" 'positionAmt': '0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '5',\n",
|
|
" 'maxNotionalValue': '50000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'USELESSUSDT',\n",
|
|
" 'positionAmt': '0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '5',\n",
|
|
" 'maxNotionalValue': '50000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'BIRDUSDT',\n",
|
|
" 'positionAmt': '0.00',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '2',\n",
|
|
" 'maxNotionalValue': '80000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'LTCUSDT',\n",
|
|
" 'positionAmt': '0.000',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '20',\n",
|
|
" 'maxNotionalValue': '15000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'RENDERUSDT',\n",
|
|
" 'positionAmt': '0.0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '20',\n",
|
|
" 'maxNotionalValue': '100000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'FARTCOINUSDT',\n",
|
|
" 'positionAmt': '0.0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '20',\n",
|
|
" 'maxNotionalValue': '20000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'XPTUSDT',\n",
|
|
" 'positionAmt': '0.000',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '3',\n",
|
|
" 'maxNotionalValue': '30000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'TACUSDT',\n",
|
|
" 'positionAmt': '0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '3',\n",
|
|
" 'maxNotionalValue': '700000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'FLOWUSDT',\n",
|
|
" 'positionAmt': '0.0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '5',\n",
|
|
" 'maxNotionalValue': '200000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'HEMIUSDT',\n",
|
|
" 'positionAmt': '0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '20',\n",
|
|
" 'maxNotionalValue': '30000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'XPDUSDT',\n",
|
|
" 'positionAmt': '0.000',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '2',\n",
|
|
" 'maxNotionalValue': '80000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'CUDISUSDT',\n",
|
|
" 'positionAmt': '0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '20',\n",
|
|
" 'maxNotionalValue': '100000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'AEVOUSDT',\n",
|
|
" 'positionAmt': '0.0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '3',\n",
|
|
" 'maxNotionalValue': '500000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'GALUSDT',\n",
|
|
" 'positionAmt': '0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '20',\n",
|
|
" 'maxNotionalValue': '25000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'OGNUSDT',\n",
|
|
" 'positionAmt': '0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '20',\n",
|
|
" 'maxNotionalValue': '10000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'MOVEUSDT',\n",
|
|
" 'positionAmt': '0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '5',\n",
|
|
" 'maxNotionalValue': '250000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'ENAUSDT',\n",
|
|
" 'positionAmt': '0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '25',\n",
|
|
" 'maxNotionalValue': '800000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'AIAUSDT',\n",
|
|
" 'positionAmt': '0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '20',\n",
|
|
" 'maxNotionalValue': '5000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'RAVEUSDT',\n",
|
|
" 'positionAmt': '0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '5',\n",
|
|
" 'maxNotionalValue': '100000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'USUSDT',\n",
|
|
" 'positionAmt': '0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '5',\n",
|
|
" 'maxNotionalValue': '100000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'KNCUSDT',\n",
|
|
" 'positionAmt': '0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '20',\n",
|
|
" 'maxNotionalValue': '25000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'BLURUSDT',\n",
|
|
" 'positionAmt': '0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '5',\n",
|
|
" 'maxNotionalValue': '250000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'MEGAUSDT',\n",
|
|
" 'positionAmt': '0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '5',\n",
|
|
" 'maxNotionalValue': '50000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'ZRCUSDT',\n",
|
|
" 'positionAmt': '0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '20',\n",
|
|
" 'maxNotionalValue': '100000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'ESPORTSUSDT',\n",
|
|
" 'positionAmt': '0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '20',\n",
|
|
" 'maxNotionalValue': '100000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'ATOMUSDT',\n",
|
|
" 'positionAmt': '0.00',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '20',\n",
|
|
" 'maxNotionalValue': '5000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'POWERUSDT',\n",
|
|
" 'positionAmt': '0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '5',\n",
|
|
" 'maxNotionalValue': '100000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'TRUSTUSDT',\n",
|
|
" 'positionAmt': '0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '5',\n",
|
|
" 'maxNotionalValue': '100000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'NMRUSDT',\n",
|
|
" 'positionAmt': '0.0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '20',\n",
|
|
" 'maxNotionalValue': '25000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'SQDUSDT',\n",
|
|
" 'positionAmt': '0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '4',\n",
|
|
" 'maxNotionalValue': '500000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'GASUSDT',\n",
|
|
" 'positionAmt': '0.0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '20',\n",
|
|
" 'maxNotionalValue': '25000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'IOSTUSDT',\n",
|
|
" 'positionAmt': '0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '20',\n",
|
|
" 'maxNotionalValue': '25000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'HBARUSDT',\n",
|
|
" 'positionAmt': '0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '20',\n",
|
|
" 'maxNotionalValue': '800000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'LIGHTUSDT',\n",
|
|
" 'positionAmt': '0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '5',\n",
|
|
" 'maxNotionalValue': '100000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'POLYXUSDT',\n",
|
|
" 'positionAmt': '0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '20',\n",
|
|
" 'maxNotionalValue': '25000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'VANAUSDT',\n",
|
|
" 'positionAmt': '0.00',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '5',\n",
|
|
" 'maxNotionalValue': '250000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'BANUSDT',\n",
|
|
" 'positionAmt': '0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '3',\n",
|
|
" 'maxNotionalValue': '500000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'FLOCKUSDT',\n",
|
|
" 'positionAmt': '0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '20',\n",
|
|
" 'maxNotionalValue': '100000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'EDUUSDT',\n",
|
|
" 'positionAmt': '0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '20',\n",
|
|
" 'maxNotionalValue': '25000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'SNDKUSDT',\n",
|
|
" 'positionAmt': '0.00',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '2',\n",
|
|
" 'maxNotionalValue': '8000000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'ALGOUSDT',\n",
|
|
" 'positionAmt': '0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '20',\n",
|
|
" 'maxNotionalValue': '25000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'BTRUSDT',\n",
|
|
" 'positionAmt': '0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '20',\n",
|
|
" 'maxNotionalValue': '100000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'PYTHUSDT',\n",
|
|
" 'positionAmt': '0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '20',\n",
|
|
" 'maxNotionalValue': '75000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'BRUSDT',\n",
|
|
" 'positionAmt': '0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '5',\n",
|
|
" 'maxNotionalValue': '50000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'CARUSDT',\n",
|
|
" 'positionAmt': '0.00',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '2',\n",
|
|
" 'maxNotionalValue': '80000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'SENTUSDT',\n",
|
|
" 'positionAmt': '0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '5',\n",
|
|
" 'maxNotionalValue': '100000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'VVVUSDT',\n",
|
|
" 'positionAmt': '0.00',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '20',\n",
|
|
" 'maxNotionalValue': '10000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'ARPAUSDT',\n",
|
|
" 'positionAmt': '0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '20',\n",
|
|
" 'maxNotionalValue': '10000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': '1INCHUSDT',\n",
|
|
" 'positionAmt': '0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '20',\n",
|
|
" 'maxNotionalValue': '25000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'VELOUSDT',\n",
|
|
" 'positionAmt': '0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '2',\n",
|
|
" 'maxNotionalValue': '80000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'SIRENUSDT',\n",
|
|
" 'positionAmt': '0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '5',\n",
|
|
" 'maxNotionalValue': '50000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'PIXELUSDT',\n",
|
|
" 'positionAmt': '0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '20',\n",
|
|
" 'maxNotionalValue': '25000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'LINAUSDT',\n",
|
|
" 'positionAmt': '0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '20',\n",
|
|
" 'maxNotionalValue': '25000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'OWLUSDT',\n",
|
|
" 'positionAmt': '0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '2',\n",
|
|
" 'maxNotionalValue': '80000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'STRKUSDT',\n",
|
|
" 'positionAmt': '0.0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '20',\n",
|
|
" 'maxNotionalValue': '100000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'NVDAUSDT',\n",
|
|
" 'positionAmt': '0.00',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '20',\n",
|
|
" 'maxNotionalValue': '130000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'AIOUSDT',\n",
|
|
" 'positionAmt': '0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '20',\n",
|
|
" 'maxNotionalValue': '100000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'FOGOUSDT',\n",
|
|
" 'positionAmt': '0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '20',\n",
|
|
" 'maxNotionalValue': '10000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'BLZUSDT',\n",
|
|
" 'positionAmt': '0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '20',\n",
|
|
" 'maxNotionalValue': '25000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'ARCUSDT',\n",
|
|
" 'positionAmt': '0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '5',\n",
|
|
" 'maxNotionalValue': '50000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'XAUUSDT',\n",
|
|
" 'positionAmt': '0.000',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '75',\n",
|
|
" 'maxNotionalValue': '2500',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'DOODUSDT',\n",
|
|
" 'positionAmt': '0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '5',\n",
|
|
" 'maxNotionalValue': '50000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'LDOUSDT',\n",
|
|
" 'positionAmt': '0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '20',\n",
|
|
" 'maxNotionalValue': '400000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'PENGUUSDT',\n",
|
|
" 'positionAmt': '0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '20',\n",
|
|
" 'maxNotionalValue': '2000000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'ORCAUSDT',\n",
|
|
" 'positionAmt': '0.0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '5',\n",
|
|
" 'maxNotionalValue': '125000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'XRPUSDT',\n",
|
|
" 'positionAmt': '0.0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '100',\n",
|
|
" 'maxNotionalValue': '40000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'PORTALUSDT',\n",
|
|
" 'positionAmt': '0.0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '5',\n",
|
|
" 'maxNotionalValue': '50000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': '4USDT',\n",
|
|
" 'positionAmt': '0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '50',\n",
|
|
" 'maxNotionalValue': '5000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'BELUSDT',\n",
|
|
" 'positionAmt': '0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '20',\n",
|
|
" 'maxNotionalValue': '10000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'PROVEUSDT',\n",
|
|
" 'positionAmt': '0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '20',\n",
|
|
" 'maxNotionalValue': '100000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'QQQUSDT',\n",
|
|
" 'positionAmt': '0.00',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '20',\n",
|
|
" 'maxNotionalValue': '130000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'DOLOUSDT',\n",
|
|
" 'positionAmt': '0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '20',\n",
|
|
" 'maxNotionalValue': '25000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'USD1USDT',\n",
|
|
" 'positionAmt': '0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '20',\n",
|
|
" 'maxNotionalValue': '10000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'PROMPTUSDT',\n",
|
|
" 'positionAmt': '0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '5',\n",
|
|
" 'maxNotionalValue': '50000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'FIGHTUSDT',\n",
|
|
" 'positionAmt': '0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '2',\n",
|
|
" 'maxNotionalValue': '500000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'AIGENSYNUSDT',\n",
|
|
" 'positionAmt': '0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '3',\n",
|
|
" 'maxNotionalValue': '250000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'PHAUSDT',\n",
|
|
" 'positionAmt': '0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '5',\n",
|
|
" 'maxNotionalValue': '125000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'ANIMEUSDT',\n",
|
|
" 'positionAmt': '0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '5',\n",
|
|
" 'maxNotionalValue': '100000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'API3USDT',\n",
|
|
" 'positionAmt': '0.0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '3',\n",
|
|
" 'maxNotionalValue': '500000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'ELSAUSDT',\n",
|
|
" 'positionAmt': '0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '2',\n",
|
|
" 'maxNotionalValue': '500000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'CYSUSDT',\n",
|
|
" 'positionAmt': '0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '5',\n",
|
|
" 'maxNotionalValue': '100000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'BULLAUSDT',\n",
|
|
" 'positionAmt': '0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '5',\n",
|
|
" 'maxNotionalValue': '50000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': '人生K线USDT',\n",
|
|
" 'positionAmt': '0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '2',\n",
|
|
" 'maxNotionalValue': '80000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'ADAUSDT',\n",
|
|
" 'positionAmt': '0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '20',\n",
|
|
" 'maxNotionalValue': '2000000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'JTOUSDT',\n",
|
|
" 'positionAmt': '0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '5',\n",
|
|
" 'maxNotionalValue': '250000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'TSTUSDT',\n",
|
|
" 'positionAmt': '0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '5',\n",
|
|
" 'maxNotionalValue': '60000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'LITUSDT',\n",
|
|
" 'positionAmt': '0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.92500000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '50',\n",
|
|
" 'maxNotionalValue': '2500',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 1777618851829},\n",
|
|
" {'symbol': 'FFUSDT',\n",
|
|
" 'positionAmt': '0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '5',\n",
|
|
" 'maxNotionalValue': '100000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'XNYUSDT',\n",
|
|
" 'positionAmt': '0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '20',\n",
|
|
" 'maxNotionalValue': '10000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'EDGEUSDT',\n",
|
|
" 'positionAmt': '0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '5',\n",
|
|
" 'maxNotionalValue': '5000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'BMTUSDT',\n",
|
|
" 'positionAmt': '0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '5',\n",
|
|
" 'maxNotionalValue': '50000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'LYNUSDT',\n",
|
|
" 'positionAmt': '0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '5',\n",
|
|
" 'maxNotionalValue': '100000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'SOONUSDT',\n",
|
|
" 'positionAmt': '0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '20',\n",
|
|
" 'maxNotionalValue': '10000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'TRIAUSDT',\n",
|
|
" 'positionAmt': '0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '5',\n",
|
|
" 'maxNotionalValue': '125000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'SFPUSDT',\n",
|
|
" 'positionAmt': '0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '20',\n",
|
|
" 'maxNotionalValue': '25000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'RLCUSDT',\n",
|
|
" 'positionAmt': '0.0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '20',\n",
|
|
" 'maxNotionalValue': '25000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'WETUSDT',\n",
|
|
" 'positionAmt': '0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '5',\n",
|
|
" 'maxNotionalValue': '100000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'XCUUSDT',\n",
|
|
" 'positionAmt': '0.0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '2',\n",
|
|
" 'maxNotionalValue': '80000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'BOBUSDT',\n",
|
|
" 'positionAmt': '0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '5',\n",
|
|
" 'maxNotionalValue': '100000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'MSFTUSDT',\n",
|
|
" 'positionAmt': '0.00',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '20',\n",
|
|
" 'maxNotionalValue': '130000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'GOOGLUSDT',\n",
|
|
" 'positionAmt': '0.00',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '5',\n",
|
|
" 'maxNotionalValue': '10000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'IDUSDT',\n",
|
|
" 'positionAmt': '0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '20',\n",
|
|
" 'maxNotionalValue': '25000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'ACUUSDT',\n",
|
|
" 'positionAmt': '0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '10',\n",
|
|
" 'maxNotionalValue': '10000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'PAXGUSDT',\n",
|
|
" 'positionAmt': '0.000',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '5',\n",
|
|
" 'maxNotionalValue': '750000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'VELVETUSDT',\n",
|
|
" 'positionAmt': '0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '3',\n",
|
|
" 'maxNotionalValue': '500000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'SANDUSDT',\n",
|
|
" 'positionAmt': '0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '20',\n",
|
|
" 'maxNotionalValue': '100000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'LINKUSDT',\n",
|
|
" 'positionAmt': '0.00',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '20',\n",
|
|
" 'maxNotionalValue': '100000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'RIFUSDT',\n",
|
|
" 'positionAmt': '0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '20',\n",
|
|
" 'maxNotionalValue': '25000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'INUSDT',\n",
|
|
" 'positionAmt': '0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '20',\n",
|
|
" 'maxNotionalValue': '100000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'JASMYUSDT',\n",
|
|
" 'positionAmt': '0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '20',\n",
|
|
" 'maxNotionalValue': '100000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'BASUSDT',\n",
|
|
" 'positionAmt': '0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '20',\n",
|
|
" 'maxNotionalValue': '100000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'MELANIAUSDT',\n",
|
|
" 'positionAmt': '0.00',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '5',\n",
|
|
" 'maxNotionalValue': '250000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'YGGUSDT',\n",
|
|
" 'positionAmt': '0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '20',\n",
|
|
" 'maxNotionalValue': '25000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': '我踏马来了USDT',\n",
|
|
" 'positionAmt': '0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '2',\n",
|
|
" 'maxNotionalValue': '500000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'DAMUSDT',\n",
|
|
" 'positionAmt': '0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '20',\n",
|
|
" 'maxNotionalValue': '100000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'AVLUSDT',\n",
|
|
" 'positionAmt': '0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '4',\n",
|
|
" 'maxNotionalValue': '1000000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'NAORISUSDT',\n",
|
|
" 'positionAmt': '0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '5',\n",
|
|
" 'maxNotionalValue': '50000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'DYMUSDT',\n",
|
|
" 'positionAmt': '0.0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '5',\n",
|
|
" 'maxNotionalValue': '125000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'IMXUSDT',\n",
|
|
" 'positionAmt': '0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '20',\n",
|
|
" 'maxNotionalValue': '25000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'VETUSDT',\n",
|
|
" 'positionAmt': '0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '20',\n",
|
|
" 'maxNotionalValue': '5000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'NFPUSDT',\n",
|
|
" 'positionAmt': '0.0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '20',\n",
|
|
" 'maxNotionalValue': '25000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'UBUSDT',\n",
|
|
" 'positionAmt': '0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '20',\n",
|
|
" 'maxNotionalValue': '100000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'ONTUSDT',\n",
|
|
" 'positionAmt': '0.0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '5',\n",
|
|
" 'maxNotionalValue': '250000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': '1000CHEEMSUSDT',\n",
|
|
" 'positionAmt': '0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '5',\n",
|
|
" 'maxNotionalValue': '250000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'ARBUSDT',\n",
|
|
" 'positionAmt': '0.0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '20',\n",
|
|
" 'maxNotionalValue': '100000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': '老子USDT',\n",
|
|
" 'positionAmt': '0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '2',\n",
|
|
" 'maxNotionalValue': '80000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'GRTUSDT',\n",
|
|
" 'positionAmt': '0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '20',\n",
|
|
" 'maxNotionalValue': '25000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'WLFIUSDT',\n",
|
|
" 'positionAmt': '0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '25',\n",
|
|
" 'maxNotionalValue': '1000000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 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': '10',\n",
|
|
" 'maxNotionalValue': '3000000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'ICPUSDT',\n",
|
|
" 'positionAmt': '0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '5',\n",
|
|
" 'maxNotionalValue': '750000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'GRASSUSDT',\n",
|
|
" 'positionAmt': '0.0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '5',\n",
|
|
" 'maxNotionalValue': '250000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'WIFUSDT',\n",
|
|
" 'positionAmt': '0.0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '20',\n",
|
|
" 'maxNotionalValue': '30000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'PROSUSDT',\n",
|
|
" 'positionAmt': '0.0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '2',\n",
|
|
" 'maxNotionalValue': '80000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'BABAUSDT',\n",
|
|
" 'positionAmt': '0.00',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '2',\n",
|
|
" 'maxNotionalValue': '8000000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'MBLUSDT',\n",
|
|
" 'positionAmt': '0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '20',\n",
|
|
" 'maxNotionalValue': '25000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'CAKEUSDT',\n",
|
|
" 'positionAmt': '0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '20',\n",
|
|
" 'maxNotionalValue': '5000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'ROBOUSDT',\n",
|
|
" 'positionAmt': '0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '5',\n",
|
|
" 'maxNotionalValue': '50000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'BTCUSD1',\n",
|
|
" 'positionAmt': '0.000',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '5',\n",
|
|
" 'maxNotionalValue': '500000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'OPNUSDT',\n",
|
|
" 'positionAmt': '0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '5',\n",
|
|
" 'maxNotionalValue': '50000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': '0GUSDT',\n",
|
|
" 'positionAmt': '0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '20',\n",
|
|
" 'maxNotionalValue': '2000000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'ROSEUSDT',\n",
|
|
" 'positionAmt': '0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '20',\n",
|
|
" 'maxNotionalValue': '50000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'PEOPLEUSDT',\n",
|
|
" 'positionAmt': '0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '20',\n",
|
|
" 'maxNotionalValue': '25000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'MYXUSDT',\n",
|
|
" 'positionAmt': '0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '10',\n",
|
|
" 'maxNotionalValue': '10000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'CLOUSDT',\n",
|
|
" 'positionAmt': '0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '5',\n",
|
|
" 'maxNotionalValue': '100000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'PUNDIAIUSDT',\n",
|
|
" 'positionAmt': '0.0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '2',\n",
|
|
" 'maxNotionalValue': '80000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'TSMUSDT',\n",
|
|
" 'positionAmt': '0.00',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '5',\n",
|
|
" 'maxNotionalValue': '10000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'LAUSDT',\n",
|
|
" 'positionAmt': '0.0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '5',\n",
|
|
" 'maxNotionalValue': '250000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'DEGOUSDT',\n",
|
|
" 'positionAmt': '0.0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '5',\n",
|
|
" 'maxNotionalValue': '60000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'TNSRUSDT',\n",
|
|
" 'positionAmt': '0.0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '5',\n",
|
|
" 'maxNotionalValue': '100000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'BTCUSDT',\n",
|
|
" 'positionAmt': '0.000',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.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': '1000FLOKIUSDT',\n",
|
|
" 'positionAmt': '0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '20',\n",
|
|
" 'maxNotionalValue': '25000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'BASEDUSDT',\n",
|
|
" 'positionAmt': '0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '5',\n",
|
|
" 'maxNotionalValue': '125000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'FTMUSDT',\n",
|
|
" 'positionAmt': '0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '20',\n",
|
|
" 'maxNotionalValue': '5000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'HOODUSDT',\n",
|
|
" 'positionAmt': '0.00',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '5',\n",
|
|
" 'maxNotionalValue': '10000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'SPXUSDT',\n",
|
|
" 'positionAmt': '0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '20',\n",
|
|
" 'maxNotionalValue': '100000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'QUSDT',\n",
|
|
" 'positionAmt': '0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '20',\n",
|
|
" 'maxNotionalValue': '100000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'UAIUSDT',\n",
|
|
" 'positionAmt': '0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '5',\n",
|
|
" 'maxNotionalValue': '100000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'GUAUSDT',\n",
|
|
" 'positionAmt': '0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '4',\n",
|
|
" 'maxNotionalValue': '1000000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'WARDUSDT',\n",
|
|
" 'positionAmt': '0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '2',\n",
|
|
" 'maxNotionalValue': '80000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'HUSDT',\n",
|
|
" 'positionAmt': '0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '5',\n",
|
|
" 'maxNotionalValue': '100000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'WLDUSDT',\n",
|
|
" 'positionAmt': '0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '20',\n",
|
|
" 'maxNotionalValue': '1000000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'HOLOUSDT',\n",
|
|
" 'positionAmt': '0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '20',\n",
|
|
" 'maxNotionalValue': '100000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'ASTERUSDT',\n",
|
|
" 'positionAmt': '0.00',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '75',\n",
|
|
" 'maxNotionalValue': '20000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'AZTECUSDT',\n",
|
|
" 'positionAmt': '0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '5',\n",
|
|
" 'maxNotionalValue': '50000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'BLESSUSDT',\n",
|
|
" 'positionAmt': '0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '20',\n",
|
|
" 'maxNotionalValue': '100000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'DYDXUSDT',\n",
|
|
" 'positionAmt': '0.0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '20',\n",
|
|
" 'maxNotionalValue': '5000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0},\n",
|
|
" {'symbol': 'DUSKUSDT',\n",
|
|
" 'positionAmt': '0',\n",
|
|
" 'entryPrice': '0.0',\n",
|
|
" 'markPrice': '0.00000000',\n",
|
|
" 'unRealizedProfit': '0.00000000',\n",
|
|
" 'liquidationPrice': '0',\n",
|
|
" 'leverage': '20',\n",
|
|
" 'maxNotionalValue': '10000',\n",
|
|
" 'marginType': 'cross',\n",
|
|
" 'isolatedMargin': '0.00000000',\n",
|
|
" 'isAutoAddMargin': 'false',\n",
|
|
" 'positionSide': 'BOTH',\n",
|
|
" 'notional': '0',\n",
|
|
" 'isolatedWallet': '0',\n",
|
|
" 'updateTime': 0}]"
|
|
]
|
|
},
|
|
"execution_count": 21,
|
|
"metadata": {},
|
|
"output_type": "execute_result"
|
|
}
|
|
],
|
|
"source": [
|
|
"j"
|
|
]
|
|
},
|
|
{
|
|
"cell_type": "code",
|
|
"execution_count": null,
|
|
"id": "d5de2d25",
|
|
"metadata": {},
|
|
"outputs": [],
|
|
"source": [
|
|
"import requests\n"
|
|
]
|
|
},
|
|
{
|
|
"cell_type": "code",
|
|
"execution_count": 28,
|
|
"id": "6de7227b",
|
|
"metadata": {},
|
|
"outputs": [
|
|
{
|
|
"data": {
|
|
"text/plain": [
|
|
"216.842"
|
|
]
|
|
},
|
|
"execution_count": 28,
|
|
"metadata": {},
|
|
"output_type": "execute_result"
|
|
}
|
|
],
|
|
"source": [
|
|
"r = requests.get('https://fapi.asterdex.com/fapi/v3/ping')\n",
|
|
"r.elapsed.total_seconds()*1000"
|
|
]
|
|
},
|
|
{
|
|
"cell_type": "code",
|
|
"execution_count": 27,
|
|
"id": "d70b81ab",
|
|
"metadata": {},
|
|
"outputs": [
|
|
{
|
|
"data": {
|
|
"text/plain": [
|
|
"818.9119999999999"
|
|
]
|
|
},
|
|
"execution_count": 27,
|
|
"metadata": {},
|
|
"output_type": "execute_result"
|
|
}
|
|
],
|
|
"source": [
|
|
"r = requests.get('https://api.starknet.extended.exchange/api/v1/info/markets/ETH-USD/trades')\n",
|
|
"r.elapsed.total_seconds()*1000"
|
|
]
|
|
},
|
|
{
|
|
"cell_type": "code",
|
|
"execution_count": 26,
|
|
"metadata": {},
|
|
"outputs": [
|
|
{
|
|
"data": {
|
|
"text/plain": [
|
|
"'{\"status\":\"OK\",\"data\":[{\"i\":2048281060801777676,\"m\":\"ETH-USD\",\"S\":\"BUY\",\"tT\":\"TRADE\",\"T\":1777183234774,\"p\":\"2329.5\",\"q\":\"0.011\"},{\"i\":2048281060801777677,\"m\":\"ETH-USD\",\"S\":\"BUY\",\"tT\":\"TRADE\",\"T\":1777183234774,\"p\":\"2329.6\",\"q\":\"0.500\"},{\"i\":2048281062441750529,\"m\":\"ETH-USD\",\"S\":\"BUY\",\"tT\":\"TRADE\",\"T\":1777183235165,\"p\":\"2329.7\",\"q\":\"0.010\"},{\"i\":2048281062441750530,\"m\":\"ETH-USD\",\"S\":\"BUY\",\"tT\":\"TRADE\",\"T\":1777183235165,\"p\":\"2329.7\",\"q\":\"0.146\"},{\"i\":2048281069555290113,\"m\":\"ETH-USD\",\"S\":\"SELL\",\"tT\":\"TRADE\",\"T\":1777183236861,\"p\":\"2329.6\",\"q\":\"0.147\"},{\"i\":2048281092531687424,\"m\":\"ETH-USD\",\"S\":\"BUY\",\"tT\":\"TRADE\",\"T\":1777183242339,\"p\":\"2329.7\",\"q\":\"0.012\"},{\"i\":2048281428902285317,\"m\":\"ETH-USD\",\"S\":\"BUY\",\"tT\":\"TRADE\",\"T\":1777183322536,\"p\":\"2329.7\",\"q\":\"0.266\"},{\"i\":2048281428927451138,\"m\":\"ETH-USD\",\"S\":\"BUY\",\"tT\":\"TRADE\",\"T\":1777183322542,\"p\":\"2329.7\",\"q\":\"0.092\"},{\"i\":2048281434937888768,\"m\":\"ETH-USD\",\"S\":\"BUY\",\"tT\":\"TRADE\",\"T\":1777183323975,\"p\":\"2329.8\",\"q\":\"0.250\"},{\"i\":2048281434942083072,\"m\":\"ETH-USD\",\"S\":\"BUY\",\"tT\":\"TRADE\",\"T\":1777183323976,\"p\":\"2329.8\",\"q\":\"0.250\"},{\"i\":2048281434942083073,\"m\":\"ETH-USD\",\"S\":\"BUY\",\"tT\":\"TRADE\",\"T\":1777183323976,\"p\":\"2329.8\",\"q\":\"0.084\"},{\"i\":2048281434942083074,\"m\":\"ETH-USD\",\"S\":\"BUY\",\"tT\":\"TRADE\",\"T\":1777183323976,\"p\":\"2329.8\",\"q\":\"0.058\"},{\"i\":2048281448279969795,\"m\":\"ETH-USD\",\"S\":\"BUY\",\"tT\":\"TRADE\",\"T\":1777183327156,\"p\":\"2330.0\",\"q\":\"0.110\"},{\"i\":2048281448477102080,\"m\":\"ETH-USD\",\"S\":\"BUY\",\"tT\":\"TRADE\",\"T\":1777183327203,\"p\":\"2330.0\",\"q\":\"0.390\"},{\"i\":2048281462658043904,\"m\":\"ETH-USD\",\"S\":\"BUY\",\"tT\":\"TRADE\",\"T\":1777183330584,\"p\":\"2330.2\",\"q\":\"0.500\"},{\"i\":2048281462658043905,\"m\":\"ETH-USD\",\"S\":\"BUY\",\"tT\":\"TRADE\",\"T\":1777183330584,\"p\":\"2330.2\",\"q\":\"0.868\"},{\"i\":2048281616119238656,\"m\":\"ETH-USD\",\"S\":\"SELL\",\"tT\":\"TRADE\",\"T\":1777183367172,\"p\":\"2330.0\",\"q\":\"0.500\"},{\"i\":2048281710952452097,\"m\":\"ETH-USD\",\"S\":\"SELL\",\"tT\":\"TRADE\",\"T\":1777183389782,\"p\":\"2329.8\",\"q\":\"0.169\"},{\"i\":2048281718711914496,\"m\":\"ETH-USD\",\"S\":\"SELL\",\"tT\":\"TRADE\",\"T\":1777183391632,\"p\":\"2329.8\",\"q\":\"0.102\"},{\"i\":2048281768477331457,\"m\":\"ETH-USD\",\"S\":\"SELL\",\"tT\":\"TRADE\",\"T\":1777183403497,\"p\":\"2329.8\",\"q\":\"0.407\"},{\"i\":2048281768519274496,\"m\":\"ETH-USD\",\"S\":\"SELL\",\"tT\":\"TRADE\",\"T\":1777183403507,\"p\":\"2329.8\",\"q\":\"1.672\"},{\"i\":2048281773514690563,\"m\":\"ETH-USD\",\"S\":\"SELL\",\"tT\":\"TRADE\",\"T\":1777183404698,\"p\":\"2329.6\",\"q\":\"0.500\"},{\"i\":2048281853550399489,\"m\":\"ETH-USD\",\"S\":\"BUY\",\"tT\":\"TRADE\",\"T\":1777183423780,\"p\":\"2329.6\",\"q\":\"0.090\"},{\"i\":2048281858856194048,\"m\":\"ETH-USD\",\"S\":\"BUY\",\"tT\":\"TRADE\",\"T\":1777183425045,\"p\":\"2329.6\",\"q\":\"0.010\"},{\"i\":2048281867026698240,\"m\":\"ETH-USD\",\"S\":\"SELL\",\"tT\":\"TRADE\",\"T\":1777183426993,\"p\":\"2329.5\",\"q\":\"0.011\"},{\"i\":2048281904020459520,\"m\":\"ETH-USD\",\"S\":\"SELL\",\"tT\":\"TRADE\",\"T\":1777183435813,\"p\":\"2329.4\",\"q\":\"0.500\"},{\"i\":2048281904074985480,\"m\":\"ETH-USD\",\"S\":\"SELL\",\"tT\":\"TRADE\",\"T\":1777183435826,\"p\":\"2329.3\",\"q\":\"0.043\"},{\"i\":2048281904074985481,\"m\":\"ETH-USD\",\"S\":\"SELL\",\"tT\":\"TRADE\",\"T\":1777183435826,\"p\":\"2329.3\",\"q\":\"0.043\"},{\"i\":2048281946777194496,\"m\":\"ETH-USD\",\"S\":\"SELL\",\"tT\":\"TRADE\",\"T\":1777183446007,\"p\":\"2329.2\",\"q\":\"0.259\"},{\"i\":2048281958982619136,\"m\":\"ETH-USD\",\"S\":\"SELL\",\"tT\":\"TRADE\",\"T\":1777183448917,\"p\":\"2329.2\",\"q\":\"0.241\"},{\"i\":2048282097155575814,\"m\":\"ETH-USD\",\"S\":\"BUY\",\"tT\":\"TRADE\",\"T\":1777183481860,\"p\":\"2329.4\",\"q\":\"0.500\"},{\"i\":2048282097155575815,\"m\":\"ETH-USD\",\"S\":\"BUY\",\"tT\":\"TRADE\",\"T\":1777183481860,\"p\":\"2329.4\",\"q\":\"0.056\"},{\"i\":2048282097575006208,\"m\":\"ETH-USD\",\"S\":\"BUY\",\"tT\":\"TRADE\",\"T\":1777183481960,\"p\":\"2329.6\",\"q\":\"0.500\"},{\"i\":2048282097575006209,\"m\":\"ETH-USD\",\"S\":\"BUY\",\"tT\":\"TRADE\",\"T\":1777183481960,\"p\":\"2329.7\",\"q\":\"0.046\"},{\"i\":2048282097575006210,\"m\":\"ETH-USD\",\"S\":\"BUY\",\"tT\":\"TRADE\",\"T\":1777183481960,\"p\":\"2329.8\",\"q\":\"0.500\"},{\"i\":2048282097575006211,\"m\":\"ETH-USD\",\"S\":\"BUY\",\"tT\":\"TRADE\",\"T\":1777183481960,\"p\":\"2329.8\",\"q\":\"0.223\"},{\"i\":2048282097575006212,\"m\":\"ETH-USD\",\"S\":\"BUY\",\"tT\":\"TRADE\",\"T\":1777183481960,\"p\":\"2329.8\",\"q\":\"0.062\"},{\"i\":2048282099558912002,\"m\":\"ETH-USD\",\"S\":\"BUY\",\"tT\":\"TRADE\",\"T\":1777183482433,\"p\":\"2329.9\",\"q\":\"0.078\"},{\"i\":2048282099558912003,\"m\":\"ETH-USD\",\"S\":\"BUY\",\"tT\":\"TRADE\",\"T\":1777183482433,\"p\":\"2329.9\",\"q\":\"0.373\"},{\"i\":2048282132433866756,\"m\":\"ETH-USD\",\"S\":\"BUY\",\"tT\":\"TRADE\",\"T\":1777183490271,\"p\":\"2329.9\",\"q\":\"0.368\"},{\"i\":2048282132719079424,\"m\":\"ETH-USD\",\"S\":\"BUY\",\"tT\":\"TRADE\",\"T\":1777183490339,\"p\":\"2329.9\",\"q\":\"1.200\"},{\"i\":2048282175693918208,\"m\":\"ETH-USD\",\"S\":\"BUY\",\"tT\":\"TRADE\",\"T\":1777183500585,\"p\":\"2329.9\",\"q\":\"0.906\"},{\"i\":2048282176276926464,\"m\":\"ETH-USD\",\"S\":\"BUY\",\"tT\":\"TRADE\",\"T\":1777183500724,\"p\":\"2329.9\",\"q\":\"0.150\"},{\"i\":2048282177048678400,\"m\":\"ETH-USD\",\"S\":\"BUY\",\"tT\":\"TRADE\",\"T\":1777183500908,\"p\":\"2329.9\",\"q\":\"1.295\"},{\"i\":2048282177048678401,\"m\":\"ETH-USD\",\"S\":\"BUY\",\"tT\":\"TRADE\",\"T\":1777183500908,\"p\":\"2329.9\",\"q\":\"3.775\"},{\"i\":2048282177048678402,\"m\":\"ETH-USD\",\"S\":\"BUY\",\"tT\":\"TRADE\",\"T\":1777183500908,\"p\":\"2329.9\",\"q\":\"0.030\"},{\"i\":2048282177048678403,\"m\":\"ETH-USD\",\"S\":\"BUY\",\"tT\":\"TRADE\",\"T\":1777183500908,\"p\":\"2329.9\",\"q\":\"0.032\"},{\"i\":2048282190487228416,\"m\":\"ETH-USD\",\"S\":\"BUY\",\"tT\":\"TRADE\",\"T\":1777183504112,\"p\":\"2330.0\",\"q\":\"0.113\"},{\"i\":2048282212599599106,\"m\":\"ETH-USD\",\"S\":\"BUY\",\"tT\":\"TRADE\",\"T\":1777183509384,\"p\":\"2330.0\",\"q\":\"0.387\"},{\"i\":2048282212872228864,\"m\":\"ETH-USD\",\"S\":\"BUY\",\"tT\":\"TRADE\",\"T\":1777183509449,\"p\":\"2330.1\",\"q\":\"0.493\"}]}'"
|
|
]
|
|
},
|
|
"execution_count": 26,
|
|
"metadata": {},
|
|
"output_type": "execute_result"
|
|
}
|
|
],
|
|
"source": [
|
|
"r.text"
|
|
]
|
|
},
|
|
{
|
|
"cell_type": "code",
|
|
"execution_count": 7,
|
|
"id": "e61dca73",
|
|
"metadata": {},
|
|
"outputs": [],
|
|
"source": [
|
|
"d = [d for d in j if d.get('symbol', None) == 'ETHUSDT'][0]"
|
|
]
|
|
},
|
|
{
|
|
"cell_type": "code",
|
|
"execution_count": null,
|
|
"metadata": {},
|
|
"outputs": [],
|
|
"source": []
|
|
},
|
|
{
|
|
"cell_type": "code",
|
|
"execution_count": 54,
|
|
"id": "80b9c0e5",
|
|
"metadata": {},
|
|
"outputs": [
|
|
{
|
|
"data": {
|
|
"text/plain": [
|
|
"-499.15475000000004"
|
|
]
|
|
},
|
|
"execution_count": 54,
|
|
"metadata": {},
|
|
"output_type": "execute_result"
|
|
}
|
|
],
|
|
"source": [
|
|
"float(d['notional'])-float(d['unRealizedProfit'])"
|
|
]
|
|
},
|
|
{
|
|
"cell_type": "code",
|
|
"execution_count": 62,
|
|
"metadata": {},
|
|
"outputs": [],
|
|
"source": [
|
|
"from datetime import datetime\n",
|
|
"t = round(datetime.now().timestamp()*1000)"
|
|
]
|
|
},
|
|
{
|
|
"cell_type": "code",
|
|
"execution_count": 64,
|
|
"id": "ebded6ad",
|
|
"metadata": {},
|
|
"outputs": [
|
|
{
|
|
"data": {
|
|
"text/plain": [
|
|
"Timestamp('2026-04-23 23:17:32.516000')"
|
|
]
|
|
},
|
|
"execution_count": 64,
|
|
"metadata": {},
|
|
"output_type": "execute_result"
|
|
}
|
|
],
|
|
"source": [
|
|
"import pandas as pd\n",
|
|
"pd.to_datetime(t, unit='ms')"
|
|
]
|
|
},
|
|
{
|
|
"cell_type": "code",
|
|
"execution_count": null,
|
|
"metadata": {},
|
|
"outputs": [],
|
|
"source": []
|
|
},
|
|
{
|
|
"cell_type": "code",
|
|
"execution_count": null,
|
|
"id": "67a3bbb2",
|
|
"metadata": {},
|
|
"outputs": [],
|
|
"source": []
|
|
},
|
|
{
|
|
"cell_type": "code",
|
|
"execution_count": 23,
|
|
"id": "e958e7da",
|
|
"metadata": {},
|
|
"outputs": [],
|
|
"source": [
|
|
"import json\n",
|
|
"\n",
|
|
"### User Data Stream ###\n",
|
|
"# After posting limit order to rest\n",
|
|
"after_order_post = json.loads('{\"e\":\"ORDER_TRADE_UPDATE\",\"T\":1776836992350,\"E\":1776836992388,\"o\":{\"s\":\"ETHUSDT\",\"c\":\"KFi375tZh5kzHsQJWKMJHe\",\"S\":\"BUY\",\"o\":\"LIMIT\",\"f\":\"GTC\",\"q\":\"0.010\",\"p\":\"2100\",\"ap\":\"0\",\"sp\":\"0\",\"x\":\"NEW\",\"X\":\"NEW\",\"i\":17341121450,\"l\":\"0\",\"z\":\"0\",\"L\":\"0\",\"T\":1776836992350,\"t\":0,\"b\":\"21\",\"a\":\"0\",\"m\":false,\"R\":false,\"wt\":\"CONTRACT_PRICE\",\"ot\":\"LIMIT\",\"ps\":\"BOTH\",\"cp\":false,\"rp\":\"0\",\"pP\":false,\"si\":0,\"ss\":0,\"h\":\"0xeec41a368072d5a47c13b3ad83703eded2e2b8cf9ff427095beb8b7684968db0\"}}')\n",
|
|
"\n",
|
|
"# After order cancellation in GUI\n",
|
|
"after_order_cxl = json.loads('{\"e\":\"ORDER_TRADE_UPDATE\",\"T\":1776836998500,\"E\":1776836998533,\"o\":{\"s\":\"ETHUSDT\",\"c\":\"KFi375tZh5kzHsQJWKMJHe\",\"S\":\"BUY\",\"o\":\"LIMIT\",\"f\":\"GTC\",\"q\":\"0.010\",\"p\":\"2100\",\"ap\":\"0\",\"sp\":\"0\",\"x\":\"CANCELED\",\"X\":\"CANCELED\",\"i\":17341121450,\"l\":\"0\",\"z\":\"0\",\"L\":\"0\",\"T\":1776836998500,\"t\":0,\"b\":\"0\",\"a\":\"0\",\"m\":false,\"R\":false,\"wt\":\"CONTRACT_PRICE\",\"ot\":\"LIMIT\",\"ps\":\"BOTH\",\"cp\":false,\"rp\":\"0\",\"pP\":false,\"si\":0,\"ss\":0,\"h\":\"0x116bb48a4b41420aebbc76343d6f55f22d1ccbc36b04462e6172571fda836599\"}}')\n",
|
|
"\n"
|
|
]
|
|
},
|
|
{
|
|
"cell_type": "code",
|
|
"execution_count": 24,
|
|
"metadata": {},
|
|
"outputs": [
|
|
{
|
|
"data": {
|
|
"text/plain": [
|
|
"{'e': 'ORDER_TRADE_UPDATE',\n",
|
|
" 'T': 1776836992350,\n",
|
|
" 'E': 1776836992388,\n",
|
|
" 'o': {'s': 'ETHUSDT',\n",
|
|
" 'c': 'KFi375tZh5kzHsQJWKMJHe',\n",
|
|
" 'S': 'BUY',\n",
|
|
" 'o': 'LIMIT',\n",
|
|
" 'f': 'GTC',\n",
|
|
" 'q': '0.010',\n",
|
|
" 'p': '2100',\n",
|
|
" 'ap': '0',\n",
|
|
" 'sp': '0',\n",
|
|
" 'x': 'NEW',\n",
|
|
" 'X': 'NEW',\n",
|
|
" 'i': 17341121450,\n",
|
|
" 'l': '0',\n",
|
|
" 'z': '0',\n",
|
|
" 'L': '0',\n",
|
|
" 'T': 1776836992350,\n",
|
|
" 't': 0,\n",
|
|
" 'b': '21',\n",
|
|
" 'a': '0',\n",
|
|
" 'm': False,\n",
|
|
" 'R': False,\n",
|
|
" 'wt': 'CONTRACT_PRICE',\n",
|
|
" 'ot': 'LIMIT',\n",
|
|
" 'ps': 'BOTH',\n",
|
|
" 'cp': False,\n",
|
|
" 'rp': '0',\n",
|
|
" 'pP': False,\n",
|
|
" 'si': 0,\n",
|
|
" 'ss': 0,\n",
|
|
" 'h': '0xeec41a368072d5a47c13b3ad83703eded2e2b8cf9ff427095beb8b7684968db0'}}"
|
|
]
|
|
},
|
|
"execution_count": 24,
|
|
"metadata": {},
|
|
"output_type": "execute_result"
|
|
}
|
|
],
|
|
"source": [
|
|
"after_order_post"
|
|
]
|
|
},
|
|
{
|
|
"cell_type": "code",
|
|
"execution_count": 25,
|
|
"id": "1ea320f2",
|
|
"metadata": {},
|
|
"outputs": [
|
|
{
|
|
"data": {
|
|
"text/plain": [
|
|
"{'e': 'ORDER_TRADE_UPDATE',\n",
|
|
" 'T': 1776836998500,\n",
|
|
" 'E': 1776836998533,\n",
|
|
" 'o': {'s': 'ETHUSDT',\n",
|
|
" 'c': 'KFi375tZh5kzHsQJWKMJHe',\n",
|
|
" 'S': 'BUY',\n",
|
|
" 'o': 'LIMIT',\n",
|
|
" 'f': 'GTC',\n",
|
|
" 'q': '0.010',\n",
|
|
" 'p': '2100',\n",
|
|
" 'ap': '0',\n",
|
|
" 'sp': '0',\n",
|
|
" 'x': 'CANCELED',\n",
|
|
" 'X': 'CANCELED',\n",
|
|
" 'i': 17341121450,\n",
|
|
" 'l': '0',\n",
|
|
" 'z': '0',\n",
|
|
" 'L': '0',\n",
|
|
" 'T': 1776836998500,\n",
|
|
" 't': 0,\n",
|
|
" 'b': '0',\n",
|
|
" 'a': '0',\n",
|
|
" 'm': False,\n",
|
|
" 'R': False,\n",
|
|
" 'wt': 'CONTRACT_PRICE',\n",
|
|
" 'ot': 'LIMIT',\n",
|
|
" 'ps': 'BOTH',\n",
|
|
" 'cp': False,\n",
|
|
" 'rp': '0',\n",
|
|
" 'pP': False,\n",
|
|
" 'si': 0,\n",
|
|
" 'ss': 0,\n",
|
|
" 'h': '0x116bb48a4b41420aebbc76343d6f55f22d1ccbc36b04462e6172571fda836599'}}"
|
|
]
|
|
},
|
|
"execution_count": 25,
|
|
"metadata": {},
|
|
"output_type": "execute_result"
|
|
}
|
|
],
|
|
"source": [
|
|
"after_order_cxl"
|
|
]
|
|
},
|
|
{
|
|
"cell_type": "code",
|
|
"execution_count": 26,
|
|
"id": "07ef4360",
|
|
"metadata": {},
|
|
"outputs": [
|
|
{
|
|
"data": {
|
|
"text/plain": [
|
|
"Timestamp('2019-09-19 07:51:05.651000')"
|
|
]
|
|
},
|
|
"execution_count": 26,
|
|
"metadata": {},
|
|
"output_type": "execute_result"
|
|
}
|
|
],
|
|
"source": [
|
|
"import pandas as pd\n",
|
|
"\n",
|
|
"pd.to_datetime(1568879465651, unit='ms')"
|
|
]
|
|
},
|
|
{
|
|
"cell_type": "code",
|
|
"execution_count": 2,
|
|
"metadata": {},
|
|
"outputs": [
|
|
{
|
|
"data": {
|
|
"text/plain": [
|
|
"{'ok': True,\n",
|
|
" 'result': {'message_id': 24,\n",
|
|
" 'sender_chat': {'id': -1003864341457,\n",
|
|
" 'title': 'Atwater_Alert',\n",
|
|
" 'type': 'channel'},\n",
|
|
" 'chat': {'id': -1003864341457, 'title': 'Atwater_Alert', 'type': 'channel'},\n",
|
|
" 'date': 1777009128,\n",
|
|
" 'text': 'alert!'}}"
|
|
]
|
|
},
|
|
"execution_count": 2,
|
|
"metadata": {},
|
|
"output_type": "execute_result"
|
|
}
|
|
],
|
|
"source": [
|
|
"import modules.utils as utils\n",
|
|
"\n",
|
|
"utils.send_tg_alert('alert!')"
|
|
]
|
|
},
|
|
{
|
|
"cell_type": "code",
|
|
"execution_count": 2,
|
|
"id": "284b7266",
|
|
"metadata": {},
|
|
"outputs": [
|
|
{
|
|
"data": {
|
|
"text/plain": [
|
|
"'sd'"
|
|
]
|
|
},
|
|
"execution_count": 2,
|
|
"metadata": {},
|
|
"output_type": "execute_result"
|
|
}
|
|
],
|
|
"source": [
|
|
"\"sdfsdfsfdsdfs\"[:2]"
|
|
]
|
|
},
|
|
{
|
|
"cell_type": "code",
|
|
"execution_count": 11,
|
|
"id": "98ed3a27",
|
|
"metadata": {},
|
|
"outputs": [],
|
|
"source": [
|
|
"from dataclasses import dataclass\n",
|
|
"\n",
|
|
"@dataclass(kw_only=True)\n",
|
|
"class Flags:\n",
|
|
" LIQUIDATE_POS_AND_KILL_ALGO_FLAG: bool = False\n",
|
|
" NET_FUNDING_IS_ZERO: bool = False\n",
|
|
" # list = field(init=False) \n",
|
|
"Flags = Flags()"
|
|
]
|
|
},
|
|
{
|
|
"cell_type": "code",
|
|
"execution_count": 12,
|
|
"id": "73a525c2",
|
|
"metadata": {},
|
|
"outputs": [
|
|
{
|
|
"data": {
|
|
"text/plain": [
|
|
"Flags(LIQUIDATE_POS_AND_KILL_ALGO_FLAG=False, NET_FUNDING_IS_ZERO=False)"
|
|
]
|
|
},
|
|
"execution_count": 12,
|
|
"metadata": {},
|
|
"output_type": "execute_result"
|
|
}
|
|
],
|
|
"source": [
|
|
"Flags"
|
|
]
|
|
},
|
|
{
|
|
"cell_type": "code",
|
|
"execution_count": null,
|
|
"metadata": {},
|
|
"outputs": [],
|
|
"source": []
|
|
},
|
|
{
|
|
"cell_type": "code",
|
|
"execution_count": null,
|
|
"id": "094e374c",
|
|
"metadata": {},
|
|
"outputs": [],
|
|
"source": []
|
|
},
|
|
{
|
|
"cell_type": "code",
|
|
"execution_count": null,
|
|
"id": "15c3bcef",
|
|
"metadata": {},
|
|
"outputs": [],
|
|
"source": []
|
|
},
|
|
{
|
|
"cell_type": "code",
|
|
"execution_count": null,
|
|
"id": "940ceba7",
|
|
"metadata": {},
|
|
"outputs": [],
|
|
"source": []
|
|
}
|
|
],
|
|
"metadata": {
|
|
"kernelspec": {
|
|
"display_name": "py_313",
|
|
"language": "python",
|
|
"name": "python3"
|
|
},
|
|
"language_info": {
|
|
"codemirror_mode": {
|
|
"name": "ipython",
|
|
"version": 3
|
|
},
|
|
"file_extension": ".py",
|
|
"mimetype": "text/x-python",
|
|
"name": "python",
|
|
"nbconvert_exporter": "python",
|
|
"pygments_lexer": "ipython3",
|
|
"version": "3.13.13"
|
|
}
|
|
},
|
|
"nbformat": 4,
|
|
"nbformat_minor": 5
|
|
}
|