Files
Funding_Rate/aster.ipynb
2026-05-04 18:04:45 +00:00

8637 lines
302 KiB
Plaintext
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

{
"cells": [
{
"cell_type": "code",
"execution_count": 4,
"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': 'WLFIUSDT',\n",
" }\n",
"}\n",
"fut_acct_exchangeInfo = {\n",
" \"url\": \"/fapi/v3/exchangeInfo\",\n",
" \"method\": \"GET\",\n",
" \"params\": {}\n",
"}\n",
"commission_rate = {\n",
" \"url\": \"/fapi/v3/commissionRate\",\n",
" \"method\": \"GET\",\n",
" \"params\": {\n",
" 'symbol': 'ETHUSDT',\n",
" }\n",
"}\n",
"candles = {\n",
" \"url\": \"/fapi/v3/klines\",\n",
" \"method\": \"GET\",\n",
" \"params\": {\n",
" 'symbol': 'BTCUSDT',\n",
" 'interval': '1m',\n",
" 'limit':'1440'\n",
" }\n",
"}\n",
"post_order = {\n",
" \"url\": \"/fapi/v3/order\",\n",
" \"method\": \"POST\",\n",
" \"params\": {\n",
" 'symbol': 'BNBUSDT',\n",
" 'side': 'SELL',\n",
" 'type': 'LIMIT',\n",
" 'timeInForce': 'GTX',\n",
" 'quantity': '0.01',\n",
" 'price': '620.1',\n",
" 'reduce_only': True,\n",
" }\n",
"}"
]
},
{
"cell_type": "code",
"execution_count": 8,
"id": "2122885a",
"metadata": {},
"outputs": [
{
"ename": "KeyError",
"evalue": "'params'",
"output_type": "error",
"traceback": [
"\u001b[31m---------------------------------------------------------------------------\u001b[39m",
"\u001b[31mKeyError\u001b[39m Traceback (most recent call last)",
"\u001b[36mCell\u001b[39m\u001b[36m \u001b[39m\u001b[32mIn[8]\u001b[39m\u001b[32m, line 1\u001b[39m\n\u001b[32m----> \u001b[39m\u001b[32m1\u001b[39m j = \u001b[38;5;28;01mawait\u001b[39;00m aster_auth.post_authenticated_url(fut_acct_positionRisk)\n",
"\u001b[36mFile \u001b[39m\u001b[32m~/Production/Funding_Rate/modules/aster_auth.py:106\u001b[39m, in \u001b[36mpost_authenticated_url\u001b[39m\u001b[34m(req)\u001b[39m\n\u001b[32m 103\u001b[39m res: requests.Response = requests.delete(url=full_url, headers=headers)\n\u001b[32m 104\u001b[39m \u001b[38;5;28;01mreturn\u001b[39;00m res.json()\n\u001b[32m--> \u001b[39m\u001b[32m106\u001b[39m \u001b[38;5;28;01mreturn\u001b[39;00m \u001b[38;5;28;01mawait\u001b[39;00m send_by_url(req=req)\n",
"\u001b[36mFile \u001b[39m\u001b[32m~/Production/Funding_Rate/modules/aster_auth.py:77\u001b[39m, in \u001b[36mpost_authenticated_url.<locals>.send_by_url\u001b[39m\u001b[34m(req)\u001b[39m\n\u001b[32m 76\u001b[39m \u001b[38;5;28;01masync\u001b[39;00m \u001b[38;5;28;01mdef\u001b[39;00m\u001b[38;5;250m \u001b[39m\u001b[34msend_by_url\u001b[39m(req) -> \u001b[38;5;28mlist\u001b[39m | \u001b[38;5;28mdict\u001b[39m: \u001b[38;5;66;03m# ty:ignore[invalid-return-type]\u001b[39;00m\n\u001b[32m---> \u001b[39m\u001b[32m77\u001b[39m my_dict = \u001b[30;43mreq\u001b[39;49m\u001b[30;43m[\u001b[39;49m\u001b[30;43m'\u001b[39;49m\u001b[30;43mparams\u001b[39;49m\u001b[30;43m'\u001b[39;49m\u001b[30;43m]\u001b[39;49m.copy()\n\u001b[32m 78\u001b[39m url = host + req[\u001b[33m'\u001b[39m\u001b[33murl\u001b[39m\u001b[33m'\u001b[39m]\n\u001b[32m 79\u001b[39m method = req[\u001b[33m'\u001b[39m\u001b[33mmethod\u001b[39m\u001b[33m'\u001b[39m]\n",
"\u001b[31mKeyError\u001b[39m: 'params'"
]
}
],
"source": [
"j = await aster_auth.post_authenticated_url(fut_acct_positionRisk)"
]
},
{
"cell_type": "code",
"execution_count": null,
"id": "e7341726",
"metadata": {},
"outputs": [],
"source": []
},
{
"cell_type": "code",
"execution_count": null,
"id": "f75ddbb7",
"metadata": {},
"outputs": [],
"source": []
},
{
"cell_type": "code",
"execution_count": 1,
"id": "e845a43d",
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"False"
]
},
"execution_count": 1,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"bool(0)"
]
},
{
"cell_type": "code",
"execution_count": 34,
"id": "43b3d4b5",
"metadata": {},
"outputs": [],
"source": [
"import pandas as pd\n",
"df = pd.DataFrame(j)"
]
},
{
"cell_type": "code",
"execution_count": 35,
"id": "8d83fed3",
"metadata": {},
"outputs": [],
"source": [
"df['timestamp_dt'] = pd.to_datetime(df[0], unit='ms')"
]
},
{
"cell_type": "code",
"execution_count": 36,
"id": "f84a9233",
"metadata": {},
"outputs": [
{
"data": {
"application/vnd.microsoft.datawrangler.viewer.v0+json": {
"columns": [
{
"name": "index",
"rawType": "int64",
"type": "integer"
},
{
"name": "0",
"rawType": "int64",
"type": "integer"
},
{
"name": "1",
"rawType": "str",
"type": "string"
},
{
"name": "2",
"rawType": "str",
"type": "string"
},
{
"name": "3",
"rawType": "str",
"type": "string"
},
{
"name": "4",
"rawType": "str",
"type": "string"
},
{
"name": "5",
"rawType": "str",
"type": "string"
},
{
"name": "6",
"rawType": "int64",
"type": "integer"
},
{
"name": "7",
"rawType": "str",
"type": "string"
},
{
"name": "8",
"rawType": "int64",
"type": "integer"
},
{
"name": "9",
"rawType": "str",
"type": "string"
},
{
"name": "10",
"rawType": "str",
"type": "string"
},
{
"name": "11",
"rawType": "str",
"type": "string"
},
{
"name": "timestamp_dt",
"rawType": "datetime64[ms]",
"type": "datetime"
}
],
"ref": "42a1079a-baaf-4fb5-914f-24d61e5df137",
"rows": [
[
"1439",
"1777827360000",
"78655.2",
"78655.2",
"78655.2",
"78655.2",
"0.007",
"1777827419999",
"550.5864",
"2",
"0.005",
"393.2760",
"0",
"2026-05-03 16:56:00"
],
[
"1438",
"1777827300000",
"78659.5",
"78659.6",
"78659.5",
"78659.5",
"0.356",
"1777827359999",
"28002.8080",
"35",
"0.185",
"14552.0254",
"0",
"2026-05-03 16:55:00"
],
[
"1437",
"1777827240000",
"78664.7",
"78664.7",
"78658.5",
"78659.5",
"0.445",
"1777827299999",
"35004.6537",
"35",
"0.123",
"9675.2159",
"0",
"2026-05-03 16:54:00"
],
[
"1436",
"1777827180000",
"78658.6",
"78669.5",
"78658.6",
"78664.7",
"0.384",
"1777827239999",
"30208.1977",
"38",
"0.153",
"12036.0195",
"0",
"2026-05-03 16:53:00"
],
[
"1435",
"1777827120000",
"78669.2",
"78673.0",
"78658.6",
"78658.6",
"0.535",
"1777827179999",
"42087.5276",
"34",
"0.250",
"19667.0352",
"0",
"2026-05-03 16:52:00"
],
[
"1434",
"1777827060000",
"78679.9",
"78686.9",
"78669.2",
"78669.2",
"0.681",
"1777827119999",
"53581.0840",
"35",
"0.365",
"28718.0563",
"0",
"2026-05-03 16:51:00"
],
[
"1433",
"1777827000000",
"78665.4",
"78692.8",
"78665.4",
"78679.9",
"5.968",
"1777827059999",
"469622.2121",
"41",
"0.520",
"40911.3741",
"0",
"2026-05-03 16:50:00"
],
[
"1432",
"1777826940000",
"78670.2",
"78670.2",
"78665.4",
"78665.4",
"0.424",
"1777826999999",
"33355.3920",
"31",
"0.203",
"15969.7338",
"0",
"2026-05-03 16:49:00"
],
[
"1431",
"1777826880000",
"78698.1",
"78698.1",
"78670.2",
"78670.2",
"0.598",
"1777826939999",
"47048.7881",
"33",
"0.276",
"21714.6928",
"0",
"2026-05-03 16:48:00"
],
[
"1430",
"1777826820000",
"78682.8",
"78698.1",
"78682.7",
"78698.1",
"0.381",
"1777826879999",
"29982.2536",
"35",
"0.270",
"21247.5953",
"0",
"2026-05-03 16:47:00"
],
[
"1429",
"1777826760000",
"78682.7",
"78682.8",
"78682.7",
"78682.8",
"0.401",
"1777826819999",
"31551.7656",
"35",
"0.209",
"16444.6868",
"0",
"2026-05-03 16:46:00"
],
[
"1428",
"1777826700000",
"78689.1",
"78689.1",
"78682.7",
"78682.7",
"0.547",
"1777826759999",
"43041.8153",
"36",
"0.201",
"15815.9459",
"0",
"2026-05-03 16:45:00"
],
[
"1427",
"1777826640000",
"78675.0",
"78689.2",
"78675.0",
"78689.1",
"6.580",
"1777826699999",
"517741.8476",
"53",
"6.071",
"477693.9699",
"0",
"2026-05-03 16:44:00"
],
[
"1426",
"1777826580000",
"78677.5",
"78688.2",
"78674.7",
"78675.0",
"0.700",
"1777826639999",
"55076.6136",
"37",
"0.312",
"24548.1927",
"0",
"2026-05-03 16:43:00"
],
[
"1425",
"1777826520000",
"78682.4",
"78698.6",
"78677.5",
"78677.5",
"0.565",
"1777826579999",
"44459.7070",
"34",
"0.216",
"16997.1015",
"0",
"2026-05-03 16:42:00"
],
[
"1424",
"1777826460000",
"78675.6",
"78680.5",
"78675.6",
"78680.5",
"0.923",
"1777826519999",
"72618.6685",
"38",
"0.794",
"62469.1823",
"0",
"2026-05-03 16:41:00"
],
[
"1423",
"1777826400000",
"78687.4",
"78687.4",
"78675.6",
"78675.6",
"0.444",
"1777826459999",
"34933.4226",
"35",
"0.202",
"15893.2144",
"0",
"2026-05-03 16:40:00"
],
[
"1422",
"1777826340000",
"78665.4",
"78703.5",
"78665.4",
"78687.4",
"1.217",
"1777826399999",
"95767.3246",
"40",
"0.598",
"47056.2822",
"0",
"2026-05-03 16:39:00"
],
[
"1421",
"1777826280000",
"78691.6",
"78691.6",
"78665.4",
"78665.4",
"1.201",
"1777826339999",
"94500.2138",
"40",
"0.273",
"21479.4071",
"0",
"2026-05-03 16:38:00"
],
[
"1420",
"1777826220000",
"78695.6",
"78701.4",
"78691.6",
"78691.6",
"1.154",
"1777826279999",
"90816.8901",
"44",
"0.248",
"19516.5367",
"0",
"2026-05-03 16:37:00"
],
[
"1419",
"1777826160000",
"78704.1",
"78706.7",
"78695.6",
"78695.6",
"4.782",
"1777826219999",
"376369.7663",
"45",
"0.453",
"35651.5124",
"0",
"2026-05-03 16:36:00"
],
[
"1418",
"1777826100000",
"78697.1",
"78740.0",
"78697.1",
"78704.1",
"2.581",
"1777826159999",
"203148.2817",
"61",
"1.453",
"114364.5799",
"0",
"2026-05-03 16:35:00"
],
[
"1417",
"1777826040000",
"78665.1",
"78697.1",
"78659.6",
"78697.1",
"1.004",
"1777826099999",
"78985.8906",
"56",
"0.545",
"42876.9708",
"0",
"2026-05-03 16:34:00"
],
[
"1416",
"1777825980000",
"78656.0",
"78665.1",
"78656.0",
"78665.1",
"0.919",
"1777826039999",
"72289.1402",
"47",
"0.547",
"43027.1362",
"0",
"2026-05-03 16:33:00"
],
[
"1415",
"1777825920000",
"78638.0",
"78665.2",
"78638.0",
"78656.0",
"0.366",
"1777825979999",
"28785.1104",
"40",
"0.203",
"15966.0459",
"0",
"2026-05-03 16:32:00"
],
[
"1414",
"1777825860000",
"78631.9",
"78638.0",
"78628.5",
"78638.0",
"1.613",
"1777825919999",
"126840.8412",
"44",
"0.236",
"18557.6650",
"0",
"2026-05-03 16:31:00"
],
[
"1413",
"1777825800000",
"78622.2",
"78649.4",
"78622.2",
"78632.0",
"0.516",
"1777825859999",
"40575.5615",
"47",
"0.308",
"24219.0358",
"0",
"2026-05-03 16:30:00"
],
[
"1412",
"1777825740000",
"78618.0",
"78622.2",
"78618.0",
"78622.2",
"0.264",
"1777825799999",
"20755.7367",
"32",
"0.130",
"10220.6181",
"0",
"2026-05-03 16:29:00"
],
[
"1411",
"1777825680000",
"78618.0",
"78618.0",
"78618.0",
"78618.0",
"0.300",
"1777825739999",
"23585.4000",
"31",
"0.151",
"11871.3180",
"0",
"2026-05-03 16:28:00"
],
[
"1410",
"1777825620000",
"78616.1",
"78623.5",
"78616.1",
"78618.1",
"0.665",
"1777825679999",
"52281.5492",
"35",
"0.386",
"30346.7973",
"0",
"2026-05-03 16:27:00"
],
[
"1409",
"1777825560000",
"78622.9",
"78622.9",
"78616.1",
"78616.1",
"0.823",
"1777825619999",
"64705.8171",
"35",
"0.270",
"21227.7818",
"0",
"2026-05-03 16:26:00"
],
[
"1408",
"1777825500000",
"78617.7",
"78627.7",
"78617.7",
"78622.9",
"1.339",
"1777825559999",
"105274.4886",
"40",
"0.703",
"55270.8475",
"0",
"2026-05-03 16:25:00"
],
[
"1407",
"1777825440000",
"78608.2",
"78617.7",
"78601.9",
"78617.7",
"0.738",
"1777825499999",
"58011.2757",
"34",
"0.390",
"30656.4921",
"0",
"2026-05-03 16:24:00"
],
[
"1406",
"1777825380000",
"78586.0",
"78608.2",
"78586.0",
"78608.2",
"1.179",
"1777825439999",
"92661.6474",
"36",
"0.598",
"46998.8807",
"0",
"2026-05-03 16:23:00"
],
[
"1405",
"1777825320000",
"78567.3",
"78587.6",
"78567.3",
"78586.0",
"0.734",
"1777825379999",
"57675.4662",
"35",
"0.364",
"28601.8867",
"0",
"2026-05-03 16:22:00"
],
[
"1404",
"1777825260000",
"78559.1",
"78567.3",
"78559.1",
"78567.3",
"1.908",
"1777825319999",
"149899.4372",
"34",
"0.943",
"74085.3411",
"0",
"2026-05-03 16:21:00"
],
[
"1403",
"1777825200000",
"78583.6",
"78583.6",
"78556.3",
"78559.1",
"3.661",
"1777825259999",
"287602.4231",
"44",
"2.278",
"178955.2267",
"0",
"2026-05-03 16:20:00"
],
[
"1402",
"1777825140000",
"78608.2",
"78608.2",
"78583.2",
"78583.6",
"0.751",
"1777825199999",
"59024.3246",
"35",
"0.364",
"28608.3924",
"0",
"2026-05-03 16:19:00"
],
[
"1401",
"1777825080000",
"78608.1",
"78608.2",
"78608.1",
"78608.2",
"2.652",
"1777825139999",
"208468.7637",
"33",
"1.396",
"109736.9495",
"0",
"2026-05-03 16:18:00"
],
[
"1400",
"1777825020000",
"78570.4",
"78608.1",
"78570.4",
"78608.1",
"2.192",
"1777825079999",
"172278.2056",
"44",
"1.055",
"82915.6782",
"0",
"2026-05-03 16:17:00"
],
[
"1399",
"1777824960000",
"78571.4",
"78571.4",
"78570.4",
"78570.4",
"1.565",
"1777825019999",
"122963.7660",
"30",
"0.739",
"58064.0196",
"0",
"2026-05-03 16:16:00"
],
[
"1398",
"1777824900000",
"78584.1",
"78584.1",
"78571.4",
"78571.4",
"2.520",
"1777824959999",
"198004.9463",
"39",
"0.934",
"73386.6212",
"0",
"2026-05-03 16:15:00"
],
[
"1397",
"1777824840000",
"78584.1",
"78584.1",
"78584.1",
"78584.1",
"0.601",
"1777824899999",
"47229.0441",
"34",
"0.260",
"20431.8660",
"0",
"2026-05-03 16:14:00"
],
[
"1396",
"1777824780000",
"78584.1",
"78584.1",
"78584.1",
"78584.1",
"0.545",
"1777824839999",
"42828.3345",
"30",
"0.281",
"22082.1321",
"0",
"2026-05-03 16:13:00"
],
[
"1395",
"1777824720000",
"78586.2",
"78586.2",
"78584.1",
"78584.1",
"1.017",
"1777824779999",
"79921.3799",
"33",
"0.510",
"40078.5840",
"0",
"2026-05-03 16:12:00"
],
[
"1394",
"1777824660000",
"78586.1",
"78586.2",
"78586.1",
"78586.2",
"1.657",
"1777824719999",
"130217.2576",
"31",
"0.913",
"71749.1576",
"0",
"2026-05-03 16:11:00"
],
[
"1393",
"1777824600000",
"78592.2",
"78592.2",
"78570.5",
"78586.1",
"4.649",
"1777824659999",
"365325.0743",
"41",
"2.455",
"192915.4123",
"0",
"2026-05-03 16:10:00"
],
[
"1392",
"1777824540000",
"78579.2",
"78592.2",
"78574.4",
"78592.2",
"2.628",
"1777824599999",
"206518.4075",
"43",
"1.442",
"113318.1486",
"0",
"2026-05-03 16:09:00"
],
[
"1391",
"1777824480000",
"78593.9",
"78593.9",
"78579.1",
"78579.2",
"4.747",
"1777824539999",
"373028.5119",
"47",
"2.451",
"192606.7265",
"0",
"2026-05-03 16:08:00"
],
[
"1390",
"1777824420000",
"78618.7",
"78618.8",
"78590.4",
"78590.4",
"1.617",
"1777824479999",
"127104.3786",
"39",
"0.794",
"62413.4009",
"0",
"2026-05-03 16:07:00"
]
],
"shape": {
"columns": 13,
"rows": 1440
}
},
"text/html": [
"<div>\n",
"<style scoped>\n",
" .dataframe tbody tr th:only-of-type {\n",
" vertical-align: middle;\n",
" }\n",
"\n",
" .dataframe tbody tr th {\n",
" vertical-align: top;\n",
" }\n",
"\n",
" .dataframe thead th {\n",
" text-align: right;\n",
" }\n",
"</style>\n",
"<table border=\"1\" class=\"dataframe\">\n",
" <thead>\n",
" <tr style=\"text-align: right;\">\n",
" <th></th>\n",
" <th>0</th>\n",
" <th>1</th>\n",
" <th>2</th>\n",
" <th>3</th>\n",
" <th>4</th>\n",
" <th>5</th>\n",
" <th>6</th>\n",
" <th>7</th>\n",
" <th>8</th>\n",
" <th>9</th>\n",
" <th>10</th>\n",
" <th>11</th>\n",
" <th>timestamp_dt</th>\n",
" </tr>\n",
" </thead>\n",
" <tbody>\n",
" <tr>\n",
" <th>1439</th>\n",
" <td>1777827360000</td>\n",
" <td>78655.2</td>\n",
" <td>78655.2</td>\n",
" <td>78655.2</td>\n",
" <td>78655.2</td>\n",
" <td>0.007</td>\n",
" <td>1777827419999</td>\n",
" <td>550.5864</td>\n",
" <td>2</td>\n",
" <td>0.005</td>\n",
" <td>393.2760</td>\n",
" <td>0</td>\n",
" <td>2026-05-03 16:56:00</td>\n",
" </tr>\n",
" <tr>\n",
" <th>1438</th>\n",
" <td>1777827300000</td>\n",
" <td>78659.5</td>\n",
" <td>78659.6</td>\n",
" <td>78659.5</td>\n",
" <td>78659.5</td>\n",
" <td>0.356</td>\n",
" <td>1777827359999</td>\n",
" <td>28002.8080</td>\n",
" <td>35</td>\n",
" <td>0.185</td>\n",
" <td>14552.0254</td>\n",
" <td>0</td>\n",
" <td>2026-05-03 16:55:00</td>\n",
" </tr>\n",
" <tr>\n",
" <th>1437</th>\n",
" <td>1777827240000</td>\n",
" <td>78664.7</td>\n",
" <td>78664.7</td>\n",
" <td>78658.5</td>\n",
" <td>78659.5</td>\n",
" <td>0.445</td>\n",
" <td>1777827299999</td>\n",
" <td>35004.6537</td>\n",
" <td>35</td>\n",
" <td>0.123</td>\n",
" <td>9675.2159</td>\n",
" <td>0</td>\n",
" <td>2026-05-03 16:54:00</td>\n",
" </tr>\n",
" <tr>\n",
" <th>1436</th>\n",
" <td>1777827180000</td>\n",
" <td>78658.6</td>\n",
" <td>78669.5</td>\n",
" <td>78658.6</td>\n",
" <td>78664.7</td>\n",
" <td>0.384</td>\n",
" <td>1777827239999</td>\n",
" <td>30208.1977</td>\n",
" <td>38</td>\n",
" <td>0.153</td>\n",
" <td>12036.0195</td>\n",
" <td>0</td>\n",
" <td>2026-05-03 16:53:00</td>\n",
" </tr>\n",
" <tr>\n",
" <th>1435</th>\n",
" <td>1777827120000</td>\n",
" <td>78669.2</td>\n",
" <td>78673.0</td>\n",
" <td>78658.6</td>\n",
" <td>78658.6</td>\n",
" <td>0.535</td>\n",
" <td>1777827179999</td>\n",
" <td>42087.5276</td>\n",
" <td>34</td>\n",
" <td>0.250</td>\n",
" <td>19667.0352</td>\n",
" <td>0</td>\n",
" <td>2026-05-03 16:52:00</td>\n",
" </tr>\n",
" <tr>\n",
" <th>...</th>\n",
" <td>...</td>\n",
" <td>...</td>\n",
" <td>...</td>\n",
" <td>...</td>\n",
" <td>...</td>\n",
" <td>...</td>\n",
" <td>...</td>\n",
" <td>...</td>\n",
" <td>...</td>\n",
" <td>...</td>\n",
" <td>...</td>\n",
" <td>...</td>\n",
" <td>...</td>\n",
" </tr>\n",
" <tr>\n",
" <th>4</th>\n",
" <td>1777741260000</td>\n",
" <td>78413.3</td>\n",
" <td>78413.3</td>\n",
" <td>78411.3</td>\n",
" <td>78411.3</td>\n",
" <td>0.630</td>\n",
" <td>1777741319999</td>\n",
" <td>49399.3445</td>\n",
" <td>37</td>\n",
" <td>0.393</td>\n",
" <td>30815.7824</td>\n",
" <td>0</td>\n",
" <td>2026-05-02 17:01:00</td>\n",
" </tr>\n",
" <tr>\n",
" <th>3</th>\n",
" <td>1777741200000</td>\n",
" <td>78422.9</td>\n",
" <td>78423.0</td>\n",
" <td>78413.3</td>\n",
" <td>78413.3</td>\n",
" <td>0.514</td>\n",
" <td>1777741259999</td>\n",
" <td>40308.5056</td>\n",
" <td>54</td>\n",
" <td>0.233</td>\n",
" <td>18272.2217</td>\n",
" <td>0</td>\n",
" <td>2026-05-02 17:00:00</td>\n",
" </tr>\n",
" <tr>\n",
" <th>2</th>\n",
" <td>1777741140000</td>\n",
" <td>78422.9</td>\n",
" <td>78422.9</td>\n",
" <td>78422.9</td>\n",
" <td>78422.9</td>\n",
" <td>0.276</td>\n",
" <td>1777741199999</td>\n",
" <td>21644.7204</td>\n",
" <td>30</td>\n",
" <td>0.146</td>\n",
" <td>11449.7434</td>\n",
" <td>0</td>\n",
" <td>2026-05-02 16:59:00</td>\n",
" </tr>\n",
" <tr>\n",
" <th>1</th>\n",
" <td>1777741080000</td>\n",
" <td>78424.0</td>\n",
" <td>78424.0</td>\n",
" <td>78422.9</td>\n",
" <td>78422.9</td>\n",
" <td>0.252</td>\n",
" <td>1777741139999</td>\n",
" <td>19762.7952</td>\n",
" <td>29</td>\n",
" <td>0.129</td>\n",
" <td>10116.6718</td>\n",
" <td>0</td>\n",
" <td>2026-05-02 16:58:00</td>\n",
" </tr>\n",
" <tr>\n",
" <th>0</th>\n",
" <td>1777741020000</td>\n",
" <td>78433.9</td>\n",
" <td>78433.9</td>\n",
" <td>78424.0</td>\n",
" <td>78424.0</td>\n",
" <td>0.757</td>\n",
" <td>1777741079999</td>\n",
" <td>59372.6391</td>\n",
" <td>37</td>\n",
" <td>0.338</td>\n",
" <td>26509.9252</td>\n",
" <td>0</td>\n",
" <td>2026-05-02 16:57:00</td>\n",
" </tr>\n",
" </tbody>\n",
"</table>\n",
"<p>1440 rows × 13 columns</p>\n",
"</div>"
],
"text/plain": [
" 0 1 2 3 4 5 6 \\\n",
"1439 1777827360000 78655.2 78655.2 78655.2 78655.2 0.007 1777827419999 \n",
"1438 1777827300000 78659.5 78659.6 78659.5 78659.5 0.356 1777827359999 \n",
"1437 1777827240000 78664.7 78664.7 78658.5 78659.5 0.445 1777827299999 \n",
"1436 1777827180000 78658.6 78669.5 78658.6 78664.7 0.384 1777827239999 \n",
"1435 1777827120000 78669.2 78673.0 78658.6 78658.6 0.535 1777827179999 \n",
"... ... ... ... ... ... ... ... \n",
"4 1777741260000 78413.3 78413.3 78411.3 78411.3 0.630 1777741319999 \n",
"3 1777741200000 78422.9 78423.0 78413.3 78413.3 0.514 1777741259999 \n",
"2 1777741140000 78422.9 78422.9 78422.9 78422.9 0.276 1777741199999 \n",
"1 1777741080000 78424.0 78424.0 78422.9 78422.9 0.252 1777741139999 \n",
"0 1777741020000 78433.9 78433.9 78424.0 78424.0 0.757 1777741079999 \n",
"\n",
" 7 8 9 10 11 timestamp_dt \n",
"1439 550.5864 2 0.005 393.2760 0 2026-05-03 16:56:00 \n",
"1438 28002.8080 35 0.185 14552.0254 0 2026-05-03 16:55:00 \n",
"1437 35004.6537 35 0.123 9675.2159 0 2026-05-03 16:54:00 \n",
"1436 30208.1977 38 0.153 12036.0195 0 2026-05-03 16:53:00 \n",
"1435 42087.5276 34 0.250 19667.0352 0 2026-05-03 16:52:00 \n",
"... ... .. ... ... .. ... \n",
"4 49399.3445 37 0.393 30815.7824 0 2026-05-02 17:01:00 \n",
"3 40308.5056 54 0.233 18272.2217 0 2026-05-02 17:00:00 \n",
"2 21644.7204 30 0.146 11449.7434 0 2026-05-02 16:59:00 \n",
"1 19762.7952 29 0.129 10116.6718 0 2026-05-02 16:58:00 \n",
"0 59372.6391 37 0.338 26509.9252 0 2026-05-02 16:57:00 \n",
"\n",
"[1440 rows x 13 columns]"
]
},
"execution_count": 36,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"df.sort_values(by='timestamp_dt', ascending=False)"
]
},
{
"cell_type": "code",
"execution_count": null,
"id": "c8aa6569",
"metadata": {},
"outputs": [],
"source": []
},
{
"cell_type": "code",
"execution_count": null,
"id": "503c6403",
"metadata": {},
"outputs": [],
"source": []
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": []
},
{
"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": 30,
"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
}