{ "cells": [ { "cell_type": "markdown", "id": "ab64a426-f870-4c7a-8814-14b1f9fc68c6", "metadata": {}, "source": [ "# Анализ ордербука" ] }, { "cell_type": "code", "execution_count": null, "id": "6e6d0daa-c0ad-4e19-8d0d-01e15efe1fa1", "metadata": {}, "outputs": [], "source": [ "# Декомпозиция класса" ] }, { "cell_type": "code", "execution_count": 54, "id": "74db1419-af56-4ef8-9dc1-464cd80321b2", "metadata": {}, "outputs": [], "source": [ "from typing import Dict, Any, List\n", "\n", "class OrderBookOutOfSync(Exception):\n", " pass\n", "\n", "class OrderBook:\n", " def __init__(self):\n", " # books: symbol -> {'timestamp': float, 'bids': {price_str: volume}, 'asks': {price_str: volume}}\n", " self.books: Dict[str, Dict[str, Any]] = {}\n", " self.last_update: Dict[str, int] = {}\n", "\n", " def process_message(self, message: Dict[str, Any]) -> None:\n", " data = message['data']\n", " symbol = data['s']\n", " ts = message.get('ts', 0.0)\n", "\n", " if message['type'] == 'snapshot':\n", " self.books[symbol] = {\n", " 'timestamp': ts,\n", " 'bids': {str(float(p[0])): float(p[1]) for p in data['b']},\n", " 'asks': {str(float(p[0])): float(p[1]) for p in data['a']},\n", " }\n", " self.last_update[symbol] = int(data.get('u', 0))\n", " elif message['type'] == 'delta':\n", " update_id = int(data['u'])\n", " prev_update = self.last_update.get(symbol)\n", " if prev_update is None:\n", " return\n", " if update_id != prev_update + 1:\n", " raise OrderBookOutOfSync(\n", " f\"Update out of sequence for {symbol}: expected {prev_update + 1}, got {update_id}\"\n", " )\n", "\n", " if symbol not in self.books:\n", " return\n", "\n", " def update_side(side_name: str, updates: List[List[Any]]):\n", " for entry in updates:\n", " try:\n", " price_f = float(entry[0])\n", " volume_f = float(entry[1])\n", " except (ValueError, TypeError, IndexError):\n", " continue\n", " price_key = str(price_f)\n", " if volume_f > 0:\n", " self.books[symbol][side_name][price_key] = volume_f\n", " elif price_key in self.books[symbol][side_name]:\n", " del self.books[symbol][side_name][price_key]\n", "\n", " update_side(\"bids\", data.get(\"b\", []))\n", " update_side(\"asks\", data.get(\"a\", []))\n", "\n", " self.last_update[symbol] = update_id\n", " self.books[symbol][\"timestamp\"] = ts\n", "\n", " def _get_basic_info(self, symbol: str) -> Dict[str, Any]:\n", " \"\"\"Получить поля symbol, timestamp, lowest_ask, highest_bid для symbol.\"\"\"\n", " if symbol not in self.books:\n", " return {\"symbol\": symbol, \"timestamp\": None, \"lowest_ask\": None, \"highest_bid\": None}\n", " bids = self.books[symbol][\"bids\"]\n", " asks = self.books[symbol][\"asks\"]\n", " lowest_ask = min(map(float, asks.keys())) if asks else None\n", " highest_bid = max(map(float, bids.keys())) if bids else None\n", " timestamp = self.books[symbol].get(\"timestamp\")\n", " return {\n", " \"symbol\": symbol,\n", " \"timestamp\": timestamp,\n", " \"lowest_ask\": lowest_ask,\n", " \"highest_bid\": highest_bid,\n", " }\n", "\n", " def get_order_book(self, symbol: str) -> Dict[str, Any]:\n", " base_info = self._get_basic_info(symbol)\n", " if symbol not in self.books:\n", " return {**base_info, \"bids\": {}, \"asks\": {}}\n", " bids = self.books[symbol][\"bids\"]\n", " asks = self.books[symbol][\"asks\"]\n", " sorted_bids = dict(sorted(bids.items(), key=lambda x: float(x[0]), reverse=True))\n", " sorted_asks = dict(sorted(asks.items(), key=lambda x: float(x[0])))\n", " return {**base_info, \"bids\": sorted_bids, \"asks\": sorted_asks}\n", "\n", " def get_aggregated_levels(self, symbol: str, levels: List[float]) -> Dict[str, Any]:\n", " base_info = self._get_basic_info(symbol)\n", " if symbol not in self.books:\n", " return {**base_info, \"bids\": [], \"asks\": []}\n", " bids = self.books[symbol][\"bids\"]\n", " asks = self.books[symbol][\"asks\"]\n", " if not bids or not asks:\n", " return {**base_info, \"bids\": [], \"asks\": []}\n", "\n", " highest_bid = base_info[\"highest_bid\"]\n", " lowest_ask = base_info[\"lowest_ask\"]\n", "\n", " sorted_bids = sorted(((float(price), volume) for price, volume in bids.items()), reverse=True)\n", " sorted_asks = sorted(((float(price), volume) for price, volume in asks.items()))\n", "\n", " def aggregate_levels(\n", " sorted_prices_volumes: List, base_price: float, percents: List[float], is_bid: bool\n", " ) -> List[Dict[str, Any]]:\n", " agg_results = []\n", " for pct in percents:\n", " pct = float(pct)\n", " if is_bid:\n", " lower_bound = base_price * (1 - pct / 100)\n", " volume_sum = sum(\n", " volume\n", " for price, volume in sorted_prices_volumes\n", " if base_price > price > lower_bound\n", " )\n", " else:\n", " upper_bound = base_price * (1 + pct / 100)\n", " volume_sum = sum(\n", " volume\n", " for price, volume in sorted_prices_volumes\n", " if base_price < price < upper_bound\n", " )\n", " agg_results.append({\"level\": pct, \"volume\": volume_sum})\n", " return agg_results\n", "\n", " aggregated_bids = aggregate_levels(sorted_bids, highest_bid, levels, True)\n", " aggregated_asks = aggregate_levels(sorted_asks, lowest_ask, levels, False)\n", "\n", " return {**base_info, \"bids\": aggregated_bids, \"asks\": aggregated_asks}\n" ] }, { "cell_type": "code", "execution_count": 139, "id": "50d63e2e-1ed8-499e-b710-85976713dd4e", "metadata": {}, "outputs": [], "source": [ "from typing import Dict, Any, List, Optional\n", "import time\n", "\n", "class OrderBookOutOfSync(Exception):\n", " pass\n", "\n", "class VolumeDeltaOrderBook:\n", " def __init__(self, max_depth_sec: int = 900):\n", " self.max_depth_sec = max_depth_sec\n", " # Сохраняем историю объёмов: symbol -> side -> list записей {timestamp, in, out}\n", " self.volume_history: Dict[str, Dict[str, List[Dict[str, float]]]] = {}\n", " # Запоминаем последнее время обновления для каждого symbol\n", " self.last_update_time: Dict[str, float] = {}\n", " # Для хранения текущего объёма по каждому symbol и side (по цене)\n", " self.current_volumes: Dict[str, Dict[str, Dict[str, float]]] = {}\n", " # Последние id обновления message для контроля последовательности\n", " self._last_update_id: Dict[str, int] = {}\n", "\n", " def process_message(self, message: Dict[str, Any]) -> None:\n", " data = message['data']\n", " symbol = data['s']\n", " # Используем время получения сообщения как timestamp для истории\n", " now_ts = time.time()\n", "\n", " if message['type'] == 'snapshot':\n", " self.volume_history[symbol] = {'bids': [], 'asks': []}\n", " self.last_update_time[symbol] = now_ts\n", " self.current_volumes[symbol] = {'bids': {}, 'asks': {}}\n", " self._last_update_id[symbol] = int(data.get('u', 0))\n", "\n", " # Инициализируем текущие объемы из snapshot\n", " for side_name in ['bids', 'asks']:\n", " side_updates = data.get(side_name[0], data.get(side_name, [])) # data['b'] or data['a'] обычно\n", " for price_str, volume in side_updates:\n", " price = str(float(price_str))\n", " self.current_volumes[symbol][side_name][price] = float(volume)\n", "\n", " elif message['type'] == 'delta':\n", " update_id = int(data['u'])\n", " prev_update = self._last_update_id.get(symbol)\n", " if prev_update is None:\n", " # Без snapshot не обрабатывать delta\n", " return\n", " if update_id != prev_update + 1:\n", " raise OrderBookOutOfSync(f\"Update out of sequence for {symbol}: expected {prev_update+1}, got {update_id}\")\n", "\n", " if symbol not in self.volume_history:\n", " self.volume_history[symbol] = {'bids': [], 'asks': []}\n", " if symbol not in self.current_volumes:\n", " self.current_volumes[symbol] = {'bids': {}, 'asks': {}}\n", " if symbol not in self.last_update_time or now_ts > self.last_update_time[symbol]:\n", " self.last_update_time[symbol] = now_ts\n", "\n", " def update_side(side_name: str, updates: List[List[float]]):\n", " volume_in = 0.0\n", " volume_out = 0.0\n", " side_current = self.current_volumes[symbol][side_name]\n", "\n", " for entry in updates:\n", " try:\n", " price_f = float(entry[0])\n", " volume_f = float(entry[1])\n", " except (ValueError, TypeError, IndexError):\n", " continue\n", "\n", " price_key = str(price_f)\n", " prev_volume = side_current.get(price_key, 0.0)\n", " delta_volume = volume_f - prev_volume\n", " delta_value = price_f * delta_volume\n", "\n", " if delta_volume > 0:\n", " volume_in += delta_value\n", " elif delta_volume < 0:\n", " volume_out += abs(delta_value)\n", "\n", " if volume_f > 0:\n", " side_current[price_key] = volume_f\n", " elif price_key in side_current:\n", " del side_current[price_key]\n", "\n", " # Запись с теперь актуальным timestamp\n", " self.volume_history[symbol][side_name].append({\n", " 'timestamp': now_ts,\n", " 'in': volume_in,\n", " 'out': volume_out\n", " })\n", "\n", " cutoff = now_ts - self.max_depth_sec\n", " self.volume_history[symbol][side_name] = [\n", " rec for rec in self.volume_history[symbol][side_name]\n", " if rec['timestamp'] >= cutoff\n", " ]\n", "\n", " update_side('bids', data.get('b', []))\n", " update_side('asks', data.get('a', []))\n", "\n", " self._last_update_id[symbol] = update_id\n", "\n", " def get_volume_delta(self, symbol: str, depth_sec: int) -> Optional[Dict[str, Any]]:\n", " if symbol not in self.volume_history:\n", " return None\n", " depth_sec = min(depth_sec, self.max_depth_sec)\n", " now_ts = self.last_update_time.get(symbol, time.time())\n", " cutoff = now_ts - depth_sec\n", "\n", " def sum_volume(records: List[Dict[str, float]]):\n", " volume_in = sum(r['in'] for r in records if r['timestamp'] >= cutoff)\n", " volume_out = sum(r['out'] for r in records if r['timestamp'] >= cutoff)\n", " return {'in': volume_in, 'out': volume_out}\n", "\n", " bids = sum_volume(self.volume_history[symbol]['bids'])\n", " asks = sum_volume(self.volume_history[symbol]['asks'])\n", "\n", " return {\n", " 'symbol': symbol,\n", " 'timestamp': now_ts,\n", " 'depth': depth_sec,\n", " 'bids': bids,\n", " 'asks': asks,\n", " }\n" ] }, { "cell_type": "code", "execution_count": 140, "id": "66a16f4a-9c2a-499b-880b-5662ebe8b07f", "metadata": {}, "outputs": [ { "data": { "text/plain": [ "{'symbol': 'BTCUSDT',\n", " 'timestamp': 1756684801829,\n", " 'lowest_ask': 108241.8,\n", " 'highest_bid': 108241.7,\n", " 'bids': [{'level': 0.005, 'volume': 0.024432999999999996},\n", " {'level': 0.01, 'volume': 0.720067},\n", " {'level': 0.015, 'volume': 2.188207},\n", " {'level': 0.02, 'volume': 3.6439869999999983}],\n", " 'asks': [{'level': 0.005, 'volume': 0.12923800000000002},\n", " {'level': 0.01, 'volume': 1.229285},\n", " {'level': 0.015, 'volume': 2.2872159999999995},\n", " {'level': 0.02, 'volume': 3.177030999999999}]}" ] }, "execution_count": 140, "metadata": {}, "output_type": "execute_result" } ], "source": [ "levels[3]" ] }, { "cell_type": "code", "execution_count": 176, "id": "08e0b593-47aa-4d59-b14a-8733d37d9027", "metadata": {}, "outputs": [], "source": [ "import json\n", "\n", "def process_json_lines(file_path, handler):\n", " with open(file_path, 'r', encoding='utf-8') as f:\n", " for line in f:\n", " line = line.strip()\n", " if not line:\n", " continue # пропуск пустых строк\n", " try:\n", " obj = json.loads(line)\n", " except json.JSONDecodeError as e:\n", " print(f\"Ошибка декодирования JSON: {e}, строка: {line}\")\n", " continue\n", " handler(obj)\n", "\n", "\n", "ob = OrderBook()\n", "volob = VolumeDeltaOrderBook()\n", "\n", "orderbooks = []\n", "levels = []\n", "volumes = []\n", "# пример обработчика\n", "def my_handler(json_obj):\n", " #print(json_obj) # здесь можно делать что угодно с объектом\n", " ob.process_message(json_obj)\n", " orderbooks.append(ob.get_order_book(\"BTCUSDT\"))\n", " levels.append(ob.get_aggregated_levels(\"BTCUSDT\", [0.005,0.01, 0.015, 0.02]))\n", " volob.process_message(json_obj)\n", " volumes.append(volob.get_volume_delta(\"BTCUSDT\", 60))\n", "\n", "\n", "# пример вызова\n", "#process_json_lines('./data/2025-09-01_BTCUSDT_ob200.data', my_handler)\n", "process_json_lines('./data/testob2.csv', my_handler)" ] }, { "cell_type": "code", "execution_count": 142, "id": "d7c702ff-03e1-4f40-b53b-ec04a6a822f7", "metadata": {}, "outputs": [ { "data": { "text/plain": [ "[{'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.823819,\n", " 'depth': 10,\n", " 'bids': {'in': 0, 'out': 0},\n", " 'asks': {'in': 0, 'out': 0}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.824225,\n", " 'depth': 10,\n", " 'bids': {'in': 267825.1921611, 'out': 144300.90123040005},\n", " 'asks': {'in': 162848.7712041, 'out': 193219.8091764}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.824451,\n", " 'depth': 10,\n", " 'bids': {'in': 434006.80804489995, 'out': 353783.707776},\n", " 'asks': {'in': 403914.7605707, 'out': 277329.900226}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.824672,\n", " 'depth': 10,\n", " 'bids': {'in': 707685.6404085999, 'out': 1136577.1175236},\n", " 'asks': {'in': 657794.1375483, 'out': 613306.2864753001}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.824901,\n", " 'depth': 10,\n", " 'bids': {'in': 1087650.2383775997, 'out': 1401142.0233726},\n", " 'asks': {'in': 934629.9921611999, 'out': 899587.3122018}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.8253162,\n", " 'depth': 10,\n", " 'bids': {'in': 1394798.2319957996, 'out': 1478476.0530396001},\n", " 'asks': {'in': 1079812.5444328, 'out': 923695.8137408}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.8254871,\n", " 'depth': 10,\n", " 'bids': {'in': 1515477.1922628996, 'out': 1662637.8632248002},\n", " 'asks': {'in': 1127373.5341794, 'out': 959929.4989198}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.825662,\n", " 'depth': 10,\n", " 'bids': {'in': 1622656.9443586995, 'out': 1729471.2006568003},\n", " 'asks': {'in': 1174989.832958, 'out': 1018609.5373818}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.825838,\n", " 'depth': 10,\n", " 'bids': {'in': 1748500.1911307995, 'out': 1859853.8151610002},\n", " 'asks': {'in': 1222245.2463612, 'out': 1063574.5614261}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.826016,\n", " 'depth': 10,\n", " 'bids': {'in': 1978227.4428747995, 'out': 2032903.8450020002},\n", " 'asks': {'in': 1277955.9460451999, 'out': 1113442.3371838}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.8261912,\n", " 'depth': 10,\n", " 'bids': {'in': 2101342.9670808995, 'out': 2115828.4432673003},\n", " 'asks': {'in': 1326196.5799411, 'out': 1200036.0015884}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.826367,\n", " 'depth': 10,\n", " 'bids': {'in': 2186606.7783189993, 'out': 2291406.2453213003},\n", " 'asks': {'in': 1471898.9791091, 'out': 1384340.8210784}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.826602,\n", " 'depth': 10,\n", " 'bids': {'in': 2629419.6023500995, 'out': 2552981.2285976},\n", " 'asks': {'in': 1822566.1382271, 'out': 2003293.7614737}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.8268192,\n", " 'depth': 10,\n", " 'bids': {'in': 2744426.6155696996, 'out': 2760997.0181854},\n", " 'asks': {'in': 2186791.201626, 'out': 2198742.8590527}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.8270159,\n", " 'depth': 10,\n", " 'bids': {'in': 2919763.0509190997, 'out': 2928973.3080213},\n", " 'asks': {'in': 2449333.9407672, 'out': 2255491.8147432}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.8272052,\n", " 'depth': 10,\n", " 'bids': {'in': 3143378.0325658997, 'out': 3029319.8554058},\n", " 'asks': {'in': 2576341.4302286003, 'out': 2481795.84332}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.8273852,\n", " 'depth': 10,\n", " 'bids': {'in': 3281538.8971273997, 'out': 3154419.9291593},\n", " 'asks': {'in': 2726425.2965156003, 'out': 2619954.2698376}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.827552,\n", " 'depth': 10,\n", " 'bids': {'in': 3366779.1366016995, 'out': 3239660.9152002},\n", " 'asks': {'in': 2761249.1254374003, 'out': 2682805.0895006}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.827708,\n", " 'depth': 10,\n", " 'bids': {'in': 3429509.4754397995, 'out': 3302631.45708},\n", " 'asks': {'in': 2987346.3925456004, 'out': 2816379.9278307}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.8278651,\n", " 'depth': 10,\n", " 'bids': {'in': 3626070.2711404995, 'out': 3498261.9480399},\n", " 'asks': {'in': 3132404.8720800006, 'out': 2959013.0721734}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.8280342,\n", " 'depth': 10,\n", " 'bids': {'in': 3748259.2630156996, 'out': 3824299.6576489},\n", " 'asks': {'in': 3181710.3500442007, 'out': 3120891.1145141}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.828222,\n", " 'depth': 10,\n", " 'bids': {'in': 3840162.4290713994, 'out': 4037993.2536334},\n", " 'asks': {'in': 3320882.9663327006, 'out': 3316213.9624412}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.828404,\n", " 'depth': 10,\n", " 'bids': {'in': 3927001.1943422994, 'out': 4124465.6181292},\n", " 'asks': {'in': 3465312.701346101, 'out': 3363784.9629753}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.828575,\n", " 'depth': 10,\n", " 'bids': {'in': 4056917.5967991995, 'out': 4280666.6977909},\n", " 'asks': {'in': 3498162.707050901, 'out': 3420166.9975711}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.828774,\n", " 'depth': 10,\n", " 'bids': {'in': 4359750.532937899, 'out': 4425863.9448934},\n", " 'asks': {'in': 4088709.6571102007, 'out': 3798051.8797212}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.828982,\n", " 'depth': 10,\n", " 'bids': {'in': 4615873.575795699, 'out': 4541042.8370133005},\n", " 'asks': {'in': 4406096.078658901, 'out': 4273752.1573913}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.829168,\n", " 'depth': 10,\n", " 'bids': {'in': 4693671.118214099, 'out': 4705047.5674457},\n", " 'asks': {'in': 4445938.642446701, 'out': 4395315.7076513}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.829343,\n", " 'depth': 10,\n", " 'bids': {'in': 4867135.369404999, 'out': 4819999.9871518},\n", " 'asks': {'in': 4507419.305028101, 'out': 4435281.887380701}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.829518,\n", " 'depth': 10,\n", " 'bids': {'in': 4930189.782251999, 'out': 4920901.3184392},\n", " 'asks': {'in': 4543510.977759501, 'out': 4525547.899682401}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.8297029,\n", " 'depth': 10,\n", " 'bids': {'in': 5003904.855667699, 'out': 5172009.874585399},\n", " 'asks': {'in': 4652047.399921001, 'out': 4574397.0763749005}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.829885,\n", " 'depth': 10,\n", " 'bids': {'in': 5194559.400390899, 'out': 5247127.724692499},\n", " 'asks': {'in': 4802741.398240301, 'out': 4725093.7884966}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.830059,\n", " 'depth': 10,\n", " 'bids': {'in': 5347781.317624799, 'out': 5383236.0772472},\n", " 'asks': {'in': 4932555.2415158, 'out': 4854944.5901054}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.8302238,\n", " 'depth': 10,\n", " 'bids': {'in': 5387270.296670399, 'out': 5453793.9050950995},\n", " 'asks': {'in': 4941421.564216101, 'out': 4863793.5112047}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.830382,\n", " 'depth': 10,\n", " 'bids': {'in': 5457158.763198298, 'out': 5493715.758040699},\n", " 'asks': {'in': 4970877.284422501, 'out': 4893248.9497059}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.830553,\n", " 'depth': 10,\n", " 'bids': {'in': 5646990.885252899, 'out': 5726618.3157351995},\n", " 'asks': {'in': 5137214.564775801, 'out': 5069412.553472}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.8307369,\n", " 'depth': 10,\n", " 'bids': {'in': 5672619.453411099, 'out': 5826859.584603399},\n", " 'asks': {'in': 5181974.634150201, 'out': 5240583.3616936}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.83107,\n", " 'depth': 10,\n", " 'bids': {'in': 6299955.110510498, 'out': 6411852.225446099},\n", " 'asks': {'in': 5805565.183489902, 'out': 5935648.2227982}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.831327,\n", " 'depth': 10,\n", " 'bids': {'in': 6516329.210464498, 'out': 6685864.606021499},\n", " 'asks': {'in': 6109930.103584502, 'out': 6053134.87581}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.831536,\n", " 'depth': 10,\n", " 'bids': {'in': 6741295.251897798, 'out': 6784255.780475499},\n", " 'asks': {'in': 6283576.0489698015, 'out': 6390838.8595313}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.831727,\n", " 'depth': 10,\n", " 'bids': {'in': 6915229.680725598, 'out': 6982012.5972976},\n", " 'asks': {'in': 6326997.306032002, 'out': 6430227.7459205}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.831899,\n", " 'depth': 10,\n", " 'bids': {'in': 6988590.196818198, 'out': 7161324.5918146},\n", " 'asks': {'in': 6421444.540951002, 'out': 6459684.1174809}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.8320699,\n", " 'depth': 10,\n", " 'bids': {'in': 7164087.250888398, 'out': 7218005.2300439},\n", " 'asks': {'in': 6511264.577958602, 'out': 6576907.0736955}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.8322508,\n", " 'depth': 10,\n", " 'bids': {'in': 7306678.045225498, 'out': 7289915.0252061},\n", " 'asks': {'in': 6733520.436217902, 'out': 6703930.6102552}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.832431,\n", " 'depth': 10,\n", " 'bids': {'in': 7371809.482982598, 'out': 7477164.5814866},\n", " 'asks': {'in': 6893634.916745102, 'out': 6854597.5848495}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.8326132,\n", " 'depth': 10,\n", " 'bids': {'in': 7484167.675375998, 'out': 7571777.687328501},\n", " 'asks': {'in': 7048829.423037602, 'out': 7001007.4176445}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.8329,\n", " 'depth': 10,\n", " 'bids': {'in': 10389272.317918498, 'out': 8688687.161049802},\n", " 'asks': {'in': 7671172.725482602, 'out': 7684574.5616206}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.833237,\n", " 'depth': 10,\n", " 'bids': {'in': 10939643.904696997, 'out': 9249509.598821202},\n", " 'asks': {'in': 8532633.463865303, 'out': 8432843.5638885}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.833492,\n", " 'depth': 10,\n", " 'bids': {'in': 11403437.957510397, 'out': 9516455.661613103},\n", " 'asks': {'in': 8871332.780542802, 'out': 8634509.138621699}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.8337128,\n", " 'depth': 10,\n", " 'bids': {'in': 11639750.506927997, 'out': 9726618.360183403},\n", " 'asks': {'in': 9264230.042231202, 'out': 9079359.608994499}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.8339221,\n", " 'depth': 10,\n", " 'bids': {'in': 11747866.438452296, 'out': 9962718.030296603},\n", " 'asks': {'in': 9406558.256190702, 'out': 9335858.9665745}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.834116,\n", " 'depth': 10,\n", " 'bids': {'in': 12063388.508184696, 'out': 10177297.023264403},\n", " 'asks': {'in': 9617624.038179602, 'out': 9608244.0842054}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.8343139,\n", " 'depth': 10,\n", " 'bids': {'in': 12243530.942457996, 'out': 11009359.737541702},\n", " 'asks': {'in': 9706613.875078302, 'out': 9678571.869061401}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.8344991,\n", " 'depth': 10,\n", " 'bids': {'in': 13144806.538733797, 'out': 11207317.921246601},\n", " 'asks': {'in': 9823094.923445001, 'out': 9696585.2311259}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.834687,\n", " 'depth': 10,\n", " 'bids': {'in': 13258800.416147998, 'out': 12020058.124016201},\n", " 'asks': {'in': 9911792.7767827, 'out': 9899899.6153486}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.834872,\n", " 'depth': 10,\n", " 'bids': {'in': 13361260.781527797, 'out': 12099994.445851201},\n", " 'asks': {'in': 10043033.0819569, 'out': 9933687.3177829}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.835047,\n", " 'depth': 10,\n", " 'bids': {'in': 14142861.637255296, 'out': 12196226.6281994},\n", " 'asks': {'in': 10074461.198583601, 'out': 10005556.754107099}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.835231,\n", " 'depth': 10,\n", " 'bids': {'in': 14233996.960406195, 'out': 12989026.0184027},\n", " 'asks': {'in': 10118285.9056314, 'out': 10056966.6620474}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.835423,\n", " 'depth': 10,\n", " 'bids': {'in': 15058519.482446695, 'out': 13093063.0068128},\n", " 'asks': {'in': 10154325.7134539, 'out': 10091001.2921132}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.835605,\n", " 'depth': 10,\n", " 'bids': {'in': 15140575.042526195, 'out': 13864319.8976119},\n", " 'asks': {'in': 10185983.5903987, 'out': 10119870.9943268}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.835798,\n", " 'depth': 10,\n", " 'bids': {'in': 15368376.180316694, 'out': 14005258.2006249},\n", " 'asks': {'in': 10324298.049421702, 'out': 10349606.3888312}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.835985,\n", " 'depth': 10,\n", " 'bids': {'in': 16169959.070405994, 'out': 14102194.5597749},\n", " 'asks': {'in': 10456536.640431002, 'out': 10381379.3955742}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.836168,\n", " 'depth': 10,\n", " 'bids': {'in': 16251234.533736393, 'out': 14205595.9320998},\n", " 'asks': {'in': 10530199.562026702, 'out': 10439842.031136202}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.8363578,\n", " 'depth': 10,\n", " 'bids': {'in': 16334426.262279892, 'out': 14332062.277666701},\n", " 'asks': {'in': 10667655.629809802, 'out': 10647893.922017002}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.8365362,\n", " 'depth': 10,\n", " 'bids': {'in': 16390384.605237592, 'out': 15089982.812940702},\n", " 'asks': {'in': 10797275.217332102, 'out': 10777514.612416102}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.836713,\n", " 'depth': 10,\n", " 'bids': {'in': 16459588.876482092, 'out': 15145941.155898402},\n", " 'asks': {'in': 10832725.124266002, 'out': 10858593.039088402}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.8369,\n", " 'depth': 10,\n", " 'bids': {'in': 16519112.467789892, 'out': 15365498.8815458},\n", " 'asks': {'in': 10879728.490555203, 'out': 11028435.962627502}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.83709,\n", " 'depth': 10,\n", " 'bids': {'in': 16696032.232311891, 'out': 15416458.700956501},\n", " 'asks': {'in': 11057282.668685103, 'out': 11107499.994713701}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.8372748,\n", " 'depth': 10,\n", " 'bids': {'in': 17502752.314820193, 'out': 15584156.2566273},\n", " 'asks': {'in': 11113850.423012303, 'out': 11237733.724810202}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.837456,\n", " 'depth': 10,\n", " 'bids': {'in': 17676377.36262499, 'out': 16439840.720280401},\n", " 'asks': {'in': 11261635.213328203, 'out': 11282829.145788}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.8376498,\n", " 'depth': 10,\n", " 'bids': {'in': 17902322.512358993, 'out': 16844231.892622102},\n", " 'asks': {'in': 11471184.116600104, 'out': 11428286.495976401}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.837837,\n", " 'depth': 10,\n", " 'bids': {'in': 18193211.844453394, 'out': 16930514.393577904},\n", " 'asks': {'in': 11483139.346610904, 'out': 11441297.684636801}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.838023,\n", " 'depth': 10,\n", " 'bids': {'in': 18379981.182488993, 'out': 17356826.8542671},\n", " 'asks': {'in': 11528241.811985703, 'out': 11483586.2931098}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.838211,\n", " 'depth': 10,\n", " 'bids': {'in': 18623353.990317892, 'out': 17678416.1266076},\n", " 'asks': {'in': 11700271.665286902, 'out': 11616022.1319301}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.838401,\n", " 'depth': 10,\n", " 'bids': {'in': 19040024.124451794, 'out': 17909339.092606902},\n", " 'asks': {'in': 11875490.418848902, 'out': 11833364.977325}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.8385978,\n", " 'depth': 10,\n", " 'bids': {'in': 19214666.391357392, 'out': 18345005.7165784},\n", " 'asks': {'in': 11884169.662480103, 'out': 11849597.0100745}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.8387961,\n", " 'depth': 10,\n", " 'bids': {'in': 19327187.45537319, 'out': 18536201.351630103},\n", " 'asks': {'in': 11930767.502209203, 'out': 11961230.4429705}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.839016,\n", " 'depth': 10,\n", " 'bids': {'in': 19932365.29459779, 'out': 18666563.751437604},\n", " 'asks': {'in': 12155002.230339704, 'out': 12361436.6618963}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.83923,\n", " 'depth': 10,\n", " 'bids': {'in': 20164604.97960239, 'out': 18888228.111766703},\n", " 'asks': {'in': 12486743.780213105, 'out': 12415060.844482299}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.839423,\n", " 'depth': 10,\n", " 'bids': {'in': 20224240.68925349, 'out': 18947426.0289001},\n", " 'asks': {'in': 12518823.645048605, 'out': 12447142.158755198}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.8396091,\n", " 'depth': 10,\n", " 'bids': {'in': 20437484.67708419, 'out': 19189159.440528303},\n", " 'asks': {'in': 12656377.419458006, 'out': 12659562.187075498}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.839799,\n", " 'depth': 10,\n", " 'bids': {'in': 20529283.329206187, 'out': 19503619.305655405},\n", " 'asks': {'in': 12751629.536741905, 'out': 12830682.250461498}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.839982,\n", " 'depth': 10,\n", " 'bids': {'in': 20838873.68683199, 'out': 19852930.430107605},\n", " 'asks': {'in': 12955992.978561105, 'out': 12868966.424562799}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.8401659,\n", " 'depth': 10,\n", " 'bids': {'in': 20930475.341372687, 'out': 19932989.428939804},\n", " 'asks': {'in': 12963764.975968605, 'out': 12971376.172059499}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.840346,\n", " 'depth': 10,\n", " 'bids': {'in': 21011631.35714489, 'out': 20013047.494230904},\n", " 'asks': {'in': 13069397.926625405, 'out': 13024784.809044398}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.840538,\n", " 'depth': 10,\n", " 'bids': {'in': 21109146.60828919, 'out': 20115676.307156503},\n", " 'asks': {'in': 13107385.980329705, 'out': 13260212.672533099}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.8408,\n", " 'depth': 10,\n", " 'bids': {'in': 21945959.04532379, 'out': 21755239.900237605},\n", " 'asks': {'in': 14845147.620059205, 'out': 13832585.716710199}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.8411,\n", " 'depth': 10,\n", " 'bids': {'in': 22803783.922806688, 'out': 22708719.313828506},\n", " 'asks': {'in': 15376750.647685105, 'out': 14171606.339757299}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.8413582,\n", " 'depth': 10,\n", " 'bids': {'in': 22990288.172284987, 'out': 22917406.610597104},\n", " 'asks': {'in': 15464632.166729005, 'out': 14984521.161417}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.8415701,\n", " 'depth': 10,\n", " 'bids': {'in': 23131668.87424379, 'out': 23093185.454895303},\n", " 'asks': {'in': 15579015.469873605, 'out': 15718060.2857579}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.84177,\n", " 'depth': 10,\n", " 'bids': {'in': 23257331.102476887, 'out': 23195146.9429682},\n", " 'asks': {'in': 15622870.221141905, 'out': 15762234.271507598}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.842004,\n", " 'depth': 10,\n", " 'bids': {'in': 23706699.35000859, 'out': 23630703.868205},\n", " 'asks': {'in': 17299605.208035406, 'out': 16471281.344161598}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.842269,\n", " 'depth': 10,\n", " 'bids': {'in': 24043594.93858539, 'out': 24032687.2979787},\n", " 'asks': {'in': 17709425.214144606, 'out': 16711910.265660599}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.84251,\n", " 'depth': 10,\n", " 'bids': {'in': 24369255.26112989, 'out': 24413731.630257398},\n", " 'asks': {'in': 17996679.885574408, 'out': 17502050.9407169}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.842718,\n", " 'depth': 10,\n", " 'bids': {'in': 24588845.42844219, 'out': 24604539.366586197},\n", " 'asks': {'in': 18684505.096579507, 'out': 17507105.4388829}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.8429089,\n", " 'depth': 10,\n", " 'bids': {'in': 24748945.07372599, 'out': 24771126.5246408},\n", " 'asks': {'in': 18700590.637216207, 'out': 18205866.5094354}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.843106,\n", " 'depth': 10,\n", " 'bids': {'in': 24910349.13833729, 'out': 24956173.064485498},\n", " 'asks': {'in': 19499546.607038505, 'out': 18600278.2758706}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.843344,\n", " 'depth': 10,\n", " 'bids': {'in': 25405905.481564492, 'out': 25414318.382324897},\n", " 'asks': {'in': 19868698.716913003, 'out': 18765239.8438874}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.843585,\n", " 'depth': 10,\n", " 'bids': {'in': 25636472.58837039, 'out': 25740091.156267997},\n", " 'asks': {'in': 20073434.955594603, 'out': 19522561.5055333}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.843795,\n", " 'depth': 10,\n", " 'bids': {'in': 25850549.11795709, 'out': 25857936.099757396},\n", " 'asks': {'in': 20124941.008653603, 'out': 19603434.8196178}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.844007,\n", " 'depth': 10,\n", " 'bids': {'in': 25903426.59130079, 'out': 26026515.171201594},\n", " 'asks': {'in': 20259119.908316802, 'out': 19742524.7117773}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.844207,\n", " 'depth': 10,\n", " 'bids': {'in': 26029808.18633609, 'out': 26088496.462371293},\n", " 'asks': {'in': 20298335.940323103, 'out': 19833799.4931483}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.8443992,\n", " 'depth': 10,\n", " 'bids': {'in': 26136228.99462329, 'out': 26172544.169458292},\n", " 'asks': {'in': 20340268.4481641, 'out': 19844285.546443302}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.844586,\n", " 'depth': 10,\n", " 'bids': {'in': 26165221.22202559, 'out': 26223671.425731592},\n", " 'asks': {'in': 20348485.4666633, 'out': 19852530.649275}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.84478,\n", " 'depth': 10,\n", " 'bids': {'in': 26228040.057059687, 'out': 26277728.275347393},\n", " 'asks': {'in': 20370351.5663075, 'out': 19874854.2928984}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.844987,\n", " 'depth': 10,\n", " 'bids': {'in': 26319785.008480888, 'out': 26463207.524128795},\n", " 'asks': {'in': 20572599.8888317, 'out': 20060679.470454503}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.8451998,\n", " 'depth': 10,\n", " 'bids': {'in': 26401112.08940049, 'out': 26631740.230934594},\n", " 'asks': {'in': 20760891.4547423, 'out': 20127459.376627404}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.845403,\n", " 'depth': 10,\n", " 'bids': {'in': 26596174.668119688, 'out': 26671126.128481794},\n", " 'asks': {'in': 20769608.49523, 'out': 20140401.694358405}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.845688,\n", " 'depth': 10,\n", " 'bids': {'in': 29302769.159207687, 'out': 27762998.440951295},\n", " 'asks': {'in': 21410862.846829, 'out': 20766973.036127206}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.846022,\n", " 'depth': 10,\n", " 'bids': {'in': 29871933.578049287, 'out': 28059530.546687495},\n", " 'asks': {'in': 21872741.8592509, 'out': 21843088.809939206}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.846292,\n", " 'depth': 10,\n", " 'bids': {'in': 30105659.22549819, 'out': 29137096.532054994},\n", " 'asks': {'in': 22179801.5944793, 'out': 22114550.341653004}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.846519,\n", " 'depth': 10,\n", " 'bids': {'in': 30245837.43317689, 'out': 29530921.049446393},\n", " 'asks': {'in': 22374697.1448365, 'out': 22234615.586582504}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.8467278,\n", " 'depth': 10,\n", " 'bids': {'in': 30608197.64275349, 'out': 29745052.351109993},\n", " 'asks': {'in': 22555019.535009, 'out': 22436683.487403706}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.8469272,\n", " 'depth': 10,\n", " 'bids': {'in': 30849406.38759029, 'out': 29803404.555298094},\n", " 'asks': {'in': 22634898.960042, 'out': 22457662.578759506}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.847117,\n", " 'depth': 10,\n", " 'bids': {'in': 30888251.92051069, 'out': 29856816.554077394},\n", " 'asks': {'in': 22646735.1222828, 'out': 22463002.843256306}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.847306,\n", " 'depth': 10,\n", " 'bids': {'in': 30965913.43258469, 'out': 30103995.041631095},\n", " 'asks': {'in': 22670037.9792399, 'out': 22476101.063258506}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.847487,\n", " 'depth': 10,\n", " 'bids': {'in': 31028641.007950693, 'out': 30166724.172002696},\n", " 'asks': {'in': 22678139.1780178, 'out': 22484202.208489906}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.847669,\n", " 'depth': 10,\n", " 'bids': {'in': 31060870.63939059, 'out': 30203112.443131495},\n", " 'asks': {'in': 22721750.9889729, 'out': 22523040.150342207}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.847848,\n", " 'depth': 10,\n", " 'bids': {'in': 31159697.30256709, 'out': 30300248.675425094},\n", " 'asks': {'in': 22721750.9889729, 'out': 22523040.150342207}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.8480341,\n", " 'depth': 10,\n", " 'bids': {'in': 31475886.62304589, 'out': 30377072.790624294},\n", " 'asks': {'in': 22733183.8380926, 'out': 22532223.774205107}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.848244,\n", " 'depth': 10,\n", " 'bids': {'in': 31800829.875144593, 'out': 30700827.760386996},\n", " 'asks': {'in': 22829343.189913798, 'out': 22705446.827447306}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.848476,\n", " 'depth': 10,\n", " 'bids': {'in': 32274991.258072093, 'out': 30998428.700348496},\n", " 'asks': {'in': 23324481.972822797, 'out': 23283469.478252206}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.848704,\n", " 'depth': 10,\n", " 'bids': {'in': 32368188.987866692, 'out': 31186294.216245197},\n", " 'asks': {'in': 23496276.294366196, 'out': 23450495.112982806}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.848927,\n", " 'depth': 10,\n", " 'bids': {'in': 33267753.25922289, 'out': 31407702.8057987},\n", " 'asks': {'in': 23915470.566395298, 'out': 23750160.184809204}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.849142,\n", " 'depth': 10,\n", " 'bids': {'in': 33366790.42436759, 'out': 32281647.8790363},\n", " 'asks': {'in': 24048103.972011596, 'out': 23893738.186750304}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.849422,\n", " 'depth': 10,\n", " 'bids': {'in': 34887412.56882499, 'out': 33326384.8392145},\n", " 'asks': {'in': 24757497.949452296, 'out': 24762367.946412902}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.849736,\n", " 'depth': 10,\n", " 'bids': {'in': 35257386.086545795, 'out': 33712966.9401753},\n", " 'asks': {'in': 24963663.066459496, 'out': 24984854.118927002}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.849984,\n", " 'depth': 10,\n", " 'bids': {'in': 35587538.2423948, 'out': 34100552.3658029},\n", " 'asks': {'in': 25261847.310392596, 'out': 25306595.1722938}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.850197,\n", " 'depth': 10,\n", " 'bids': {'in': 35852405.5951432, 'out': 34277422.3159388},\n", " 'asks': {'in': 25378608.611084696, 'out': 25322687.4346878}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.850393,\n", " 'depth': 10,\n", " 'bids': {'in': 36027591.221444696, 'out': 34480767.1778993},\n", " 'asks': {'in': 25383571.726318896, 'out': 25426267.7837724}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.8505988,\n", " 'depth': 10,\n", " 'bids': {'in': 36152801.70374899, 'out': 34567591.5656995},\n", " 'asks': {'in': 25501455.187706497, 'out': 25446696.723093603}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.850805,\n", " 'depth': 10,\n", " 'bids': {'in': 36241435.2593703, 'out': 34761969.7123664},\n", " 'asks': {'in': 25527812.351611696, 'out': 25462219.607190404}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.851,\n", " 'depth': 10,\n", " 'bids': {'in': 36381078.0879633, 'out': 34851690.6387746},\n", " 'asks': {'in': 25560756.740066797, 'out': 25499634.615199603}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.8511958,\n", " 'depth': 10,\n", " 'bids': {'in': 36545190.486668296, 'out': 34931888.9920936},\n", " 'asks': {'in': 25602631.455297995, 'out': 25589744.384031203}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.851428,\n", " 'depth': 10,\n", " 'bids': {'in': 36947712.3187726, 'out': 35532342.777148},\n", " 'asks': {'in': 25712952.066192795, 'out': 25730259.874378704}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.8516722,\n", " 'depth': 10,\n", " 'bids': {'in': 37436518.4783177, 'out': 36043656.345963},\n", " 'asks': {'in': 25840511.036882393, 'out': 25879806.0508867}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.851899,\n", " 'depth': 10,\n", " 'bids': {'in': 37663427.817441, 'out': 36907751.8096727},\n", " 'asks': {'in': 25875445.27631799, 'out': 25947698.3650325}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.852104,\n", " 'depth': 10,\n", " 'bids': {'in': 37835148.4209102, 'out': 37168929.1197064},\n", " 'asks': {'in': 25997844.564947993, 'out': 25959215.263290703}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.852314,\n", " 'depth': 10,\n", " 'bids': {'in': 38259040.7388222, 'out': 37391569.3198322},\n", " 'asks': {'in': 26066324.240263894, 'out': 26011996.435798902}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.852524,\n", " 'depth': 10,\n", " 'bids': {'in': 38436851.3655874, 'out': 37755822.8324678},\n", " 'asks': {'in': 26209006.330301195, 'out': 26154426.228525702}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.852743,\n", " 'depth': 10,\n", " 'bids': {'in': 38567305.0511844, 'out': 37861152.164398104},\n", " 'asks': {'in': 26369711.670736797, 'out': 26670496.970972802}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.852994,\n", " 'depth': 10,\n", " 'bids': {'in': 39078771.0333934, 'out': 38271471.1115251},\n", " 'asks': {'in': 26522610.5804149, 'out': 26760225.2110758}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.8532438,\n", " 'depth': 10,\n", " 'bids': {'in': 39468562.9951661, 'out': 38617708.644975506},\n", " 'asks': {'in': 26857525.4348114, 'out': 26906390.7044464}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.853481,\n", " 'depth': 10,\n", " 'bids': {'in': 39763230.9925834, 'out': 38826206.38775591},\n", " 'asks': {'in': 27735541.218550697, 'out': 27318811.480804503}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.853769,\n", " 'depth': 10,\n", " 'bids': {'in': 40320145.9768553, 'out': 39541795.10841181},\n", " 'asks': {'in': 28344076.338105597, 'out': 27743944.501164004}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.8540318,\n", " 'depth': 10,\n", " 'bids': {'in': 40490904.6988585, 'out': 39738934.55790281},\n", " 'asks': {'in': 28555248.719989397, 'out': 27821550.650122404}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.854264,\n", " 'depth': 10,\n", " 'bids': {'in': 40664905.2912342, 'out': 40563905.78472311},\n", " 'asks': {'in': 28708590.738298696, 'out': 28060510.500426404}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.854495,\n", " 'depth': 10,\n", " 'bids': {'in': 41723260.8888603, 'out': 40648905.55234841},\n", " 'asks': {'in': 29123290.012698796, 'out': 28133962.102097005}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.8547251,\n", " 'depth': 10,\n", " 'bids': {'in': 42002758.0793745, 'out': 41539578.872270815},\n", " 'asks': {'in': 29350819.536285397, 'out': 28480053.312439505}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.854953,\n", " 'depth': 10,\n", " 'bids': {'in': 42820383.3528426, 'out': 41652577.100557014},\n", " 'asks': {'in': 29384785.295877498, 'out': 28505712.153148904}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.8551931,\n", " 'depth': 10,\n", " 'bids': {'in': 42951535.4338682, 'out': 41807755.428563714},\n", " 'asks': {'in': 29487925.729006097, 'out': 28554829.392836604}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.8554409,\n", " 'depth': 10,\n", " 'bids': {'in': 43237090.6571845, 'out': 42839530.067833915},\n", " 'asks': {'in': 30617387.275482196, 'out': 29324355.556129005}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.855735,\n", " 'depth': 10,\n", " 'bids': {'in': 44160296.7081605, 'out': 43889786.406760514},\n", " 'asks': {'in': 31247947.523779795, 'out': 29956944.329132706}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.856014,\n", " 'depth': 10,\n", " 'bids': {'in': 44860950.5754847, 'out': 44552546.561959416},\n", " 'asks': {'in': 31668470.083658393, 'out': 30949333.424836107}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.856249,\n", " 'depth': 10,\n", " 'bids': {'in': 45264799.6781425, 'out': 44983272.67200381},\n", " 'asks': {'in': 31710939.717263892, 'out': 30992506.218001507}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.856469,\n", " 'depth': 10,\n", " 'bids': {'in': 45366421.452473104, 'out': 45096369.128534116},\n", " 'asks': {'in': 31880054.20873719, 'out': 31818137.124369007}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.856686,\n", " 'depth': 10,\n", " 'bids': {'in': 45416338.0433766, 'out': 45175603.12579842},\n", " 'asks': {'in': 32936449.945926093, 'out': 32174361.195071008}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.856908,\n", " 'depth': 10,\n", " 'bids': {'in': 45502733.0609429, 'out': 45278756.09659682},\n", " 'asks': {'in': 33265255.628998294, 'out': 33258542.65240191}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.857118,\n", " 'depth': 10,\n", " 'bids': {'in': 45679932.9235009, 'out': 45432590.755665325},\n", " 'asks': {'in': 33698890.332417294, 'out': 33719231.96224391}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.857323,\n", " 'depth': 10,\n", " 'bids': {'in': 45766282.8300379, 'out': 45526285.837310925},\n", " 'asks': {'in': 33958392.2157888, 'out': 33943862.67933541}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.857541,\n", " 'depth': 10,\n", " 'bids': {'in': 46066091.8520332, 'out': 45816566.770347424},\n", " 'asks': {'in': 34724257.569039695, 'out': 34039848.81480901}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.857762,\n", " 'depth': 10,\n", " 'bids': {'in': 46175118.5527599, 'out': 45930282.451809525},\n", " 'asks': {'in': 35001179.692428194, 'out': 34935474.05389931}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.857973,\n", " 'depth': 10,\n", " 'bids': {'in': 46479076.7566908, 'out': 46196855.76868953},\n", " 'asks': {'in': 35058620.62795629, 'out': 35021390.08970351}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.858173,\n", " 'depth': 10,\n", " 'bids': {'in': 46656283.6598072, 'out': 46255459.82156803},\n", " 'asks': {'in': 35159416.008491494, 'out': 35118964.76203181}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.858402,\n", " 'depth': 10,\n", " 'bids': {'in': 47249373.015818395, 'out': 46954876.381114125},\n", " 'asks': {'in': 35333076.27890639, 'out': 35247313.45388551}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.8586938,\n", " 'depth': 10,\n", " 'bids': {'in': 49886064.299849294, 'out': 48170238.870563224},\n", " 'asks': {'in': 36324218.63810749, 'out': 35995945.21101541}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.858979,\n", " 'depth': 10,\n", " 'bids': {'in': 50306927.78968649, 'out': 49315518.82542223},\n", " 'asks': {'in': 36529324.8415264, 'out': 36234470.26014471}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.859252,\n", " 'depth': 10,\n", " 'bids': {'in': 51628841.029289395, 'out': 49902865.307704926},\n", " 'asks': {'in': 37109053.050001994, 'out': 37017896.21508781}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.859522,\n", " 'depth': 10,\n", " 'bids': {'in': 52265233.5857178, 'out': 50327935.87219483},\n", " 'asks': {'in': 37664110.906812094, 'out': 37334500.29545491}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.8597682,\n", " 'depth': 10,\n", " 'bids': {'in': 52384064.720571, 'out': 50741513.38732943},\n", " 'asks': {'in': 38062650.1950167, 'out': 37880956.20167951}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.860016,\n", " 'depth': 10,\n", " 'bids': {'in': 52705394.0402219, 'out': 50825844.92092783},\n", " 'asks': {'in': 38458852.629649594, 'out': 38370119.137058616}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.8602638,\n", " 'depth': 10,\n", " 'bids': {'in': 53185451.1727498, 'out': 52168800.60760723},\n", " 'asks': {'in': 38655419.39423429, 'out': 38589293.01442421}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.860506,\n", " 'depth': 10,\n", " 'bids': {'in': 53383110.6846949, 'out': 53054394.87108763},\n", " 'asks': {'in': 38964459.31504509, 'out': 39033011.184940614}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.860758,\n", " 'depth': 10,\n", " 'bids': {'in': 54778785.079908304, 'out': 53610185.188619934},\n", " 'asks': {'in': 39335014.501907386, 'out': 39258983.124757014}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.8609972,\n", " 'depth': 10,\n", " 'bids': {'in': 54971567.94375361, 'out': 53825020.37680353},\n", " 'asks': {'in': 39573545.707295485, 'out': 39328909.04730471}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.8612149,\n", " 'depth': 10,\n", " 'bids': {'in': 55224688.106708005, 'out': 54087134.50854803},\n", " 'asks': {'in': 39619917.61896729, 'out': 39369181.72720301}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.8614242,\n", " 'depth': 10,\n", " 'bids': {'in': 55472908.4060882, 'out': 54335908.00280443},\n", " 'asks': {'in': 39837649.21822799, 'out': 39634309.05261251}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.861639,\n", " 'depth': 10,\n", " 'bids': {'in': 55780617.290912606, 'out': 54640962.37678553},\n", " 'asks': {'in': 40271010.27245359, 'out': 39882479.05747851}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.8618581,\n", " 'depth': 10,\n", " 'bids': {'in': 56223718.6991927, 'out': 54830577.45117483},\n", " 'asks': {'in': 40406539.43775019, 'out': 40013427.85801821}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.862079,\n", " 'depth': 10,\n", " 'bids': {'in': 56627358.265222505, 'out': 55477450.211220734},\n", " 'asks': {'in': 40654209.33883809, 'out': 40287785.387901515}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.862294,\n", " 'depth': 10,\n", " 'bids': {'in': 56785485.27384201, 'out': 55637975.283185534},\n", " 'asks': {'in': 40887594.463104196, 'out': 40505665.29668382}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.8625019,\n", " 'depth': 10,\n", " 'bids': {'in': 56953868.04338421, 'out': 55831831.68583433},\n", " 'asks': {'in': 40931588.086716294, 'out': 40558715.28277772}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.8627148,\n", " 'depth': 10,\n", " 'bids': {'in': 57123251.43784221, 'out': 55985901.697950736},\n", " 'asks': {'in': 41242153.48013079, 'out': 40856245.586430416}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.8629272,\n", " 'depth': 10,\n", " 'bids': {'in': 57193121.59597501, 'out': 56078195.731436834},\n", " 'asks': {'in': 41461865.67391099, 'out': 41210315.986736014}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.863153,\n", " 'depth': 10,\n", " 'bids': {'in': 57476978.55017971, 'out': 56266861.82859854},\n", " 'asks': {'in': 41736472.87201299, 'out': 41395262.616361916}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.863376,\n", " 'depth': 10,\n", " 'bids': {'in': 57563490.01491141, 'out': 56346885.66032754},\n", " 'asks': {'in': 41981805.927728385, 'out': 41646569.40939432}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.8635871,\n", " 'depth': 10,\n", " 'bids': {'in': 57721657.96854962, 'out': 56449681.35879094},\n", " 'asks': {'in': 42035855.71365538, 'out': 41882644.63675342}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.863799,\n", " 'depth': 10,\n", " 'bids': {'in': 57977504.60929192, 'out': 56705859.596274644},\n", " 'asks': {'in': 42181060.314658485, 'out': 42022201.83770402}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.864009,\n", " 'depth': 10,\n", " 'bids': {'in': 58355961.20893162, 'out': 57257211.452032946},\n", " 'asks': {'in': 42383452.894629486, 'out': 42491070.839132816}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.864228,\n", " 'depth': 10,\n", " 'bids': {'in': 58711369.439527415, 'out': 57474848.48143255},\n", " 'asks': {'in': 42660272.15192269, 'out': 42669463.00535042}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.864461,\n", " 'depth': 10,\n", " 'bids': {'in': 58834592.98200821, 'out': 57588179.63870675},\n", " 'asks': {'in': 42879271.36913539, 'out': 42833974.76910732}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.864684,\n", " 'depth': 10,\n", " 'bids': {'in': 58882433.20339041, 'out': 57733820.08420225},\n", " 'asks': {'in': 43175342.98518689, 'out': 43055213.43603562}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.8649049,\n", " 'depth': 10,\n", " 'bids': {'in': 59062306.49926791, 'out': 57816374.698146455},\n", " 'asks': {'in': 43408665.76259339, 'out': 43327697.46387792}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.865126,\n", " 'depth': 10,\n", " 'bids': {'in': 59160843.07582671, 'out': 57913277.27224095},\n", " 'asks': {'in': 43609744.388992585, 'out': 43439581.809288815}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.865338,\n", " 'depth': 10,\n", " 'bids': {'in': 59456861.866105415, 'out': 58188773.24696545},\n", " 'asks': {'in': 43631176.34997059, 'out': 43445037.554870114}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.865547,\n", " 'depth': 10,\n", " 'bids': {'in': 59762006.776271515, 'out': 58478282.27066305},\n", " 'asks': {'in': 43831252.17716299, 'out': 43738100.09086902}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.8657548,\n", " 'depth': 10,\n", " 'bids': {'in': 59842046.048918314, 'out': 58574280.801479556},\n", " 'asks': {'in': 43984794.73624019, 'out': 43840509.00880182}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.8659708,\n", " 'depth': 10,\n", " 'bids': {'in': 59938068.013167016, 'out': 58654320.074126355},\n", " 'asks': {'in': 44013758.53856989, 'out': 44010488.21008642}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.8661802,\n", " 'depth': 10,\n", " 'bids': {'in': 59984370.14281942, 'out': 58700622.513371654},\n", " 'asks': {'in': 44155620.19159869, 'out': 44054944.32661412}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.866414,\n", " 'depth': 10,\n", " 'bids': {'in': 60388021.29517772, 'out': 59218026.28587975},\n", " 'asks': {'in': 44484684.23569629, 'out': 44536769.79972722}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.866673,\n", " 'depth': 10,\n", " 'bids': {'in': 60633959.14249672, 'out': 59341367.387249455},\n", " 'asks': {'in': 44694206.6568016, 'out': 44777832.28154121}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.866922,\n", " 'depth': 10,\n", " 'bids': {'in': 60961607.85792312, 'out': 59572008.86959346},\n", " 'asks': {'in': 44972266.8454088, 'out': 44977733.48171211}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.8671842,\n", " 'depth': 10,\n", " 'bids': {'in': 61376522.07581722, 'out': 60038578.96627146},\n", " 'asks': {'in': 45046276.4788809, 'out': 45124858.24359511}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.867475,\n", " 'depth': 10,\n", " 'bids': {'in': 62054204.07777072, 'out': 61808689.25670506},\n", " 'asks': {'in': 47213069.82931019, 'out': 45959766.45786141}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.867811,\n", " 'depth': 10,\n", " 'bids': {'in': 63074329.37443842, 'out': 62593942.45494346},\n", " 'asks': {'in': 48073294.34626199, 'out': 46703967.65070451}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.8681102,\n", " 'depth': 10,\n", " 'bids': {'in': 63473918.00257092, 'out': 63090493.43754546},\n", " 'asks': {'in': 48441369.86304789, 'out': 47768710.50277061}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.8683589,\n", " 'depth': 10,\n", " 'bids': {'in': 63700216.71657102, 'out': 63320905.67755726},\n", " 'asks': {'in': 48599281.04882919, 'out': 47850403.79501791}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.8685818,\n", " 'depth': 10,\n", " 'bids': {'in': 63784313.37224752, 'out': 63465895.797647856},\n", " 'asks': {'in': 48608200.30496719, 'out': 47858555.61811401}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.8688068,\n", " 'depth': 10,\n", " 'bids': {'in': 64047222.692130215, 'out': 63690894.13747076},\n", " 'asks': {'in': 48823068.46487579, 'out': 48181082.51273401}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.8690538,\n", " 'depth': 10,\n", " 'bids': {'in': 64561853.428117916, 'out': 64112721.504367456},\n", " 'asks': {'in': 49819724.69999069, 'out': 48680525.69356851}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.869302,\n", " 'depth': 10,\n", " 'bids': {'in': 64730237.09301682, 'out': 64297729.34357726},\n", " 'asks': {'in': 50175891.86685999, 'out': 48730757.26731631}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.869538,\n", " 'depth': 10,\n", " 'bids': {'in': 65036442.378060915, 'out': 64592014.95790846},\n", " 'asks': {'in': 50221409.38541759, 'out': 49641974.213404715}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.8697631,\n", " 'depth': 10,\n", " 'bids': {'in': 65113498.36049371, 'out': 64669078.52256726},\n", " 'asks': {'in': 50396578.40530489, 'out': 49757105.18835241}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.869994,\n", " 'depth': 10,\n", " 'bids': {'in': 65511743.93672841, 'out': 65074686.99003506},\n", " 'asks': {'in': 50540017.27283689, 'out': 49979914.375643015}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.870238,\n", " 'depth': 10,\n", " 'bids': {'in': 65675549.89712551, 'out': 65177296.53576976},\n", " 'asks': {'in': 51528203.764096886, 'out': 50326094.38326971}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.870527,\n", " 'depth': 10,\n", " 'bids': {'in': 66144673.95095171, 'out': 65657187.35040726},\n", " 'asks': {'in': 52209369.98882639, 'out': 50815255.857442714}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.870792,\n", " 'depth': 10,\n", " 'bids': {'in': 66440279.32388261, 'out': 65912253.640748456},\n", " 'asks': {'in': 52255412.25388509, 'out': 50843111.48171921}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.87102,\n", " 'depth': 10,\n", " 'bids': {'in': 66577509.23010461, 'out': 66039322.041734256},\n", " 'asks': {'in': 52298117.04989059, 'out': 50923975.86501151}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.871247,\n", " 'depth': 10,\n", " 'bids': {'in': 66923913.60556231, 'out': 66464488.67230236},\n", " 'asks': {'in': 52429897.97200659, 'out': 51081441.15728322}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.871489,\n", " 'depth': 10,\n", " 'bids': {'in': 67186046.2680965, 'out': 66755943.22559326},\n", " 'asks': {'in': 52605431.193295985, 'out': 51167766.78341982}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.871732,\n", " 'depth': 10,\n", " 'bids': {'in': 67420142.6682491, 'out': 66938821.16177406},\n", " 'asks': {'in': 52661550.74354759, 'out': 51309090.361335814}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.871962,\n", " 'depth': 10,\n", " 'bids': {'in': 67600216.540858, 'out': 67193938.75218026},\n", " 'asks': {'in': 52706251.84013749, 'out': 51350207.489777215}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.8721879,\n", " 'depth': 10,\n", " 'bids': {'in': 67744375.1477497, 'out': 67285797.75328086},\n", " 'asks': {'in': 52847557.62343069, 'out': 51397465.37569462}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.872409,\n", " 'depth': 10,\n", " 'bids': {'in': 67817510.93072791, 'out': 67344537.40621276},\n", " 'asks': {'in': 52859558.27085969, 'out': 51402809.27861692}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.872621,\n", " 'depth': 10,\n", " 'bids': {'in': 67910224.77691191, 'out': 67391671.88161106},\n", " 'asks': {'in': 52985990.06997909, 'out': 51529498.36913242}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.8728478,\n", " 'depth': 10,\n", " 'bids': {'in': 67988880.03535742, 'out': 67479208.48968077},\n", " 'asks': {'in': 53030933.709392585, 'out': 51606061.644990325}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.873089,\n", " 'depth': 10,\n", " 'bids': {'in': 68149475.43810591, 'out': 67638337.81457646},\n", " 'asks': {'in': 53197722.59642269, 'out': 51768638.710813925}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.8733141,\n", " 'depth': 10,\n", " 'bids': {'in': 68198550.7378914, 'out': 67739714.35599066},\n", " 'asks': {'in': 53227355.79648409, 'out': 51938908.965417325}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.8735301,\n", " 'depth': 10,\n", " 'bids': {'in': 68552963.34234771, 'out': 68044126.90318666},\n", " 'asks': {'in': 53374322.59724829, 'out': 51943957.58610663}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.873745,\n", " 'depth': 10,\n", " 'bids': {'in': 68680875.86182581, 'out': 68092108.09488997},\n", " 'asks': {'in': 53377661.28256969, 'out': 51947205.629106626}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.87396,\n", " 'depth': 10,\n", " 'bids': {'in': 68735259.94702281, 'out': 68139758.13552867},\n", " 'asks': {'in': 53402598.09660299, 'out': 52102062.50942723}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.874184,\n", " 'depth': 10,\n", " 'bids': {'in': 68767748.73106681, 'out': 68173870.45523916},\n", " 'asks': {'in': 53604510.47168029, 'out': 52157423.58829643}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.8744068,\n", " 'depth': 10,\n", " 'bids': {'in': 68849394.0248779, 'out': 68254529.28380086},\n", " 'asks': {'in': 53655328.73023389, 'out': 52314161.76753623}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.874636,\n", " 'depth': 10,\n", " 'bids': {'in': 68920562.60413, 'out': 68360178.79914266},\n", " 'asks': {'in': 53788842.59013169, 'out': 52473270.56173823}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.8748648,\n", " 'depth': 10,\n", " 'bids': {'in': 69022757.3660273, 'out': 68605407.38667886},\n", " 'asks': {'in': 53958318.54423169, 'out': 52517699.25704333}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.8750951,\n", " 'depth': 10,\n", " 'bids': {'in': 69237732.8411741, 'out': 68743823.11473896},\n", " 'asks': {'in': 54007067.923060894, 'out': 52560467.91998433}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.8753269,\n", " 'depth': 10,\n", " 'bids': {'in': 69327036.23429699, 'out': 68921661.28123495},\n", " 'asks': {'in': 54056016.799504094, 'out': 52594419.40201453}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.87555,\n", " 'depth': 10,\n", " 'bids': {'in': 69715016.3464603, 'out': 69220030.34879185},\n", " 'asks': {'in': 54088814.38292609, 'out': 52644552.65137493}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.875764,\n", " 'depth': 10,\n", " 'bids': {'in': 69777744.2325805, 'out': 69283088.28829525},\n", " 'asks': {'in': 54318557.49446929, 'out': 52847500.501498826}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.875977,\n", " 'depth': 10,\n", " 'bids': {'in': 69857766.8641045, 'out': 69363110.85011886},\n", " 'asks': {'in': 54351354.99287409, 'out': 52885507.32515123}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.876189,\n", " 'depth': 10,\n", " 'bids': {'in': 69956398.26942809, 'out': 69426444.99056336},\n", " 'asks': {'in': 54567156.879525796, 'out': 53088460.760286324}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.876399,\n", " 'depth': 10,\n", " 'bids': {'in': 70033045.08491609, 'out': 69501469.60013676},\n", " 'asks': {'in': 54594663.4547428, 'out': 53122576.58533772}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.876607,\n", " 'depth': 10,\n", " 'bids': {'in': 70108069.72976899, 'out': 69576494.20762476},\n", " 'asks': {'in': 54618666.477003396, 'out': 53146579.62976892}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.876817,\n", " 'depth': 10,\n", " 'bids': {'in': 70170797.95192069, 'out': 69640844.52899466},\n", " 'asks': {'in': 54647625.2544406, 'out': 53183120.389455125}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.877028,\n", " 'depth': 10,\n", " 'bids': {'in': 70250820.78553109, 'out': 69720867.44766386},\n", " 'asks': {'in': 54680422.7396594, 'out': 53215917.787360124}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.877238,\n", " 'depth': 10,\n", " 'bids': {'in': 70412246.0757341, 'out': 69785086.25048035},\n", " 'asks': {'in': 54726255.5530188, 'out': 53243333.59525873}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.8774452,\n", " 'depth': 10,\n", " 'bids': {'in': 70475304.5323219, 'out': 69897569.58709125},\n", " 'asks': {'in': 54750367.0343324, 'out': 53267336.63968993}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.877664,\n", " 'depth': 10,\n", " 'bids': {'in': 70567818.001835, 'out': 70005936.35196675},\n", " 'asks': {'in': 54793615.373317204, 'out': 53314841.75632183}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.877886,\n", " 'depth': 10,\n", " 'bids': {'in': 70630546.059714, 'out': 70068664.97397405},\n", " 'asks': {'in': 54839701.944449306, 'out': 53412572.88067583}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.878119,\n", " 'depth': 10,\n", " 'bids': {'in': 70734026.1081874, 'out': 70283000.54722925},\n", " 'asks': {'in': 55012125.73422491, 'out': 54271812.74910603}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.878357,\n", " 'depth': 10,\n", " 'bids': {'in': 71237076.308072, 'out': 70643859.60109614},\n", " 'asks': {'in': 55021484.47775531, 'out': 54335346.577962026}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.8789299,\n", " 'depth': 10,\n", " 'bids': {'in': 71791194.52986, 'out': 71190884.97670273},\n", " 'asks': {'in': 56524948.89491511, 'out': 55367645.54052942}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.879332,\n", " 'depth': 10,\n", " 'bids': {'in': 72720051.5468916, 'out': 72606350.49065123},\n", " 'asks': {'in': 57311076.00771821, 'out': 56010571.063619025}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.8796601,\n", " 'depth': 10,\n", " 'bids': {'in': 72954289.1399334, 'out': 72855571.02628033},\n", " 'asks': {'in': 57874170.06561241, 'out': 56329101.454554126}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.879924,\n", " 'depth': 10,\n", " 'bids': {'in': 73413147.1773397, 'out': 73107974.71379143},\n", " 'asks': {'in': 58094318.66947001, 'out': 56962596.66871583}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.880198,\n", " 'depth': 10,\n", " 'bids': {'in': 73851851.3248724, 'out': 73488607.05617332},\n", " 'asks': {'in': 58394146.11231651, 'out': 57066862.887856424}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.880481,\n", " 'depth': 10,\n", " 'bids': {'in': 74066658.9170663, 'out': 73756349.96178882},\n", " 'asks': {'in': 58535755.13797861, 'out': 57194735.24178192}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.8807318,\n", " 'depth': 10,\n", " 'bids': {'in': 74176624.4756477, 'out': 73807355.20900892},\n", " 'asks': {'in': 58608820.973609515, 'out': 57325081.86881372}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.880992,\n", " 'depth': 10,\n", " 'bids': {'in': 74225922.4144025, 'out': 73915577.44215491},\n", " 'asks': {'in': 58739160.61284121, 'out': 57358437.25694552}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.8812191,\n", " 'depth': 10,\n", " 'bids': {'in': 74360261.1029319, 'out': 73997135.22205201},\n", " 'asks': {'in': 58772062.780321315, 'out': 57477955.43369262}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.8814578,\n", " 'depth': 10,\n", " 'bids': {'in': 74545025.8026153, 'out': 74133293.4187368},\n", " 'asks': {'in': 58864485.94224791, 'out': 57622641.63485712}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.881691,\n", " 'depth': 10,\n", " 'bids': {'in': 74625083.7450697, 'out': 74213696.4126851},\n", " 'asks': {'in': 58966749.457493015, 'out': 57670043.32849592}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.881941,\n", " 'depth': 10,\n", " 'bids': {'in': 75177443.96001449, 'out': 74610810.5264159},\n", " 'asks': {'in': 59144500.79957371, 'out': 57795977.32710332}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.88221,\n", " 'depth': 10,\n", " 'bids': {'in': 75365867.9245113, 'out': 74740205.4998683},\n", " 'asks': {'in': 59227449.03024671, 'out': 57974799.487718016}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.882456,\n", " 'depth': 10,\n", " 'bids': {'in': 75541659.2091742, 'out': 74884591.15855381},\n", " 'asks': {'in': 59664884.41781871, 'out': 58191540.49701791}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.8827012,\n", " 'depth': 10,\n", " 'bids': {'in': 75797245.2344865, 'out': 75130149.29653391},\n", " 'asks': {'in': 59711916.04096531, 'out': 58228851.14928101}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.882941,\n", " 'depth': 10,\n", " 'bids': {'in': 75987138.02570051, 'out': 75296149.06971972},\n", " 'asks': {'in': 59744885.68212711, 'out': 58361470.62155141}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.883181,\n", " 'depth': 10,\n", " 'bids': {'in': 76072591.06288831, 'out': 75487687.85958952},\n", " 'asks': {'in': 59852372.07186761, 'out': 58376797.26231961}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.8834062,\n", " 'depth': 10,\n", " 'bids': {'in': 76250037.3548606, 'out': 75590885.00196892},\n", " 'asks': {'in': 59857334.616630405, 'out': 58479240.08946661}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.883629,\n", " 'depth': 10,\n", " 'bids': {'in': 76306389.3408197, 'out': 75648456.46792242},\n", " 'asks': {'in': 59964443.5569749, 'out': 58505545.29442741}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.883959,\n", " 'depth': 10,\n", " 'bids': {'in': 77523429.0235136, 'out': 77037449.33433191},\n", " 'asks': {'in': 61056777.282993004, 'out': 61214790.56893261}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.884351,\n", " 'depth': 10,\n", " 'bids': {'in': 77902181.7921097, 'out': 77631706.25801042},\n", " 'asks': {'in': 61796795.3482834, 'out': 61767337.89822951}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.884657,\n", " 'depth': 10,\n", " 'bids': {'in': 78330694.225375, 'out': 78040917.49209751},\n", " 'asks': {'in': 62046651.2978496, 'out': 61916385.83081991}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.884923,\n", " 'depth': 10,\n", " 'bids': {'in': 78908872.52466239, 'out': 78287989.17800441},\n", " 'asks': {'in': 62149821.136774406, 'out': 62017312.50521811}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.88518,\n", " 'depth': 10,\n", " 'bids': {'in': 79032270.5037752, 'out': 78407139.89143002},\n", " 'asks': {'in': 62353557.4368913, 'out': 62230897.24699751}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.8854232,\n", " 'depth': 10,\n", " 'bids': {'in': 79159852.8938448, 'out': 78531570.93364282},\n", " 'asks': {'in': 62391346.751809604, 'out': 62312038.68202911}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.885657,\n", " 'depth': 10,\n", " 'bids': {'in': 79201849.6221561, 'out': 78584535.14161041},\n", " 'asks': {'in': 62429050.0117427, 'out': 62344579.98009241}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.885888,\n", " 'depth': 10,\n", " 'bids': {'in': 79249146.6092428, 'out': 78614173.38448942},\n", " 'asks': {'in': 62632351.110263206, 'out': 62547855.28087001}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.886139,\n", " 'depth': 10,\n", " 'bids': {'in': 79295794.08761139, 'out': 78660820.95039512},\n", " 'asks': {'in': 62687792.466754004, 'out': 62588482.59983081}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.886383,\n", " 'depth': 10,\n", " 'bids': {'in': 79462301.26563819, 'out': 78831977.22730643},\n", " 'asks': {'in': 62967412.371090405, 'out': 62924765.52509262}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.886637,\n", " 'depth': 10,\n", " 'bids': {'in': 79688149.85155639, 'out': 79077695.14916582},\n", " 'asks': {'in': 63134555.80135561, 'out': 62972756.93464932}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.886875,\n", " 'depth': 10,\n", " 'bids': {'in': 79744652.5709544, 'out': 79188520.87738273},\n", " 'asks': {'in': 63183714.54345921, 'out': 63005328.30059962}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.887103,\n", " 'depth': 10,\n", " 'bids': {'in': 79825464.6040078, 'out': 79329335.02750343},\n", " 'asks': {'in': 63188670.250768505, 'out': 63010284.01248462}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.8873441,\n", " 'depth': 10,\n", " 'bids': {'in': 79972614.4116666, 'out': 79420592.85670833},\n", " 'asks': {'in': 63414391.013473004, 'out': 63235898.35141212}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.8875809,\n", " 'depth': 10,\n", " 'bids': {'in': 80032225.9209312, 'out': 79473059.61540014},\n", " 'asks': {'in': 63713668.81669681, 'out': 63511283.054196015}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.887816,\n", " 'depth': 10,\n", " 'bids': {'in': 80124003.1050307, 'out': 79572213.63043433},\n", " 'asks': {'in': 63938525.55294771, 'out': 63738882.573189214}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.888053,\n", " 'depth': 10,\n", " 'bids': {'in': 80230051.2993767, 'out': 79683371.20912044},\n", " 'asks': {'in': 63967103.654053405, 'out': 63813348.73542261}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.888289,\n", " 'depth': 10,\n", " 'bids': {'in': 80368104.1772044, 'out': 79761420.61067094},\n", " 'asks': {'in': 64019852.71990181, 'out': 63967735.57339231}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.888541,\n", " 'depth': 10,\n", " 'bids': {'in': 80461201.1132579, 'out': 79838531.85879494},\n", " 'asks': {'in': 64103706.03971381, 'out': 64198338.61327761}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.8887758,\n", " 'depth': 10,\n", " 'bids': {'in': 80542567.8184656, 'out': 80004148.47882494},\n", " 'asks': {'in': 64212209.50297361, 'out': 64234656.585788704}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.889007,\n", " 'depth': 10,\n", " 'bids': {'in': 80581952.38208121, 'out': 80043534.24735074},\n", " 'asks': {'in': 64344046.48803861, 'out': 64277442.81979351}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.889236,\n", " 'depth': 10,\n", " 'bids': {'in': 80647077.7201095, 'out': 80072523.03822914},\n", " 'asks': {'in': 64389584.040169604, 'out': 64330823.49489321}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.889487,\n", " 'depth': 10,\n", " 'bids': {'in': 80706870.7800433, 'out': 80138801.99513224},\n", " 'asks': {'in': 64441658.7539691, 'out': 64501887.37037251}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.889719,\n", " 'depth': 10,\n", " 'bids': {'in': 80786938.9012305, 'out': 80220246.94456095},\n", " 'asks': {'in': 64504725.2795248, 'out': 64541224.76305031}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.88995,\n", " 'depth': 10,\n", " 'bids': {'in': 80792267.3961123, 'out': 80358827.36254874},\n", " 'asks': {'in': 64635372.332256906, 'out': 64704029.09107881}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.890184,\n", " 'depth': 10,\n", " 'bids': {'in': 80984649.2224491, 'out': 80513377.62713903},\n", " 'asks': {'in': 64806882.776227504, 'out': 64737331.54576551}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.890517,\n", " 'depth': 10,\n", " 'bids': {'in': 82733735.33326569, 'out': 81447290.63115323},\n", " 'asks': {'in': 67113295.16798921, 'out': 65956883.882856116}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.8908958,\n", " 'depth': 10,\n", " 'bids': {'in': 83065454.00094889, 'out': 81973254.56460503},\n", " 'asks': {'in': 67565268.60898681, 'out': 67592985.72520381}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.891187,\n", " 'depth': 10,\n", " 'bids': {'in': 83506578.6397588, 'out': 82293663.39770733},\n", " 'asks': {'in': 67786675.6374388, 'out': 67792852.70824382}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.891451,\n", " 'depth': 10,\n", " 'bids': {'in': 83762038.3906, 'out': 82895966.43508543},\n", " 'asks': {'in': 67831825.8136266, 'out': 67825785.55671221}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.8917382,\n", " 'depth': 10,\n", " 'bids': {'in': 84272878.00385, 'out': 83550428.51339753},\n", " 'asks': {'in': 68230210.19584571, 'out': 68167300.57031772}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.892017,\n", " 'depth': 10,\n", " 'bids': {'in': 84712858.4388532, 'out': 83633823.36950213},\n", " 'asks': {'in': 68571952.04026951, 'out': 68481818.76428922}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.892273,\n", " 'depth': 10,\n", " 'bids': {'in': 85097202.51564111, 'out': 83911448.24234983},\n", " 'asks': {'in': 68786286.42888401, 'out': 68685427.15947792}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.892523,\n", " 'depth': 10,\n", " 'bids': {'in': 85177384.5267674, 'out': 83991630.26257274},\n", " 'asks': {'in': 68815414.90070112, 'out': 68729277.77413312}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.8927722,\n", " 'depth': 10,\n", " 'bids': {'in': 85241738.4312977, 'out': 84189974.19700463},\n", " 'asks': {'in': 68845954.15154532, 'out': 68758734.28175992}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.893027,\n", " 'depth': 10,\n", " 'bids': {'in': 85446134.19201961, 'out': 84421348.47033644},\n", " 'asks': {'in': 68882553.08207522, 'out': 68889606.05526352}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.893282,\n", " 'depth': 10,\n", " 'bids': {'in': 85714760.22533222, 'out': 84570556.20675024},\n", " 'asks': {'in': 69014410.95420192, 'out': 68926739.42755502}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.8935318,\n", " 'depth': 10,\n", " 'bids': {'in': 85892895.29533301, 'out': 84749197.51961735},\n", " 'asks': {'in': 69043367.50926782, 'out': 68998974.09038723}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.893774,\n", " 'depth': 10,\n", " 'bids': {'in': 86168255.48641361, 'out': 84926683.03561816},\n", " 'asks': {'in': 69073033.86362632, 'out': 69078426.37258753}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.894026,\n", " 'depth': 10,\n", " 'bids': {'in': 86349494.88203801, 'out': 85211109.79750305},\n", " 'asks': {'in': 69327297.85310762, 'out': 69282808.34846014}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.8942988,\n", " 'depth': 10,\n", " 'bids': {'in': 86718863.92395751, 'out': 85663238.94811675},\n", " 'asks': {'in': 69734041.09976971, 'out': 69919575.52456793}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.8945768,\n", " 'depth': 10,\n", " 'bids': {'in': 87131375.69004141, 'out': 85949368.82887734},\n", " 'asks': {'in': 69966809.90220101, 'out': 70145530.47788543}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.8948421,\n", " 'depth': 10,\n", " 'bids': {'in': 87285527.7934916, 'out': 86196838.43847135},\n", " 'asks': {'in': 70336089.48930481, 'out': 70378575.71156652}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.895094,\n", " 'depth': 10,\n", " 'bids': {'in': 87455190.24027461, 'out': 86340593.30509195},\n", " 'asks': {'in': 70372834.02296601, 'out': 70408407.14176762}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.895348,\n", " 'depth': 10,\n", " 'bids': {'in': 87511942.93653621, 'out': 86453987.85006444},\n", " 'asks': {'in': 70433723.48724481, 'out': 70493106.03330602}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.895597,\n", " 'depth': 10,\n", " 'bids': {'in': 87612851.2686011, 'out': 86517979.35073404},\n", " 'asks': {'in': 70470823.86110911, 'out': 70528023.69513512}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.895861,\n", " 'depth': 10,\n", " 'bids': {'in': 88143655.130103, 'out': 86984612.37197204},\n", " 'asks': {'in': 70676294.8329892, 'out': 70711647.35719942}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.8961248,\n", " 'depth': 10,\n", " 'bids': {'in': 88432905.5001696, 'out': 87278172.97051944},\n", " 'asks': {'in': 70806961.82211511, 'out': 70847476.91984181}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.89637,\n", " 'depth': 10,\n", " 'bids': {'in': 88586677.7985298, 'out': 87337532.31255764},\n", " 'asks': {'in': 70840130.98776981, 'out': 70880646.36896771}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.896611,\n", " 'depth': 10,\n", " 'bids': {'in': 88849954.77009021, 'out': 87735605.45972703},\n", " 'asks': {'in': 70849463.86749071, 'out': 70889979.30732101}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.896873,\n", " 'depth': 10,\n", " 'bids': {'in': 89063351.8534809, 'out': 87792362.08397493},\n", " 'asks': {'in': 70885134.24713011, 'out': 70923729.59175111}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.897124,\n", " 'depth': 10,\n", " 'bids': {'in': 89474444.12662481, 'out': 88161936.14325602},\n", " 'asks': {'in': 71005732.40067841, 'out': 71036899.93302521}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.897386,\n", " 'depth': 10,\n", " 'bids': {'in': 89615228.44077861, 'out': 88438133.31947382},\n", " 'asks': {'in': 71017194.24884811, 'out': 71047018.55667251}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.8976262,\n", " 'depth': 10,\n", " 'bids': {'in': 89824605.24169561, 'out': 88494447.31382822},\n", " 'asks': {'in': 71028022.8694767, 'out': 71052684.52495071}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.897873,\n", " 'depth': 10,\n", " 'bids': {'in': 89866649.85235262, 'out': 88615100.73205172},\n", " 'asks': {'in': 71165982.69878851, 'out': 71191484.80100021}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.898116,\n", " 'depth': 10,\n", " 'bids': {'in': 89927581.42839712, 'out': 88781980.25718522},\n", " 'asks': {'in': 71185372.34145571, 'out': 71207788.18983251}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.898365,\n", " 'depth': 10,\n", " 'bids': {'in': 90121761.94838722, 'out': 88980863.46228021},\n", " 'asks': {'in': 71217800.06343631, 'out': 71262005.39637841}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.8986099,\n", " 'depth': 10,\n", " 'bids': {'in': 90321541.06812403, 'out': 89216019.28759362},\n", " 'asks': {'in': 71247258.64050831, 'out': 71291963.63326831}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.898842,\n", " 'depth': 10,\n", " 'bids': {'in': 90452633.57476602, 'out': 89249757.03482492},\n", " 'asks': {'in': 71275511.6616106, 'out': 71413963.1172758}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.899094,\n", " 'depth': 10,\n", " 'bids': {'in': 90492869.14303252, 'out': 89289992.34545092},\n", " 'asks': {'in': 71402468.4764895, 'out': 71446672.72451891}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.8993301,\n", " 'depth': 10,\n", " 'bids': {'in': 90505658.46819831, 'out': 89294989.75970753},\n", " 'asks': {'in': 71434744.3440346, 'out': 71478948.1942618}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.899564,\n", " 'depth': 10,\n", " 'bids': {'in': 90595345.04785031, 'out': 89513197.97617333},\n", " 'asks': {'in': 71440200.7589403, 'out': 71509663.0300506}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.8998,\n", " 'depth': 10,\n", " 'bids': {'in': 90715116.35867661, 'out': 89535563.56527072},\n", " 'asks': {'in': 71445657.1331849, 'out': 71515127.03138131}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.900042,\n", " 'depth': 10,\n", " 'bids': {'in': 90753460.62192361, 'out': 89621567.52510951},\n", " 'asks': {'in': 71477874.4414948, 'out': 71544585.21028271}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.900277,\n", " 'depth': 10,\n", " 'bids': {'in': 90830378.22411092, 'out': 89643933.18325251},\n", " 'asks': {'in': 71507332.8366825, 'out': 71591380.3981848}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.900511,\n", " 'depth': 10,\n", " 'bids': {'in': 90852743.91897212, 'out': 89720850.78543982},\n", " 'asks': {'in': 71686730.0682855, 'out': 71770316.057656}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.9007528,\n", " 'depth': 10,\n", " 'bids': {'in': 91013361.11179082, 'out': 89869355.47417963},\n", " 'asks': {'in': 71741734.3562086, 'out': 71806896.98869741}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.90101,\n", " 'depth': 10,\n", " 'bids': {'in': 91201843.37110162, 'out': 90014990.00528042},\n", " 'asks': {'in': 71815519.5327988, 'out': 71881771.08964841}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.901265,\n", " 'depth': 10,\n", " 'bids': {'in': 91390539.20934992, 'out': 90285948.30034032},\n", " 'asks': {'in': 71892129.3182182, 'out': 71925993.7052807}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.901524,\n", " 'depth': 10,\n", " 'bids': {'in': 91749897.29976031, 'out': 90684312.43704222},\n", " 'asks': {'in': 72208488.3441557, 'out': 72234012.2855149}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.9017842,\n", " 'depth': 10,\n", " 'bids': {'in': 91940544.25752981, 'out': 90740381.44266702},\n", " 'asks': {'in': 72221622.5661951, 'out': 72247038.4728398}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.9020329,\n", " 'depth': 10,\n", " 'bids': {'in': 92120975.37741221, 'out': 90942054.64683162},\n", " 'asks': {'in': 72265868.8834667, 'out': 72291259.6393238}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.9022772,\n", " 'depth': 10,\n", " 'bids': {'in': 92178161.60553342, 'out': 91067780.45022902},\n", " 'asks': {'in': 72298540.97594331, 'out': 72323956.6117759}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.902516,\n", " 'depth': 10,\n", " 'bids': {'in': 92234265.67749181, 'out': 91123884.27535021},\n", " 'asks': {'in': 72332272.91949661, 'out': 72357678.8279375}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.902758,\n", " 'depth': 10,\n", " 'bids': {'in': 92442806.72226831, 'out': 91277389.13730861},\n", " 'asks': {'in': 72370693.24462052, 'out': 72390853.0934913}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.903,\n", " 'depth': 10,\n", " 'bids': {'in': 92698340.05279942, 'out': 91587464.0086995},\n", " 'asks': {'in': 72422847.26024652, 'out': 72405822.33375481}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.903245,\n", " 'depth': 10,\n", " 'bids': {'in': 92805852.26919481, 'out': 92297090.1995904},\n", " 'asks': {'in': 72456521.70201972, 'out': 72481435.26327221}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.9035032,\n", " 'depth': 10,\n", " 'bids': {'in': 93510727.81301591, 'out': 92343463.6912112},\n", " 'asks': {'in': 72530501.19959003, 'out': 72511943.23606181}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.903767,\n", " 'depth': 10,\n", " 'bids': {'in': 93801205.16369511, 'out': 93301080.5143998},\n", " 'asks': {'in': 72563175.40311863, 'out': 72546962.11120701}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.904026,\n", " 'depth': 10,\n", " 'bids': {'in': 93881313.51907872, 'out': 93476257.111451},\n", " 'asks': {'in': 72598691.47777793, 'out': 72580136.2596551}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.904295,\n", " 'depth': 10,\n", " 'bids': {'in': 94014273.26441462, 'out': 93556365.4668346},\n", " 'asks': {'in': 72628156.61953263, 'out': 72609593.41103831}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.9045582,\n", " 'depth': 10,\n", " 'bids': {'in': 94087542.04456742, 'out': 93891286.11946361},\n", " 'asks': {'in': 72661328.59203254, 'out': 72685161.78247161}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.9048,\n", " 'depth': 10,\n", " 'bids': {'in': 94143660.28313522, 'out': 93947404.2401548},\n", " 'asks': {'in': 72669999.29980044, 'out': 72696177.2373698}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.905053,\n", " 'depth': 10,\n", " 'bids': {'in': 94424579.44582082, 'out': 94231811.0034922},\n", " 'asks': {'in': 72747912.11200544, 'out': 72863873.4359525}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.9053051,\n", " 'depth': 10,\n", " 'bids': {'in': 94705935.09318942, 'out': 94564586.6391509},\n", " 'asks': {'in': 72916045.26465084, 'out': 72905987.0728315}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.905552,\n", " 'depth': 10,\n", " 'bids': {'in': 94957777.46248052, 'out': 94591295.0024367},\n", " 'asks': {'in': 72953048.28438354, 'out': 72987733.4984787}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.905805,\n", " 'depth': 10,\n", " 'bids': {'in': 95212918.53506482, 'out': 94770635.1367794},\n", " 'asks': {'in': 73030953.38924013, 'out': 73020904.8191309}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.906052,\n", " 'depth': 10,\n", " 'bids': {'in': 95385427.32050581, 'out': 94898597.6555822},\n", " 'asks': {'in': 73055454.20794523, 'out': 73046488.4949185}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.906296,\n", " 'depth': 10,\n", " 'bids': {'in': 95441545.53622521, 'out': 94954715.89494881},\n", " 'asks': {'in': 73084419.27965173, 'out': 73078694.7521191}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.906534,\n", " 'depth': 10,\n", " 'bids': {'in': 95569508.02756241, 'out': 95029827.22907001},\n", " 'asks': {'in': 73084919.21533723, 'out': 73079194.69703859}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.906781,\n", " 'depth': 10,\n", " 'bids': {'in': 95747017.36480752, 'out': 95207333.1085758},\n", " 'asks': {'in': 73118090.40170114, 'out': 73112365.9474711}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.9070332,\n", " 'depth': 10,\n", " 'bids': {'in': 95863952.19192481, 'out': 95340292.91099891},\n", " 'asks': {'in': 73130009.26736474, 'out': 73163432.9768959}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.907274,\n", " 'depth': 10,\n", " 'bids': {'in': 95991914.8782829, 'out': 95415404.364967},\n", " 'asks': {'in': 73181568.66955075, 'out': 73172603.297479}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.9075148,\n", " 'depth': 10,\n", " 'bids': {'in': 96073105.966381, 'out': 95548364.2208171},\n", " 'asks': {'in': 73214764.41029054, 'out': 73205774.49820061}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.907757,\n", " 'depth': 10,\n", " 'bids': {'in': 96124227.410599, 'out': 95599485.6017472},\n", " 'asks': {'in': 73215264.34597604, 'out': 73206292.10028781}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.908003,\n", " 'depth': 10,\n", " 'bids': {'in': 96224780.34050399, 'out': 95904395.6946667},\n", " 'asks': {'in': 73249335.66030714, 'out': 73290583.3062185}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.9082649,\n", " 'depth': 10,\n", " 'bids': {'in': 96418732.08741659, 'out': 96061674.784224},\n", " 'asks': {'in': 73289709.03094053, 'out': 73590738.05635421}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.9085581,\n", " 'depth': 10,\n", " 'bids': {'in': 96767516.47342609, 'out': 96454336.1731762},\n", " 'asks': {'in': 73552294.13272813, 'out': 73793399.6484352}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.908826,\n", " 'depth': 10,\n", " 'bids': {'in': 97162723.94332808, 'out': 96598260.0049284},\n", " 'asks': {'in': 73862664.28756553, 'out': 74108274.4574081}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.9091089,\n", " 'depth': 10,\n", " 'bids': {'in': 97672491.60197388, 'out': 97006752.14725679},\n", " 'asks': {'in': 74334950.56674683, 'out': 74506101.4714061}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.909397,\n", " 'depth': 10,\n", " 'bids': {'in': 97864655.75169748, 'out': 97207562.51859659},\n", " 'asks': {'in': 74497009.66164643, 'out': 74555662.6353332}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.909666,\n", " 'depth': 10,\n", " 'bids': {'in': 98009928.52295798, 'out': 97350718.63889179},\n", " 'asks': {'in': 74554964.79480892, 'out': 74638330.65078689}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.909933,\n", " 'depth': 10,\n", " 'bids': {'in': 98138602.27646658, 'out': 97687894.52046178},\n", " 'asks': {'in': 74682193.50929123, 'out': 74890193.18321739}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.910205,\n", " 'depth': 10,\n", " 'bids': {'in': 98539900.66510507, 'out': 98096593.23084119},\n", " 'asks': {'in': 74833376.89678273, 'out': 74954380.0279651}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.910484,\n", " 'depth': 10,\n", " 'bids': {'in': 98641283.24347307, 'out': 98190416.74105999},\n", " 'asks': {'in': 75085404.36161563, 'out': 75220596.1530354}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.910828,\n", " 'depth': 10,\n", " 'bids': {'in': 99425256.00320856, 'out': 98872866.59532818},\n", " 'asks': {'in': 76069671.25659193, 'out': 76381352.6798177}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.911191,\n", " 'depth': 10,\n", " 'bids': {'in': 99865748.83276306, 'out': 99319194.26262729},\n", " 'asks': {'in': 76785439.69096743, 'out': 76707618.0096312}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.9115121,\n", " 'depth': 10,\n", " 'bids': {'in': 100420833.66923976, 'out': 99776621.2995766},\n", " 'asks': {'in': 77054685.98209943, 'out': 77233420.8371371}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.911813,\n", " 'depth': 10,\n", " 'bids': {'in': 100845807.02333327, 'out': 100168045.42804499},\n", " 'asks': {'in': 77237875.88080873, 'out': 77249340.9624313}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.912141,\n", " 'depth': 10,\n", " 'bids': {'in': 101561052.85072897, 'out': 100894059.13954619},\n", " 'asks': {'in': 79328575.97453593, 'out': 78005658.3084252}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.912529,\n", " 'depth': 10,\n", " 'bids': {'in': 102272557.97897567, 'out': 101740892.92530678},\n", " 'asks': {'in': 79641682.06759512, 'out': 79151843.9052034}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.912858,\n", " 'depth': 10,\n", " 'bids': {'in': 102897255.29537377, 'out': 102303626.86591989},\n", " 'asks': {'in': 80004863.19727732, 'out': 80170604.8201149}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.913151,\n", " 'depth': 10,\n", " 'bids': {'in': 103226306.71900266, 'out': 102620740.41258739},\n", " 'asks': {'in': 80219379.31872812, 'out': 80357641.57027909}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.913423,\n", " 'depth': 10,\n", " 'bids': {'in': 103346173.86941287, 'out': 102747008.36026868},\n", " 'asks': {'in': 80323082.41716641, 'out': 80471658.37834749}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.9136949,\n", " 'depth': 10,\n", " 'bids': {'in': 103412506.59880766, 'out': 102973388.91546099},\n", " 'asks': {'in': 80591744.07574521, 'out': 80767299.62469429}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.91398,\n", " 'depth': 10,\n", " 'bids': {'in': 103611979.45536457, 'out': 103051334.67775218},\n", " 'asks': {'in': 80715422.80987981, 'out': 80883633.68878919}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.914238,\n", " 'depth': 10,\n", " 'bids': {'in': 103706615.28117917, 'out': 103115165.60674658},\n", " 'asks': {'in': 80724297.42614451, 'out': 80919995.0897352}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.9144971,\n", " 'depth': 10,\n", " 'bids': {'in': 103789769.61725917, 'out': 103178543.14403999},\n", " 'asks': {'in': 80855359.61444712, 'out': 81050889.8524919}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.914769,\n", " 'depth': 10,\n", " 'bids': {'in': 103854974.29484667, 'out': 103249018.86689709},\n", " 'asks': {'in': 81066526.66511671, 'out': 81132979.0424823}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.915061,\n", " 'depth': 10,\n", " 'bids': {'in': 104017889.85276927, 'out': 103622114.16645299},\n", " 'asks': {'in': 81317057.34122461, 'out': 81420960.7340716}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.915371,\n", " 'depth': 10,\n", " 'bids': {'in': 104279731.95469578, 'out': 103777062.29972568},\n", " 'asks': {'in': 81599258.72418801, 'out': 81763259.9950373}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.915651,\n", " 'depth': 10,\n", " 'bids': {'in': 104447385.38077657, 'out': 103915356.20807348},\n", " 'asks': {'in': 81882177.69631042, 'out': 82003363.4277534}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.915932,\n", " 'depth': 10,\n", " 'bids': {'in': 104809967.49342597, 'out': 104213789.24167548},\n", " 'asks': {'in': 82879637.38273291, 'out': 82493038.4875492}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.91632,\n", " 'depth': 10,\n", " 'bids': {'in': 105906584.07591377, 'out': 105498316.37247959},\n", " 'asks': {'in': 83851250.56976831, 'out': 83335977.8274776}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.916704,\n", " 'depth': 10,\n", " 'bids': {'in': 106444049.50454307, 'out': 105966771.37042749},\n", " 'asks': {'in': 84342926.27807891, 'out': 83637782.2663617}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.917005,\n", " 'depth': 10,\n", " 'bids': {'in': 106793033.36051406, 'out': 106339206.9632828},\n", " 'asks': {'in': 84549084.04529051, 'out': 83861038.9213327}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.9173188,\n", " 'depth': 10,\n", " 'bids': {'in': 107292246.52948736, 'out': 106749088.0825772},\n", " 'asks': {'in': 85057125.59228462, 'out': 84116049.5595206}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.917639,\n", " 'depth': 10,\n", " 'bids': {'in': 107527210.44453116, 'out': 106914606.1873101},\n", " 'asks': {'in': 85103943.83084852, 'out': 84295398.3268334}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.9179251,\n", " 'depth': 10,\n", " 'bids': {'in': 107697636.19116716, 'out': 107051669.0872531},\n", " 'asks': {'in': 85202131.13280351, 'out': 84433553.4268765}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.9181912,\n", " 'depth': 10,\n", " 'bids': {'in': 107907728.06888196, 'out': 107393201.2549346},\n", " 'asks': {'in': 85207088.19193031, 'out': 84438510.4677061}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.918456,\n", " 'depth': 10,\n", " 'bids': {'in': 108119489.63912305, 'out': 107514667.82582769},\n", " 'asks': {'in': 85348128.1146499, 'out': 84573949.4174741}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.918723,\n", " 'depth': 10,\n", " 'bids': {'in': 108268335.78965235, 'out': 107600894.1769386},\n", " 'asks': {'in': 85377318.20755471, 'out': 84622025.80004011}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.9189901,\n", " 'depth': 10,\n", " 'bids': {'in': 108335695.82706665, 'out': 107673704.71170719},\n", " 'asks': {'in': 85383677.4600954, 'out': 84627982.6983201}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.91935,\n", " 'depth': 10,\n", " 'bids': {'in': 109350246.07009405, 'out': 108742075.44614409},\n", " 'asks': {'in': 86410371.35446371, 'out': 86795920.4255082}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.919762,\n", " 'depth': 10,\n", " 'bids': {'in': 110436111.89606015, 'out': 109817986.66638759},\n", " 'asks': {'in': 87478060.91527581, 'out': 87394009.0065594}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.920104,\n", " 'depth': 10,\n", " 'bids': {'in': 110773595.93029675, 'out': 110155546.33672309},\n", " 'asks': {'in': 87807848.1832281, 'out': 87687861.3248751}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.920479,\n", " 'depth': 10,\n", " 'bids': {'in': 111514782.98636915, 'out': 110919288.17508279},\n", " 'asks': {'in': 88298670.7128264, 'out': 88291330.4335144}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.920794,\n", " 'depth': 10,\n", " 'bids': {'in': 111748666.09867305, 'out': 111128702.89039499},\n", " 'asks': {'in': 88350788.0095823, 'out': 88424680.1147932}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.9211059,\n", " 'depth': 10,\n", " 'bids': {'in': 111883294.74794945, 'out': 111302924.57039268},\n", " 'asks': {'in': 88584632.8514218, 'out': 88713220.2541652}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.92144,\n", " 'depth': 10,\n", " 'bids': {'in': 112459058.28982276, 'out': 111991811.00086018},\n", " 'asks': {'in': 89106886.7481309, 'out': 89029679.2318765}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.9217541,\n", " 'depth': 10,\n", " 'bids': {'in': 112851192.27468196, 'out': 112130093.45847829},\n", " 'asks': {'in': 89425815.95247221, 'out': 89298893.8980347}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.922034,\n", " 'depth': 10,\n", " 'bids': {'in': 112996562.39179556, 'out': 112311171.68695559},\n", " 'asks': {'in': 89470059.43074101, 'out': 89440396.6455618}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.922366,\n", " 'depth': 10,\n", " 'bids': {'in': 113805878.75433587, 'out': 113201988.53481749},\n", " 'asks': {'in': 91476337.7348189, 'out': 90579166.7317818}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.922755,\n", " 'depth': 10,\n", " 'bids': {'in': 114854792.10377787, 'out': 114349774.96853429},\n", " 'asks': {'in': 92257087.28302641, 'out': 92366689.8798769}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.923114,\n", " 'depth': 10,\n", " 'bids': {'in': 115452148.68484376, 'out': 115087424.10793439},\n", " 'asks': {'in': 92632608.3419052, 'out': 92870628.673921}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.923433,\n", " 'depth': 10,\n", " 'bids': {'in': 115810417.10128197, 'out': 115304023.11896048},\n", " 'asks': {'in': 93136829.5305732, 'out': 93117134.9599709}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.923717,\n", " 'depth': 10,\n", " 'bids': {'in': 115894481.19194117, 'out': 115385166.97087139},\n", " 'asks': {'in': 93399883.68710111, 'out': 93413001.8877334}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.9239979,\n", " 'depth': 10,\n", " 'bids': {'in': 116071415.05700926, 'out': 115501519.63633099},\n", " 'asks': {'in': 93440993.39758871, 'out': 93541296.7374929}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.924277,\n", " 'depth': 10,\n", " 'bids': {'in': 116156143.28095856, 'out': 115583994.51441939},\n", " 'asks': {'in': 93703259.58481531, 'out': 93850941.8837959}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.924547,\n", " 'depth': 10,\n", " 'bids': {'in': 116251505.23023246, 'out': 115735508.1176581},\n", " 'asks': {'in': 93743283.2861751, 'out': 93892440.6996063}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.924869,\n", " 'depth': 10,\n", " 'bids': {'in': 116945361.69628136, 'out': 116441120.8325605},\n", " 'asks': {'in': 94305763.56660551, 'out': 94216778.5289459}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.925193,\n", " 'depth': 10,\n", " 'bids': {'in': 117124373.78621736, 'out': 116502028.0567212},\n", " 'asks': {'in': 94531941.7943125, 'out': 94403972.25317039}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.9255118,\n", " 'depth': 10,\n", " 'bids': {'in': 117585280.34547156, 'out': 117002878.25987789},\n", " 'asks': {'in': 95609754.5978807, 'out': 95033338.19546568}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.925864,\n", " 'depth': 10,\n", " 'bids': {'in': 118595359.14150326, 'out': 118093782.52170219},\n", " 'asks': {'in': 96149011.4296799, 'out': 96186527.45658259}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.926215,\n", " 'depth': 10,\n", " 'bids': {'in': 119151884.97078486, 'out': 118822948.95789048},\n", " 'asks': {'in': 96664084.2934171, 'out': 96538901.72241569}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.92652,\n", " 'depth': 10,\n", " 'bids': {'in': 119773633.72628306, 'out': 119142661.75892918},\n", " 'asks': {'in': 96829314.6296206, 'out': 96666289.39668289}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.9268029,\n", " 'depth': 10,\n", " 'bids': {'in': 119951553.35332476, 'out': 119518859.96733998},\n", " 'asks': {'in': 96983288.18867789, 'out': 96844387.90047918}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.927082,\n", " 'depth': 10,\n", " 'bids': {'in': 120195808.91190796, 'out': 119692124.59784628},\n", " 'asks': {'in': 97019561.2577011, 'out': 96880660.78029338}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.9273531,\n", " 'depth': 10,\n", " 'bids': {'in': 120295006.89823626, 'out': 119807825.93172619},\n", " 'asks': {'in': 97117805.5240467, 'out': 96985645.49025637}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.9276211,\n", " 'depth': 10,\n", " 'bids': {'in': 120510969.95383546, 'out': 119985951.69592829},\n", " 'asks': {'in': 97240029.2483899, 'out': 97114691.34243847}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.927902,\n", " 'depth': 10,\n", " 'bids': {'in': 120956546.30746555, 'out': 120545497.6647708},\n", " 'asks': {'in': 97773650.2037343, 'out': 97570400.94295268}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.9282079,\n", " 'depth': 10,\n", " 'bids': {'in': 121372841.40668085, 'out': 121045122.6848875},\n", " 'asks': {'in': 98111438.0524313, 'out': 97986150.62790957}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.92851,\n", " 'depth': 10,\n", " 'bids': {'in': 121670538.59121525, 'out': 121295847.764997},\n", " 'asks': {'in': 98319196.2091796, 'out': 98190939.10075517}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.928808,\n", " 'depth': 10,\n", " 'bids': {'in': 121853302.36569655, 'out': 121379253.20448351},\n", " 'asks': {'in': 98497897.13840759, 'out': 98353324.63721266}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.929078,\n", " 'depth': 10,\n", " 'bids': {'in': 121990451.97092855, 'out': 121465027.11061081},\n", " 'asks': {'in': 98719980.56488378, 'out': 98571637.62556957}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.929369,\n", " 'depth': 10,\n", " 'bids': {'in': 122083237.21082506, 'out': 121560015.51197901},\n", " 'asks': {'in': 98927244.28275028, 'out': 98819826.55958477}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.9296799,\n", " 'depth': 10,\n", " 'bids': {'in': 122358692.30131416, 'out': 122472963.78124201},\n", " 'asks': {'in': 99080473.58244237, 'out': 99027933.82452357}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.930016,\n", " 'depth': 10,\n", " 'bids': {'in': 122798073.17957696, 'out': 122832322.58931722},\n", " 'asks': {'in': 99521131.06008217, 'out': 99444959.77345766}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.9303172,\n", " 'depth': 10,\n", " 'bids': {'in': 123409432.11610186, 'out': 123247416.46800362},\n", " 'asks': {'in': 99909790.67375046, 'out': 99767747.64352275}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.9306052,\n", " 'depth': 10,\n", " 'bids': {'in': 123563432.97496486, 'out': 123349915.63264622},\n", " 'asks': {'in': 99948000.70362996, 'out': 99911341.11940186}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.930881,\n", " 'depth': 10,\n", " 'bids': {'in': 123710998.83629055, 'out': 123454407.31619231},\n", " 'asks': {'in': 100057492.16663605, 'out': 99925306.66946095}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.9311528,\n", " 'depth': 10,\n", " 'bids': {'in': 123805611.34581095, 'out': 123549019.67393531},\n", " 'asks': {'in': 100101921.42482665, 'out': 100062016.72851905}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.931426,\n", " 'depth': 10,\n", " 'bids': {'in': 123956085.01623255, 'out': 123685549.0277151},\n", " 'asks': {'in': 100236150.02041306, 'out': 100105225.63987605}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.931703,\n", " 'depth': 10,\n", " 'bids': {'in': 124046538.57887895, 'out': 123871025.4190305},\n", " 'asks': {'in': 100453873.76405415, 'out': 100325882.58960915}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.932051,\n", " 'depth': 10,\n", " 'bids': {'in': 126447756.34947886, 'out': 124807614.9515291},\n", " 'asks': {'in': 101397781.68478274, 'out': 101214459.27300425}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.9324129,\n", " 'depth': 10,\n", " 'bids': {'in': 126999615.71444425, 'out': 125208404.9791439},\n", " 'asks': {'in': 101697820.13472144, 'out': 101537653.86477695}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.9327202,\n", " 'depth': 10,\n", " 'bids': {'in': 127279353.00074396, 'out': 125333087.27600831},\n", " 'asks': {'in': 102069809.18542744, 'out': 101822355.76961896}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.933008,\n", " 'depth': 10,\n", " 'bids': {'in': 127440088.37354936, 'out': 125443220.6061408},\n", " 'asks': {'in': 102286099.33631924, 'out': 102031171.12737596}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.933291,\n", " 'depth': 10,\n", " 'bids': {'in': 127469074.28435695, 'out': 125472848.47705571},\n", " 'asks': {'in': 102323906.90601324, 'out': 102063874.49693306}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.933572,\n", " 'depth': 10,\n", " 'bids': {'in': 127518832.60020836, 'out': 125543315.30736691},\n", " 'asks': {'in': 102466484.47710504, 'out': 102211551.32358585}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.9338639,\n", " 'depth': 10,\n", " 'bids': {'in': 127614452.67454575, 'out': 125598017.88997251},\n", " 'asks': {'in': 102514817.15405343, 'out': 102253129.52997175}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.93414,\n", " 'depth': 10,\n", " 'bids': {'in': 127658438.32527065, 'out': 125627333.34640831},\n", " 'asks': {'in': 102544276.44678023, 'out': 102282588.50900945}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.934408,\n", " 'depth': 10,\n", " 'bids': {'in': 127738034.92317246, 'out': 126346808.9150768},\n", " 'asks': {'in': 102744060.62299713, 'out': 102482378.56949325}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.934686,\n", " 'depth': 10,\n", " 'bids': {'in': 128107985.89277516, 'out': 127381838.15598111},\n", " 'asks': {'in': 103106943.82858653, 'out': 102847611.02924795}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.934974,\n", " 'depth': 10,\n", " 'bids': {'in': 128351056.46971497, 'out': 128007114.60197681},\n", " 'asks': {'in': 103128436.19980124, 'out': 102930998.54616925}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.9352582,\n", " 'depth': 10,\n", " 'bids': {'in': 128488479.71688446, 'out': 128144535.74062932},\n", " 'asks': {'in': 103316873.85708724, 'out': 103125910.24879046}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.9355452,\n", " 'depth': 10,\n", " 'bids': {'in': 128758993.74883926, 'out': 128485128.66966312},\n", " 'asks': {'in': 103419966.94264774, 'out': 103300241.16395105}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.935869,\n", " 'depth': 10,\n", " 'bids': {'in': 129204815.35522996, 'out': 128939959.86642282},\n", " 'asks': {'in': 103894417.62617424, 'out': 104019870.02784106}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.9362822,\n", " 'depth': 10,\n", " 'bids': {'in': 130413058.20585826, 'out': 129895572.19010131},\n", " 'asks': {'in': 106219194.45220244, 'out': 104883543.25604986}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.936695,\n", " 'depth': 10,\n", " 'bids': {'in': 130788714.13821006, 'out': 130729771.72859481},\n", " 'asks': {'in': 106874671.17679414, 'out': 106087439.95976906}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.9370549,\n", " 'depth': 10,\n", " 'bids': {'in': 131346461.08264726, 'out': 130917203.94603191},\n", " 'asks': {'in': 107262655.15226685, 'out': 107095790.40136546}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.937362,\n", " 'depth': 10,\n", " 'bids': {'in': 131545093.07869886, 'out': 131100411.62649362},\n", " 'asks': {'in': 108234324.11987025, 'out': 107357014.85862496}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.937661,\n", " 'depth': 10,\n", " 'bids': {'in': 131630460.39570026, 'out': 131239187.46485151},\n", " 'asks': {'in': 108269235.98936425, 'out': 108096902.16711487}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.93795,\n", " 'depth': 10,\n", " 'bids': {'in': 131792871.45255616, 'out': 131341818.5207899},\n", " 'asks': {'in': 108377412.13293085, 'out': 108216415.15501396}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.9382558,\n", " 'depth': 10,\n", " 'bids': {'in': 132294191.55636317, 'out': 131915501.71077141},\n", " 'asks': {'in': 110083263.15828104, 'out': 108727145.65131067}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.938581,\n", " 'depth': 10,\n", " 'bids': {'in': 132844560.02794527, 'out': 132404451.5400207},\n", " 'asks': {'in': 110161994.70431845, 'out': 109489348.79598127}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.938883,\n", " 'depth': 10,\n", " 'bids': {'in': 133158577.01279257, 'out': 132734174.9739096},\n", " 'asks': {'in': 110176996.32719745, 'out': 109498051.61612298}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.939214,\n", " 'depth': 10,\n", " 'bids': {'in': 133594942.65743618, 'out': 133127661.9256124},\n", " 'asks': {'in': 111304822.20835555, 'out': 109858689.77882877}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.939578,\n", " 'depth': 10,\n", " 'bids': {'in': 133911962.52467968, 'out': 133376863.0461141},\n", " 'asks': {'in': 111581419.95029405, 'out': 109950107.27230418}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.939893,\n", " 'depth': 10,\n", " 'bids': {'in': 134105133.17840408, 'out': 133606219.5915211},\n", " 'asks': {'in': 112008440.47440335, 'out': 110594820.20988038}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.9402099,\n", " 'depth': 10,\n", " 'bids': {'in': 134304368.90097958, 'out': 133861545.8962667},\n", " 'asks': {'in': 112249121.03935035, 'out': 110920234.74478218}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.940515,\n", " 'depth': 10,\n", " 'bids': {'in': 134542962.29375187, 'out': 134145982.1216308},\n", " 'asks': {'in': 112538476.50604485, 'out': 111119325.15365978}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.9408052,\n", " 'depth': 10,\n", " 'bids': {'in': 134605161.13920566, 'out': 134202830.3208889},\n", " 'asks': {'in': 112549340.12901504, 'out': 111132565.57574257}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.941112,\n", " 'depth': 10,\n", " 'bids': {'in': 134925118.06755435, 'out': 134566677.0809339},\n", " 'asks': {'in': 112977797.32355385, 'out': 111613103.03629117}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.941428,\n", " 'depth': 10,\n", " 'bids': {'in': 135464575.42795566, 'out': 135071324.2566903},\n", " 'asks': {'in': 113369377.93610385, 'out': 111962741.63083687}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.941746,\n", " 'depth': 10,\n", " 'bids': {'in': 135872448.92326495, 'out': 135476790.5784405},\n", " 'asks': {'in': 113554723.39370695, 'out': 112052977.67004907}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.942049,\n", " 'depth': 10,\n", " 'bids': {'in': 136189813.77637005, 'out': 135761125.3004117},\n", " 'asks': {'in': 113802881.78676155, 'out': 112258793.16306987}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.9423628,\n", " 'depth': 10,\n", " 'bids': {'in': 136384181.80265325, 'out': 135954044.6496594},\n", " 'asks': {'in': 114073986.17957266, 'out': 112504586.98398717}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.942657,\n", " 'depth': 10,\n", " 'bids': {'in': 136510495.53599235, 'out': 136044912.7861312},\n", " 'asks': {'in': 114208353.10991785, 'out': 112639997.50449587}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.942973,\n", " 'depth': 10,\n", " 'bids': {'in': 136940147.31641185, 'out': 136691541.9746224},\n", " 'asks': {'in': 114529855.26679546, 'out': 112877455.18438748}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.943282,\n", " 'depth': 10,\n", " 'bids': {'in': 137136408.90585375, 'out': 136857007.8280019},\n", " 'asks': {'in': 114763927.97196816, 'out': 113078858.99346897}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.943574,\n", " 'depth': 10,\n", " 'bids': {'in': 137457141.55652055, 'out': 137253904.15243357},\n", " 'asks': {'in': 115080772.57504106, 'out': 113497896.67295997}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.943857,\n", " 'depth': 10,\n", " 'bids': {'in': 137635425.95303935, 'out': 137334731.47010046},\n", " 'asks': {'in': 115450179.86783476, 'out': 113825220.00788277}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.944133,\n", " 'depth': 10,\n", " 'bids': {'in': 137748066.44586995, 'out': 137410542.96636286},\n", " 'asks': {'in': 115726839.52210777, 'out': 114685275.77271497}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.944412,\n", " 'depth': 10,\n", " 'bids': {'in': 137811438.78965795, 'out': 137477161.43042886},\n", " 'asks': {'in': 116453581.18419616, 'out': 114727773.50265017}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.9446888,\n", " 'depth': 10,\n", " 'bids': {'in': 137981462.34762225, 'out': 137637352.07681686},\n", " 'asks': {'in': 116473126.43378197, 'out': 115474018.46817137}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.94497,\n", " 'depth': 10,\n", " 'bids': {'in': 138081435.93986064, 'out': 137846331.03540987},\n", " 'asks': {'in': 117189507.88985306, 'out': 115507010.57355137}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.945256,\n", " 'depth': 10,\n", " 'bids': {'in': 138242261.34286875, 'out': 138007154.22956738},\n", " 'asks': {'in': 117230584.13769786, 'out': 116281404.56984207}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.945536,\n", " 'depth': 10,\n", " 'bids': {'in': 138401333.62929323, 'out': 138275081.11077887},\n", " 'asks': {'in': 117995693.92940216, 'out': 116440840.95397347}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.945812,\n", " 'depth': 10,\n", " 'bids': {'in': 138560536.26760525, 'out': 138417805.80473956},\n", " 'asks': {'in': 118174691.87321165, 'out': 117206400.95448378}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.94611,\n", " 'depth': 10,\n", " 'bids': {'in': 138864122.38032046, 'out': 138597479.56327617},\n", " 'asks': {'in': 118207245.63153066, 'out': 117237871.54237467}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.946384,\n", " 'depth': 10,\n", " 'bids': {'in': 138943473.47191885, 'out': 138655205.4775642},\n", " 'asks': {'in': 118266808.11059526, 'out': 117240852.07724006}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.9466538,\n", " 'depth': 10,\n", " 'bids': {'in': 139052054.35018864, 'out': 138718577.50876817},\n", " 'asks': {'in': 118302882.05275136, 'out': 117333507.50430216}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.946941,\n", " 'depth': 10,\n", " 'bids': {'in': 139144947.13218763, 'out': 138840443.07213888},\n", " 'asks': {'in': 118346505.17047927, 'out': 117375143.14064115}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.9472158,\n", " 'depth': 10,\n", " 'bids': {'in': 139323773.61416614, 'out': 138925749.36052817},\n", " 'asks': {'in': 118375966.37403826, 'out': 117404654.72840245}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.947545,\n", " 'depth': 10,\n", " 'bids': {'in': 139939576.50391704, 'out': 139832192.52675968},\n", " 'asks': {'in': 118797149.47560686, 'out': 118824044.58858486}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.947913,\n", " 'depth': 10,\n", " 'bids': {'in': 140318742.74961084, 'out': 140112168.4863261},\n", " 'asks': {'in': 119659625.30332716, 'out': 119066941.14120376}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.948242,\n", " 'depth': 10,\n", " 'bids': {'in': 140821144.38405675, 'out': 140501452.8599123},\n", " 'asks': {'in': 120067689.63152026, 'out': 120051663.57591866}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.948568,\n", " 'depth': 10,\n", " 'bids': {'in': 141183609.82965255, 'out': 140789157.928979},\n", " 'asks': {'in': 121098416.59241666, 'out': 120401675.56451225}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.94888,\n", " 'depth': 10,\n", " 'bids': {'in': 141399252.95584863, 'out': 140979893.34600782},\n", " 'asks': {'in': 121338563.49906296, 'out': 120610040.83300875}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.9491699,\n", " 'depth': 10,\n", " 'bids': {'in': 141689654.03169763, 'out': 141275535.41840893},\n", " 'asks': {'in': 121619062.43136285, 'out': 121527669.06433184}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.949458,\n", " 'depth': 10,\n", " 'bids': {'in': 141770675.60214192, 'out': 141359804.01475254},\n", " 'asks': {'in': 121694535.94280796, 'out': 121575578.16603124}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.949763,\n", " 'depth': 10,\n", " 'bids': {'in': 142124796.6232505, 'out': 141796867.84669623},\n", " 'asks': {'in': 122092408.85161516, 'out': 121902134.98550524}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.950069,\n", " 'depth': 10,\n", " 'bids': {'in': 142374452.2581379, 'out': 142023389.30905452},\n", " 'asks': {'in': 122260773.00730936, 'out': 122061044.56006163}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.950363,\n", " 'depth': 10,\n", " 'bids': {'in': 142521617.29110342, 'out': 142127126.81734273},\n", " 'asks': {'in': 122304423.84377746, 'out': 122258283.26302333}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.950664,\n", " 'depth': 10,\n", " 'bids': {'in': 142793759.65690383, 'out': 142422444.22760993},\n", " 'asks': {'in': 122437769.18112126, 'out': 122294077.41325553}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.9509602,\n", " 'depth': 10,\n", " 'bids': {'in': 142821298.93829873, 'out': 142452303.59956995},\n", " 'asks': {'in': 122455157.51922446, 'out': 122333157.02380763}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.9512398,\n", " 'depth': 10,\n", " 'bids': {'in': 142842550.05773574, 'out': 142470632.64943364},\n", " 'asks': {'in': 122482891.50933926, 'out': 122366215.91318083}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.9515278,\n", " 'depth': 10,\n", " 'bids': {'in': 142890086.43824425, 'out': 142521138.32036763},\n", " 'asks': {'in': 122517054.24129926, 'out': 122409296.41482273}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.951807,\n", " 'depth': 10,\n", " 'bids': {'in': 143055856.54293504, 'out': 142601479.92316854},\n", " 'asks': {'in': 122530124.81618036, 'out': 122419956.81498472}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.952091,\n", " 'depth': 10,\n", " 'bids': {'in': 143136048.81071416, 'out': 142685242.87115535},\n", " 'asks': {'in': 122777618.09499857, 'out': 122811401.00010313}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.9523919,\n", " 'depth': 10,\n", " 'bids': {'in': 143548304.03739095, 'out': 143087318.67379284},\n", " 'asks': {'in': 123154364.52551956, 'out': 123088033.95189664}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.952689,\n", " 'depth': 10,\n", " 'bids': {'in': 143617615.08303824, 'out': 143231738.00371465},\n", " 'asks': {'in': 123290105.11098577, 'out': 123251639.89860564}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.9529731,\n", " 'depth': 10,\n", " 'bids': {'in': 143799736.14309865, 'out': 143411868.72913435},\n", " 'asks': {'in': 123319565.76861607, 'out': 123281100.74307625}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.953258,\n", " 'depth': 10,\n", " 'bids': {'in': 144014367.25925466, 'out': 143593410.45419174},\n", " 'asks': {'in': 123355532.77292587, 'out': 123310561.40070654}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.953546,\n", " 'depth': 10,\n", " 'bids': {'in': 144097368.48406786, 'out': 143710261.38564774},\n", " 'asks': {'in': 123420942.94676147, 'out': 123350021.22628045}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.953829,\n", " 'depth': 10,\n", " 'bids': {'in': 144146626.70962265, 'out': 143775975.96923316},\n", " 'asks': {'in': 123621777.51567557, 'out': 123648415.97287466}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.954116,\n", " 'depth': 10,\n", " 'bids': {'in': 144284404.94826144, 'out': 143917341.00389427},\n", " 'asks': {'in': 123748791.07540298, 'out': 123678960.27550496}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.954416,\n", " 'depth': 10,\n", " 'bids': {'in': 144608987.30179593, 'out': 144388200.67807218},\n", " 'asks': {'in': 123934448.11029388, 'out': 123839486.68618016}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.9547021,\n", " 'depth': 10,\n", " 'bids': {'in': 145053388.94149104, 'out': 144718590.3125541},\n", " 'asks': {'in': 123961276.33967358, 'out': 123898335.43578877}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.954992,\n", " 'depth': 10,\n", " 'bids': {'in': 145187394.37300414, 'out': 144804139.2029282},\n", " 'asks': {'in': 124097277.86313789, 'out': 124062211.42822316}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.9552991,\n", " 'depth': 10,\n", " 'bids': {'in': 145231332.49750254, 'out': 144848077.35040838},\n", " 'asks': {'in': 124126980.88147248, 'out': 124128594.55619246}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.9555762,\n", " 'depth': 10,\n", " 'bids': {'in': 145282918.30476263, 'out': 144889535.80578476},\n", " 'asks': {'in': 124153560.11317888, 'out': 124153166.92472486}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.9558558,\n", " 'depth': 10,\n", " 'bids': {'in': 145332622.16955513, 'out': 144949366.73785135},\n", " 'asks': {'in': 124224886.06006888, 'out': 124188880.37598836}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.956144,\n", " 'depth': 10,\n", " 'bids': {'in': 145421250.76597443, 'out': 145041323.78216386},\n", " 'asks': {'in': 124538466.66937467, 'out': 124493065.08609787}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.9564512,\n", " 'depth': 10,\n", " 'bids': {'in': 145719424.42989025, 'out': 145364031.53177917},\n", " 'asks': {'in': 124696686.87072948, 'out': 124533741.99179897}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.956743,\n", " 'depth': 10,\n", " 'bids': {'in': 145787973.76454344, 'out': 145423039.30422238},\n", " 'asks': {'in': 124736814.12499538, 'out': 124611091.48377326}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.957037,\n", " 'depth': 10,\n", " 'bids': {'in': 145844503.17475405, 'out': 145482820.1985832},\n", " 'asks': {'in': 124747986.57550968, 'out': 124650195.40649846}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.957324,\n", " 'depth': 10,\n", " 'bids': {'in': 145930859.11369026, 'out': 145569684.24411818},\n", " 'asks': {'in': 124885172.62567559, 'out': 124780410.75267467}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.957609,\n", " 'depth': 10,\n", " 'bids': {'in': 146004691.30037665, 'out': 145616469.7012046},\n", " 'asks': {'in': 124898241.91686699, 'out': 124879800.58422427}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.9578922,\n", " 'depth': 10,\n", " 'bids': {'in': 146120964.71608266, 'out': 145696988.045049},\n", " 'asks': {'in': 124934814.76151888, 'out': 124916373.35940386}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.958178,\n", " 'depth': 10,\n", " 'bids': {'in': 146167419.86657476, 'out': 145779197.4573064},\n", " 'asks': {'in': 125027969.26990998, 'out': 125048018.76871976}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.9584682,\n", " 'depth': 10,\n", " 'bids': {'in': 146284021.90404275, 'out': 145860045.53175572},\n", " 'asks': {'in': 125159396.49642958, 'out': 125081610.82520986}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.9587588,\n", " 'depth': 10,\n", " 'bids': {'in': 146366044.96283206, 'out': 146068668.2771739},\n", " 'asks': {'in': 125210415.69948007, 'out': 125152376.31026106}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.9590662,\n", " 'depth': 10,\n", " 'bids': {'in': 146678284.18694946, 'out': 146211909.29556632},\n", " 'asks': {'in': 125506241.23564517, 'out': 125430686.99225995}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.959369,\n", " 'depth': 10,\n", " 'bids': {'in': 146766370.92964327, 'out': 146332501.3056338},\n", " 'asks': {'in': 125548618.74160747, 'out': 125476867.91485445}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.9596622,\n", " 'depth': 10,\n", " 'bids': {'in': 146847895.9164132, 'out': 146431354.15495142},\n", " 'asks': {'in': 125584203.93255387, 'out': 125609012.19823726}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.9599638,\n", " 'depth': 10,\n", " 'bids': {'in': 146928166.1563322, 'out': 146513217.6559455},\n", " 'asks': {'in': 125715348.87051007, 'out': 125649394.07840826}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.9602518,\n", " 'depth': 10,\n", " 'bids': {'in': 147020837.0891259, 'out': 146596658.88279092},\n", " 'asks': {'in': 125756230.68641888, 'out': 125685069.69611245}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.960534,\n", " 'depth': 10,\n", " 'bids': {'in': 147095875.7560737, 'out': 146644528.67331123},\n", " 'asks': {'in': 125889154.26711127, 'out': 125820697.88241166}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.96082,\n", " 'depth': 10,\n", " 'bids': {'in': 147183231.2367779, 'out': 146738165.90331432},\n", " 'asks': {'in': 125927706.50654007, 'out': 125964650.19647036}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.961108,\n", " 'depth': 10,\n", " 'bids': {'in': 147272887.6870368, 'out': 146818374.3926702},\n", " 'asks': {'in': 126080163.45997047, 'out': 125994733.69784647}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.9613838,\n", " 'depth': 10,\n", " 'bids': {'in': 147348425.2570812, 'out': 146893911.85983032},\n", " 'asks': {'in': 126088101.88561268, 'out': 126000247.76735447}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.961662,\n", " 'depth': 10,\n", " 'bids': {'in': 147394896.1614286, 'out': 146943630.58077213},\n", " 'asks': {'in': 126298477.48064128, 'out': 126273111.74841978}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.96195,\n", " 'depth': 10,\n", " 'bids': {'in': 147416061.2272436, 'out': 146961547.65478912},\n", " 'asks': {'in': 126529190.24576947, 'out': 126444485.66339478}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.962229,\n", " 'depth': 10,\n", " 'bids': {'in': 147438541.9547436, 'out': 146984033.64141703},\n", " 'asks': {'in': 126534148.32246067, 'out': 126449443.72636758}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.962516,\n", " 'depth': 10,\n", " 'bids': {'in': 147500530.84891778, 'out': 147034076.55342343},\n", " 'asks': {'in': 126580488.17933707, 'out': 126660503.90764768}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.9628181,\n", " 'depth': 10,\n", " 'bids': {'in': 147593714.59340477, 'out': 147120762.73400244},\n", " 'asks': {'in': 126802518.42346857, 'out': 126870454.13668078}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.9631329,\n", " 'depth': 10,\n", " 'bids': {'in': 148271721.54303136, 'out': 147629274.00980654},\n", " 'asks': {'in': 127165399.73198988, 'out': 127228130.76781118}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.9634712,\n", " 'depth': 10,\n", " 'bids': {'in': 148805929.18507376, 'out': 148209535.16121194},\n", " 'asks': {'in': 128273093.35980608, 'out': 127481478.07649268}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.963805,\n", " 'depth': 10,\n", " 'bids': {'in': 149194379.79542717, 'out': 148536819.26824263},\n", " 'asks': {'in': 129371334.72138438, 'out': 127746759.22363818}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.964118,\n", " 'depth': 10,\n", " 'bids': {'in': 149303074.44073117, 'out': 148723556.99207893},\n", " 'asks': {'in': 129621730.84709677, 'out': 127975227.02930038}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.964413,\n", " 'depth': 10,\n", " 'bids': {'in': 149379273.82092267, 'out': 148801581.39265862},\n", " 'asks': {'in': 129665938.26993367, 'out': 128012184.72680287}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.964718,\n", " 'depth': 10,\n", " 'bids': {'in': 149644398.00142747, 'out': 149069956.65100583},\n", " 'asks': {'in': 129709126.56977327, 'out': 128115374.52348597}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.9650052,\n", " 'depth': 10,\n", " 'bids': {'in': 149666199.380621, 'out': 149089927.48082054},\n", " 'asks': {'in': 129744293.33077997, 'out': 128157675.18715887}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.965291,\n", " 'depth': 10,\n", " 'bids': {'in': 149781476.21758097, 'out': 149205208.61910954},\n", " 'asks': {'in': 129787580.64215156, 'out': 128192678.37655267}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.965586,\n", " 'depth': 10,\n", " 'bids': {'in': 149843708.08579716, 'out': 149267432.96456274},\n", " 'asks': {'in': 129901102.73863596, 'out': 128216919.36763667}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.965874,\n", " 'depth': 10,\n", " 'bids': {'in': 150140581.87082356, 'out': 149564312.89204493},\n", " 'asks': {'in': 130175496.26363115, 'out': 128491307.72972757}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.966161,\n", " 'depth': 10,\n", " 'bids': {'in': 150215802.09114507, 'out': 149737993.36863872},\n", " 'asks': {'in': 130359476.95439345, 'out': 128765711.22752276}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.9664488,\n", " 'depth': 10,\n", " 'bids': {'in': 150435018.49809346, 'out': 149826183.22339132},\n", " 'asks': {'in': 130470677.97554645, 'out': 129456996.23252577}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.9667552,\n", " 'depth': 10,\n", " 'bids': {'in': 150546189.33330816, 'out': 150006496.74516952},\n", " 'asks': {'in': 130641475.47449444, 'out': 129641608.88164397}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.9670532,\n", " 'depth': 10,\n", " 'bids': {'in': 150702037.46143457, 'out': 150125981.9992808},\n", " 'asks': {'in': 130774516.75787094, 'out': 129831828.38399516}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.967367,\n", " 'depth': 10,\n", " 'bids': {'in': 150788576.87940568, 'out': 150219896.7327752},\n", " 'asks': {'in': 130784105.58095205, 'out': 129841417.29613826}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.9676642,\n", " 'depth': 10,\n", " 'bids': {'in': 150863795.31409737, 'out': 150425270.07486072},\n", " 'asks': {'in': 131653464.09133455, 'out': 130104526.65309216}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.967962,\n", " 'depth': 10,\n", " 'bids': {'in': 151280768.97679886, 'out': 150958252.53012803},\n", " 'asks': {'in': 131858627.28580154, 'out': 130913762.55929346}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.968266,\n", " 'depth': 10,\n", " 'bids': {'in': 151705237.25211027, 'out': 151244662.90704542},\n", " 'asks': {'in': 131924102.83033854, 'out': 131760190.88708957}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.968558,\n", " 'depth': 10,\n", " 'bids': {'in': 151786988.00572968, 'out': 151320417.5303538},\n", " 'asks': {'in': 132129622.27074844, 'out': 131965706.42291257}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.968849,\n", " 'depth': 10,\n", " 'bids': {'in': 151867312.19674876, 'out': 151401066.73715383},\n", " 'asks': {'in': 132271829.34797794, 'out': 132040862.36546777}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.969146,\n", " 'depth': 10,\n", " 'bids': {'in': 151951087.97195345, 'out': 151532247.41011462},\n", " 'asks': {'in': 132519401.90956484, 'out': 132358741.43001477}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.9694421,\n", " 'depth': 10,\n", " 'bids': {'in': 152074042.97341454, 'out': 151617866.475504},\n", " 'asks': {'in': 132539313.35184984, 'out': 132375402.08493817}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.9697359,\n", " 'depth': 10,\n", " 'bids': {'in': 152194902.54202864, 'out': 151698406.8361651},\n", " 'asks': {'in': 133279238.12362725, 'out': 132420550.12862557}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.9700348,\n", " 'depth': 10,\n", " 'bids': {'in': 152252791.55097044, 'out': 151753295.3899155},\n", " 'asks': {'in': 133423141.88158615, 'out': 133161679.41953117}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.970332,\n", " 'depth': 10,\n", " 'bids': {'in': 152544853.46015525, 'out': 152147943.68419018},\n", " 'asks': {'in': 133639652.36161925, 'out': 133475751.64195687}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.970631,\n", " 'depth': 10,\n", " 'bids': {'in': 152681048.46625984, 'out': 152236672.44053578},\n", " 'asks': {'in': 134466080.76054874, 'out': 133510344.20740896}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.971044,\n", " 'depth': 10,\n", " 'bids': {'in': 152710035.41759464, 'out': 152265984.407639},\n", " 'asks': {'in': 134495542.35274163, 'out': 134234089.74242026}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.971427,\n", " 'depth': 10,\n", " 'bids': {'in': 152847045.74612775, 'out': 152366984.7985967},\n", " 'asks': {'in': 135295687.46989784, 'out': 134377359.61497396}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.971761,\n", " 'depth': 10,\n", " 'bids': {'in': 153118861.80091676, 'out': 152639129.7605707},\n", " 'asks': {'in': 135500701.29651582, 'out': 134643602.77849966}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.9720662,\n", " 'depth': 10,\n", " 'bids': {'in': 153415490.66000625, 'out': 153015591.4894092},\n", " 'asks': {'in': 135644605.25050563, 'out': 134816740.78340566}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.972364,\n", " 'depth': 10,\n", " 'bids': {'in': 153577452.95688957, 'out': 153084143.51760942},\n", " 'asks': {'in': 135971405.9714856, 'out': 135017258.10636967}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.972662,\n", " 'depth': 10,\n", " 'bids': {'in': 153883031.02570897, 'out': 153342979.1119705},\n", " 'asks': {'in': 136171227.5515842, 'out': 135911857.81414598}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.972963,\n", " 'depth': 10,\n", " 'bids': {'in': 154206155.1533335, 'out': 153729603.89244372},\n", " 'asks': {'in': 136973201.38734522, 'out': 136079225.21838778}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.973269,\n", " 'depth': 10,\n", " 'bids': {'in': 154484997.6249379, 'out': 154005812.5287213},\n", " 'asks': {'in': 137077790.21365213, 'out': 136843802.884603}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.97357,\n", " 'depth': 10,\n", " 'bids': {'in': 154628957.6715833, 'out': 154131938.2754231},\n", " 'asks': {'in': 137782654.90064442, 'out': 136853891.5000474}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.9738612,\n", " 'depth': 10,\n", " 'bids': {'in': 154695660.52084228, 'out': 154353661.2218045},\n", " 'asks': {'in': 137886721.29591373, 'out': 136957958.9832894}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.9741492,\n", " 'depth': 10,\n", " 'bids': {'in': 155040961.9865448, 'out': 154601491.4567143},\n", " 'asks': {'in': 138628478.25151694, 'out': 137062955.9225517}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.974435,\n", " 'depth': 10,\n", " 'bids': {'in': 155341029.338247, 'out': 154873319.93500382},\n", " 'asks': {'in': 138739106.96365535, 'out': 137809693.2018874}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.974724,\n", " 'depth': 10,\n", " 'bids': {'in': 155403753.9748896, 'out': 154936044.41248822},\n", " 'asks': {'in': 138750961.87951365, 'out': 137820931.9877496}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.975025,\n", " 'depth': 10,\n", " 'bids': {'in': 155591469.11675072, 'out': 155073741.37807083},\n", " 'asks': {'in': 138785554.47668225, 'out': 138550484.93849802}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.975321,\n", " 'depth': 10,\n", " 'bids': {'in': 155637961.7193655, 'out': 155120233.98039842},\n", " 'asks': {'in': 138814516.20995346, 'out': 138579446.74289733}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.9756448,\n", " 'depth': 10,\n", " 'bids': {'in': 155716243.6267428, 'out': 155185545.86819452},\n", " 'asks': {'in': 140382962.57477465, 'out': 138746722.68773612}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.975968,\n", " 'depth': 10,\n", " 'bids': {'in': 155879041.9548357, 'out': 155428887.49142992},\n", " 'asks': {'in': 140691032.97400665, 'out': 139171452.06848633}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.9762838,\n", " 'depth': 10,\n", " 'bids': {'in': 156081316.1074672, 'out': 155727117.23826784},\n", " 'asks': {'in': 140877415.89738035, 'out': 139419921.77930292}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.976594,\n", " 'depth': 10,\n", " 'bids': {'in': 156580443.4279563, 'out': 156177089.97218123},\n", " 'asks': {'in': 141177762.95019406, 'out': 140357419.26837704}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.976904,\n", " 'depth': 10,\n", " 'bids': {'in': 156970967.3467358, 'out': 156546361.40225023},\n", " 'asks': {'in': 142135030.67461535, 'out': 140558955.62106544}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.977206,\n", " 'depth': 10,\n", " 'bids': {'in': 157245256.0632851, 'out': 156820635.68470833},\n", " 'asks': {'in': 142147599.93705365, 'out': 141350849.87401515}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.977514,\n", " 'depth': 10,\n", " 'bids': {'in': 157586329.25171322, 'out': 157036140.11469862},\n", " 'asks': {'in': 143006330.41196755, 'out': 141365766.40701947}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.9778209,\n", " 'depth': 10,\n", " 'bids': {'in': 157972244.13187662, 'out': 157411909.88494563},\n", " 'asks': {'in': 143259468.40076494, 'out': 141654825.26837087}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.9781382,\n", " 'depth': 10,\n", " 'bids': {'in': 158143430.4916141, 'out': 157584563.48959354},\n", " 'asks': {'in': 143577142.46647134, 'out': 141870375.55690926}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.978444,\n", " 'depth': 10,\n", " 'bids': {'in': 158217150.9927588, 'out': 157766786.32288703},\n", " 'asks': {'in': 143629667.63238615, 'out': 141918005.30074736}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.97875,\n", " 'depth': 10,\n", " 'bids': {'in': 158406511.23182312, 'out': 157881578.75401154},\n", " 'asks': {'in': 143960153.13969156, 'out': 142306437.19877076}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.979058,\n", " 'depth': 10,\n", " 'bids': {'in': 158571363.52021483, 'out': 157975102.85517395},\n", " 'asks': {'in': 144216201.76233315, 'out': 142518129.68945056}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.979369,\n", " 'depth': 10,\n", " 'bids': {'in': 158636162.52363244, 'out': 158037827.66499475},\n", " 'asks': {'in': 144416041.47797334, 'out': 142719601.83248597}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.979659,\n", " 'depth': 10,\n", " 'bids': {'in': 158716400.60031652, 'out': 158219106.80677834},\n", " 'asks': {'in': 144501026.75543693, 'out': 142807609.70503357}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.9799528,\n", " 'depth': 10,\n", " 'bids': {'in': 158870108.64281783, 'out': 158276950.89716464},\n", " 'asks': {'in': 144534785.31545553, 'out': 142842829.92189366}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.980266,\n", " 'depth': 10,\n", " 'bids': {'in': 159049309.69719854, 'out': 158462645.68855703},\n", " 'asks': {'in': 144570005.62142864, 'out': 142886889.45785686}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.980559,\n", " 'depth': 10,\n", " 'bids': {'in': 159242369.28927585, 'out': 158596420.0136569},\n", " 'asks': {'in': 144598966.92386284, 'out': 142915861.62090465}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.980884,\n", " 'depth': 10,\n", " 'bids': {'in': 159650465.06134066, 'out': 159335471.67054832},\n", " 'asks': {'in': 144853631.86291313, 'out': 143170921.58570945}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.981246,\n", " 'depth': 10,\n", " 'bids': {'in': 159966377.93216035, 'out': 159592294.98540992},\n", " 'asks': {'in': 145197879.17445055, 'out': 143606817.18688354}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.98157,\n", " 'depth': 10,\n", " 'bids': {'in': 160045952.32260716, 'out': 159691255.05383712},\n", " 'asks': {'in': 145527868.66863325, 'out': 143886901.58786184}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.981872,\n", " 'depth': 10,\n", " 'bids': {'in': 160392458.60058996, 'out': 160023460.34669292},\n", " 'asks': {'in': 145581992.18577084, 'out': 144622018.39219624}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.9821792,\n", " 'depth': 10,\n", " 'bids': {'in': 160552060.74468017, 'out': 160256405.59443483},\n", " 'asks': {'in': 146297504.69865483, 'out': 144660444.61030534}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.982482,\n", " 'depth': 10,\n", " 'bids': {'in': 160938887.97680697, 'out': 160672880.73671883},\n", " 'asks': {'in': 146332096.16409644, 'out': 145414578.77458674}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.98281,\n", " 'depth': 10,\n", " 'bids': {'in': 161343885.42407426, 'out': 161227294.22177023},\n", " 'asks': {'in': 147011169.35598233, 'out': 146753046.27194014}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.98316,\n", " 'depth': 10,\n", " 'bids': {'in': 161828834.91975686, 'out': 161464192.31298694},\n", " 'asks': {'in': 147640332.29791763, 'out': 147430406.27079135}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.983506,\n", " 'depth': 10,\n", " 'bids': {'in': 162270100.86207625, 'out': 161956132.99735445},\n", " 'asks': {'in': 147977682.94075534, 'out': 147804841.50498155}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.983825,\n", " 'depth': 10,\n", " 'bids': {'in': 162606390.03139827, 'out': 162267859.17388543},\n", " 'asks': {'in': 148076620.38619062, 'out': 147845716.77550504}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.9841359,\n", " 'depth': 10,\n", " 'bids': {'in': 162686642.08227065, 'out': 162403305.90035525},\n", " 'asks': {'in': 148106315.24341413, 'out': 147938800.66988045}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.984459,\n", " 'depth': 10,\n", " 'bids': {'in': 163393463.47680825, 'out': 163104017.11307225},\n", " 'asks': {'in': 148397191.38567564, 'out': 148218364.11124274}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.984791,\n", " 'depth': 10,\n", " 'bids': {'in': 163914338.14412394, 'out': 163476787.52594915},\n", " 'asks': {'in': 148587391.66037163, 'out': 148414864.74107105}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.985099,\n", " 'depth': 10,\n", " 'bids': {'in': 163980801.66155663, 'out': 163614753.82567716},\n", " 'asks': {'in': 148622033.39386183, 'out': 148449962.49989906}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.985399,\n", " 'depth': 10,\n", " 'bids': {'in': 164162275.81675792, 'out': 163801301.58600944},\n", " 'asks': {'in': 148798174.66405064, 'out': 148635570.29411295}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.985696,\n", " 'depth': 10,\n", " 'bids': {'in': 164256790.45556682, 'out': 163877114.67421034},\n", " 'asks': {'in': 148807851.21307483, 'out': 148645337.45901734}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.985991,\n", " 'depth': 10,\n", " 'bids': {'in': 164332603.68204042, 'out': 164089954.55036473},\n", " 'asks': {'in': 148953724.06680593, 'out': 148794207.23438025}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.986291,\n", " 'depth': 10,\n", " 'bids': {'in': 164735455.2909831, 'out': 164374923.83921233},\n", " 'asks': {'in': 148959795.86893383, 'out': 148799477.53242636}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.986604,\n", " 'depth': 10,\n", " 'bids': {'in': 164866901.9503532, 'out': 164441812.01972812},\n", " 'asks': {'in': 149104972.6325302, 'out': 149024727.65616977}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.98694,\n", " 'depth': 10,\n", " 'bids': {'in': 165316757.9156666, 'out': 164884917.62896112},\n", " 'asks': {'in': 150130680.83152252, 'out': 149407333.46392098}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.987278,\n", " 'depth': 10,\n", " 'bids': {'in': 165750391.6343475, 'out': 165269144.74246982},\n", " 'asks': {'in': 150409442.5284953, 'out': 149537855.90036857}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.987597,\n", " 'depth': 10,\n", " 'bids': {'in': 165819893.9399233, 'out': 165300804.5925238},\n", " 'asks': {'in': 151116739.5848039, 'out': 149567424.88257787}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.987896,\n", " 'depth': 10,\n", " 'bids': {'in': 166022567.1416272, 'out': 165478541.4069249},\n", " 'asks': {'in': 151248002.2962281, 'out': 150278104.07692558}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.9882839,\n", " 'depth': 10,\n", " 'bids': {'in': 166761802.5966011, 'out': 166469114.7724412},\n", " 'asks': {'in': 152743816.8137438, 'out': 151515043.28809017}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.9887092,\n", " 'depth': 10,\n", " 'bids': {'in': 167086750.3323765, 'out': 166777855.4303917},\n", " 'asks': {'in': 153122206.2252967, 'out': 151705346.92987368}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.9890509,\n", " 'depth': 10,\n", " 'bids': {'in': 167340678.951267, 'out': 166870352.7027374},\n", " 'asks': {'in': 153375973.5243194, 'out': 152141390.32173768}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.989384,\n", " 'depth': 10,\n", " 'bids': {'in': 167647992.1958175, 'out': 167296262.24497378},\n", " 'asks': {'in': 153879347.4515182, 'out': 152378168.58350617}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.9897118,\n", " 'depth': 10,\n", " 'bids': {'in': 167741874.9602757, 'out': 167343795.8911979},\n", " 'asks': {'in': 154213513.9637453, 'out': 152692452.06249598}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.990027,\n", " 'depth': 10,\n", " 'bids': {'in': 167878722.5876637, 'out': 167426733.5404571},\n", " 'asks': {'in': 154455917.3382592, 'out': 152908017.17589107}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.990389,\n", " 'depth': 10,\n", " 'bids': {'in': 168510230.51848462, 'out': 168565885.9319352},\n", " 'asks': {'in': 154874870.2824823, 'out': 154857473.81147116}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.990755,\n", " 'depth': 10,\n", " 'bids': {'in': 169109570.78105852, 'out': 168906564.7019822},\n", " 'asks': {'in': 155410284.4002632, 'out': 155183950.29444808}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.991199,\n", " 'depth': 10,\n", " 'bids': {'in': 172040477.9069901, 'out': 170154986.3055665},\n", " 'asks': {'in': 156730215.9097285, 'out': 156560817.5335509}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.9916632,\n", " 'depth': 10,\n", " 'bids': {'in': 172892340.15935442, 'out': 170866516.932531},\n", " 'asks': {'in': 157693892.1262238, 'out': 157613630.48951077}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.9920661,\n", " 'depth': 10,\n", " 'bids': {'in': 173307105.3560661, 'out': 171238944.4009883},\n", " 'asks': {'in': 158166489.3790332, 'out': 157792659.53716996}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.992427,\n", " 'depth': 10,\n", " 'bids': {'in': 173597200.5371085, 'out': 171616525.71597522},\n", " 'asks': {'in': 158423290.2205581, 'out': 158058314.12520757}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.992775,\n", " 'depth': 10,\n", " 'bids': {'in': 174035463.30954012, 'out': 171857680.37825593},\n", " 'asks': {'in': 158503430.9939442, 'out': 158223823.99931806}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.9931068,\n", " 'depth': 10,\n", " 'bids': {'in': 174121960.71116003, 'out': 171978970.83702412},\n", " 'asks': {'in': 158680025.2030472, 'out': 158418322.35129446}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.9934819,\n", " 'depth': 10,\n", " 'bids': {'in': 174946874.12950805, 'out': 172864905.47866103},\n", " 'asks': {'in': 159600552.14643738, 'out': 159378787.80445975}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.993883,\n", " 'depth': 10,\n", " 'bids': {'in': 175422643.03659764, 'out': 173318014.52082354},\n", " 'asks': {'in': 160087083.68492138, 'out': 159768121.14600974}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.994239,\n", " 'depth': 10,\n", " 'bids': {'in': 175877653.46265525, 'out': 173719139.61188814},\n", " 'asks': {'in': 160599218.978954, 'out': 160096078.32563776}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.994564,\n", " 'depth': 10,\n", " 'bids': {'in': 175951910.18922785, 'out': 173794376.50544053},\n", " 'asks': {'in': 160717960.6181981, 'out': 160224511.88264894}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.994876,\n", " 'depth': 10,\n", " 'bids': {'in': 175988432.06157663, 'out': 173830447.29115933},\n", " 'asks': {'in': 160737839.3487491, 'out': 160349132.92295265}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.9951859,\n", " 'depth': 10,\n", " 'bids': {'in': 176020600.98824614, 'out': 173862155.46080774},\n", " 'asks': {'in': 160768425.4012823, 'out': 160392249.09092686}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.995488,\n", " 'depth': 10,\n", " 'bids': {'in': 176052319.09210035, 'out': 173906746.34103355},\n", " 'asks': {'in': 160794601.8040494, 'out': 160419511.69690555}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.995787,\n", " 'depth': 10,\n", " 'bids': {'in': 176081737.81367546, 'out': 173936490.14177194},\n", " 'asks': {'in': 160805554.0782345, 'out': 160478812.04416576}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.9961002,\n", " 'depth': 10,\n", " 'bids': {'in': 176224553.15486336, 'out': 174001022.38008675},\n", " 'asks': {'in': 160821367.1389103, 'out': 160483768.97130257}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.9964,\n", " 'depth': 10,\n", " 'bids': {'in': 176253863.58619174, 'out': 174047755.20258346},\n", " 'asks': {'in': 160826324.0248847, 'out': 160488737.04585046}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.9966998,\n", " 'depth': 10,\n", " 'bids': {'in': 176284902.78871486, 'out': 174077150.28061646},\n", " 'asks': {'in': 160838870.6054175, 'out': 160494139.88490716}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.997015,\n", " 'depth': 10,\n", " 'bids': {'in': 176290759.40615085, 'out': 174086689.13457507},\n", " 'asks': {'in': 160886443.19565248, 'out': 160506686.46543995}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.997322,\n", " 'depth': 10,\n", " 'bids': {'in': 176316811.28834245, 'out': 174309187.42163798},\n", " 'asks': {'in': 160901156.0900541, 'out': 160514062.42135555}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.997647,\n", " 'depth': 10,\n", " 'bids': {'in': 176427400.31561905, 'out': 174348803.07369348},\n", " 'asks': {'in': 160921516.0234777, 'out': 160518367.91669634}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.997962,\n", " 'depth': 10,\n", " 'bids': {'in': 176583633.16009995, 'out': 174492580.5417106},\n", " 'asks': {'in': 160926471.9855849, 'out': 160523323.89709795}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.998283,\n", " 'depth': 10,\n", " 'bids': {'in': 176601786.48200446, 'out': 174526331.4817207},\n", " 'asks': {'in': 160936248.4317856, 'out': 160549139.70835024}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.9986181,\n", " 'depth': 10,\n", " 'bids': {'in': 176708266.62318966, 'out': 174612840.81515718},\n", " 'asks': {'in': 160992086.8455308, 'out': 160583501.84449494}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.998997,\n", " 'depth': 10,\n", " 'bids': {'in': 177505458.55536157, 'out': 175209789.3311048},\n", " 'asks': {'in': 161481706.7120814, 'out': 161259529.47244945}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.999464,\n", " 'depth': 10,\n", " 'bids': {'in': 177858553.80255038, 'out': 175638296.28013217},\n", " 'asks': {'in': 161647382.9114426, 'out': 161451381.43848395}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385335.999816,\n", " 'depth': 10,\n", " 'bids': {'in': 178055526.85648838, 'out': 175856843.96148247},\n", " 'asks': {'in': 161709161.7565073, 'out': 161571976.78777397}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385336.0001438,\n", " 'depth': 10,\n", " 'bids': {'in': 178125011.06106278, 'out': 175899288.01557186},\n", " 'asks': {'in': 161959645.2715958, 'out': 161821822.47002116}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385336.0004601,\n", " 'depth': 10,\n", " 'bids': {'in': 178178144.7597023, 'out': 175952422.31783336},\n", " 'asks': {'in': 161992882.80896622, 'out': 161855108.26979756}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385336.0007749,\n", " 'depth': 10,\n", " 'bids': {'in': 178216807.3692866, 'out': 176024326.90197468},\n", " 'asks': {'in': 162060236.61003453, 'out': 161921974.83604497}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385336.001101,\n", " 'depth': 10,\n", " 'bids': {'in': 178470891.1485684, 'out': 176222869.92232338},\n", " 'asks': {'in': 162085480.92085013, 'out': 162028740.66957328}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385336.001421,\n", " 'depth': 10,\n", " 'bids': {'in': 178633248.2135013, 'out': 176568747.03904897},\n", " 'asks': {'in': 162246305.84889933, 'out': 162045833.1371061}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385336.001738,\n", " 'depth': 10,\n", " 'bids': {'in': 178868772.3392027, 'out': 176706138.91359296},\n", " 'asks': {'in': 162379754.45425412, 'out': 162224009.6144853}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385336.002048,\n", " 'depth': 10,\n", " 'bids': {'in': 178952611.1698973, 'out': 176774195.48083687},\n", " 'asks': {'in': 162395763.6904917, 'out': 162240018.9710181}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385336.002362,\n", " 'depth': 10,\n", " 'bids': {'in': 179049642.5908633, 'out': 176887953.14519876},\n", " 'asks': {'in': 162429055.3236747, 'out': 162273311.2069477}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385336.00269,\n", " 'depth': 10,\n", " 'bids': {'in': 179602383.44693708, 'out': 177293802.85661715},\n", " 'asks': {'in': 162489294.5868195, 'out': 162519470.74075583}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385336.0030248,\n", " 'depth': 10,\n", " 'bids': {'in': 179799797.1835489, 'out': 177483634.61528876},\n", " 'asks': {'in': 162677921.7052917, 'out': 162625353.94764793}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385336.003346,\n", " 'depth': 10,\n", " 'bids': {'in': 179875697.577763, 'out': 177574165.51640266},\n", " 'asks': {'in': 162911513.6463351, 'out': 162839929.91234183}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385336.003663,\n", " 'depth': 10,\n", " 'bids': {'in': 180114401.1566229, 'out': 177644697.07217816},\n", " 'asks': {'in': 163111795.07281348, 'out': 163056218.99185383}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385336.00398,\n", " 'depth': 10,\n", " 'bids': {'in': 180157207.1526368, 'out': 177762860.79478824},\n", " 'asks': {'in': 163116751.0595415, 'out': 163061174.94199142}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385336.004294,\n", " 'depth': 10,\n", " 'bids': {'in': 180309159.7086644, 'out': 177846928.62591743},\n", " 'asks': {'in': 163138555.7627253, 'out': 163066630.89414182}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385336.004631,\n", " 'depth': 10,\n", " 'bids': {'in': 180386786.368868, 'out': 178026849.31847852},\n", " 'asks': {'in': 163151101.5633597, 'out': 163087595.88239062}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385336.00495,\n", " 'depth': 10,\n", " 'bids': {'in': 180462688.1841323, 'out': 178102743.41988212},\n", " 'asks': {'in': 163321927.0432899, 'out': 163258418.5870276}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385336.005271,\n", " 'depth': 10,\n", " 'bids': {'in': 180519016.0447938, 'out': 178154647.9217854},\n", " 'asks': {'in': 163428690.2411811, 'out': 163365947.50758442}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385336.005842,\n", " 'depth': 10,\n", " 'bids': {'in': 180584039.53652743, 'out': 178176194.31853732},\n", " 'asks': {'in': 163470359.1806143, 'out': 163399179.1622838}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385336.006152,\n", " 'depth': 10,\n", " 'bids': {'in': 180723605.74143943, 'out': 178286800.31066394},\n", " 'asks': {'in': 163585066.2394613, 'out': 163501669.7507166}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385336.006458,\n", " 'depth': 10,\n", " 'bids': {'in': 180742097.21892494, 'out': 178441217.01563975},\n", " 'asks': {'in': 163687564.1984423, 'out': 163732652.8814976}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385336.0067682,\n", " 'depth': 10,\n", " 'bids': {'in': 180934152.00918674, 'out': 178588472.66613016},\n", " 'asks': {'in': 163844463.22642872, 'out': 163778198.49688268}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385336.0070899,\n", " 'depth': 10,\n", " 'bids': {'in': 180998307.26043114, 'out': 178771903.85269326},\n", " 'asks': {'in': 163954662.59740102, 'out': 163836427.35971758}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385336.007412,\n", " 'depth': 10,\n", " 'bids': {'in': 181129837.95609194, 'out': 178849343.30755666},\n", " 'asks': {'in': 163964453.65318003, 'out': 163844050.438956}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385336.007725,\n", " 'depth': 10,\n", " 'bids': {'in': 181317920.45008153, 'out': 178955694.33973145},\n", " 'asks': {'in': 163969408.86693582, 'out': 163849258.028647}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385336.008034,\n", " 'depth': 10,\n", " 'bids': {'in': 181381102.27770084, 'out': 179021284.22720027},\n", " 'asks': {'in': 163998366.5029852, 'out': 163878215.61510882}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385336.008353,\n", " 'depth': 10,\n", " 'bids': {'in': 181444967.41116375, 'out': 179084141.17521957},\n", " 'asks': {'in': 164201399.4886966, 'out': 164079073.65538162}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385336.0086699,\n", " 'depth': 10,\n", " 'bids': {'in': 181518386.79597226, 'out': 179147506.26225787},\n", " 'asks': {'in': 164206354.665862, 'out': 164085537.40357673}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385336.008994,\n", " 'depth': 10,\n", " 'bids': {'in': 181594010.71464217, 'out': 179223286.1996399},\n", " 'asks': {'in': 164246365.8183773, 'out': 164132326.24384773}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385336.0093272,\n", " 'depth': 10,\n", " 'bids': {'in': 181799743.27155387, 'out': 179469769.81122598},\n", " 'asks': {'in': 164276831.1955404, 'out': 164161284.00826302}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385336.0096488,\n", " 'depth': 10,\n", " 'bids': {'in': 182132599.04322946, 'out': 179746925.79889977},\n", " 'asks': {'in': 164306288.7205162, 'out': 164194001.8116286}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385336.0099761,\n", " 'depth': 10,\n", " 'bids': {'in': 182182875.10134137, 'out': 179797195.19051158},\n", " 'asks': {'in': 164322797.1281656, 'out': 164210510.3176684}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385336.010298,\n", " 'depth': 10,\n", " 'bids': {'in': 182263849.70678335, 'out': 179878828.97452828},\n", " 'asks': {'in': 164498569.3401282, 'out': 164386288.2452088}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385336.010605,\n", " 'depth': 10,\n", " 'bids': {'in': 182303367.29218286, 'out': 179976759.6544501},\n", " 'asks': {'in': 164674347.235652, 'out': 164562060.4571714}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385336.0109131,\n", " 'depth': 10,\n", " 'bids': {'in': 182426585.58871666, 'out': 180167390.81297758},\n", " 'asks': {'in': 164746043.0521766, 'out': 164567515.5467042}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385336.011235,\n", " 'depth': 10,\n", " 'bids': {'in': 182631465.50485775, 'out': 180335071.90990278},\n", " 'asks': {'in': 165186760.8673684, 'out': 165071327.060045}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385336.011555,\n", " 'depth': 10,\n", " 'bids': {'in': 182670202.20931694, 'out': 180372725.51845378},\n", " 'asks': {'in': 165199577.7538175, 'out': 165084630.6366836}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385336.0118651,\n", " 'depth': 10,\n", " 'bids': {'in': 182728386.01613775, 'out': 180483667.69372657},\n", " 'asks': {'in': 165238383.529846, 'out': 165115088.483137}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385336.012185,\n", " 'depth': 10,\n", " 'bids': {'in': 182806721.39449716, 'out': 180561035.99622816},\n", " 'asks': {'in': 165314079.3727459, 'out': 165148381.8433735}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385336.012504,\n", " 'depth': 10,\n", " 'bids': {'in': 182845240.52394167, 'out': 180597599.21155396},\n", " 'asks': {'in': 165513859.8393527, 'out': 165390558.85849681}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385336.012819,\n", " 'depth': 10,\n", " 'bids': {'in': 182943438.95014825, 'out': 180663703.33733997},\n", " 'asks': {'in': 165756289.3710684, 'out': 165590339.3251036}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385336.0131352,\n", " 'depth': 10,\n", " 'bids': {'in': 183006296.24667805, 'out': 180726560.67734686},\n", " 'asks': {'in': 165785246.86187878, 'out': 165619296.88695592}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385336.013459,\n", " 'depth': 10,\n", " 'bids': {'in': 183070212.79713544, 'out': 180790476.74700105},\n", " 'asks': {'in': 165814204.42830497, 'out': 165690656.95976633}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385336.013779,\n", " 'depth': 10,\n", " 'bids': {'in': 183133070.27708304, 'out': 180853334.53853485},\n", " 'asks': {'in': 165885564.23982477, 'out': 165719614.52619252}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385336.014091,\n", " 'depth': 10,\n", " 'bids': {'in': 183206938.85255653, 'out': 180923201.76382715},\n", " 'asks': {'in': 166085344.24430248, 'out': 165919388.78593573}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385336.014415,\n", " 'depth': 10,\n", " 'bids': {'in': 183303228.78507653, 'out': 180987576.95099834},\n", " 'asks': {'in': 166285116.17815638, 'out': 166119168.79041344}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385336.0147269,\n", " 'depth': 10,\n", " 'bids': {'in': 183372346.08357972, 'out': 181051385.59881714},\n", " 'asks': {'in': 166375358.97726837, 'out': 166185825.96737745}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385336.015043,\n", " 'depth': 10,\n", " 'bids': {'in': 183435528.50444922, 'out': 181117385.75982434},\n", " 'asks': {'in': 166446718.80108356, 'out': 166215866.66181755}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385336.0153642,\n", " 'depth': 10,\n", " 'bids': {'in': 183474914.69582322, 'out': 181156772.16501543},\n", " 'asks': {'in': 166451674.06371775, 'out': 166220823.79342476}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385336.015674,\n", " 'depth': 10,\n", " 'bids': {'in': 183513782.86491492, 'out': 181203215.33562803},\n", " 'asks': {'in': 166498618.97116116, 'out': 166338641.27304295}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385336.015989,\n", " 'depth': 10,\n", " 'bids': {'in': 183703230.78215092, 'out': 181373091.54203144},\n", " 'asks': {'in': 166535924.61702356, 'out': 166499454.16338995}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385336.016323,\n", " 'depth': 10,\n", " 'bids': {'in': 184079692.5303313, 'out': 181740168.99242374},\n", " 'asks': {'in': 166774294.35274285, 'out': 166586264.94457564}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385336.0166872,\n", " 'depth': 10,\n", " 'bids': {'in': 184214080.25076512, 'out': 181815614.32430133},\n", " 'asks': {'in': 166916596.32250586, 'out': 166804431.36175135}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385336.017063,\n", " 'depth': 10,\n", " 'bids': {'in': 184492246.83252412, 'out': 182093898.50211513},\n", " 'asks': {'in': 167230146.50424075, 'out': 167062189.80591345}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385336.017421,\n", " 'depth': 10,\n", " 'bids': {'in': 184573603.31337973, 'out': 182156853.66560403},\n", " 'asks': {'in': 167350463.91436094, 'out': 167223669.25360605}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385336.017762,\n", " 'depth': 10,\n", " 'bids': {'in': 184786250.88917783, 'out': 182318540.4171633},\n", " 'asks': {'in': 167444222.42388085, 'out': 167257377.96523535}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385336.0180879,\n", " 'depth': 10,\n", " 'bids': {'in': 184826237.29659662, 'out': 182358519.946601},\n", " 'asks': {'in': 167520462.35388684, 'out': 167301647.29938716}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385336.01843,\n", " 'depth': 10,\n", " 'bids': {'in': 184860885.17633963, 'out': 182502888.778928},\n", " 'asks': {'in': 167531253.26465124, 'out': 167385942.77182245}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385336.0187469,\n", " 'depth': 10,\n", " 'bids': {'in': 184865883.67072484, 'out': 182508536.93934003},\n", " 'asks': {'in': 167536708.60561582, 'out': 167391940.12784946}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385336.019069,\n", " 'depth': 10,\n", " 'bids': {'in': 184898013.84567603, 'out': 182537776.91210422},\n", " 'asks': {'in': 167577761.2229649, 'out': 167474853.22576424}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385336.019399,\n", " 'depth': 10,\n", " 'bids': {'in': 184939069.01424444, 'out': 182581649.44274092},\n", " 'asks': {'in': 167677490.37564832, 'out': 167505017.60665554}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385336.019721,\n", " 'depth': 10,\n", " 'bids': {'in': 185001794.81930295, 'out': 182644375.08915251},\n", " 'asks': {'in': 167708612.85353103, 'out': 167535742.46557724}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385336.020063,\n", " 'depth': 10,\n", " 'bids': {'in': 185353861.25927255, 'out': 183074087.8728856},\n", " 'asks': {'in': 167844453.51821804, 'out': 167684099.10189614}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385336.020521,\n", " 'depth': 10,\n", " 'bids': {'in': 186700369.35386124, 'out': 184800961.1415328},\n", " 'asks': {'in': 168762461.50185615, 'out': 168853068.63312775}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385336.021067,\n", " 'depth': 10,\n", " 'bids': {'in': 188157531.25784034, 'out': 186133662.41030732},\n", " 'asks': {'in': 169612620.14800486, 'out': 169567366.32036376}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385336.021537,\n", " 'depth': 10,\n", " 'bids': {'in': 189118724.48047164, 'out': 187063668.3936136},\n", " 'asks': {'in': 170709879.78011426, 'out': 170128192.90220416}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385336.0219362,\n", " 'depth': 10,\n", " 'bids': {'in': 189560169.20156935, 'out': 187417960.028744},\n", " 'asks': {'in': 171267055.99927238, 'out': 171020660.52183837}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385336.022295,\n", " 'depth': 10,\n", " 'bids': {'in': 189758633.57567695, 'out': 187482086.23941642},\n", " 'asks': {'in': 171538214.89053, 'out': 171257410.30254787}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385336.022641,\n", " 'depth': 10,\n", " 'bids': {'in': 189942760.92309776, 'out': 187674851.83846954},\n", " 'asks': {'in': 171596730.3567504, 'out': 171323025.64347357}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385336.0230021,\n", " 'depth': 10,\n", " 'bids': {'in': 190116291.20024967, 'out': 187736514.06015962},\n", " 'asks': {'in': 171632189.9830678, 'out': 171358029.84733838}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385336.023325,\n", " 'depth': 10,\n", " 'bids': {'in': 190212125.31201708, 'out': 187823911.33759862},\n", " 'asks': {'in': 171662727.5173903, 'out': 171386088.16075197}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385336.0236428,\n", " 'depth': 10,\n", " 'bids': {'in': 190255797.92773628, 'out': 187867583.77375382},\n", " 'asks': {'in': 171691684.140717, 'out': 171422161.61977306}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385336.023974,\n", " 'depth': 10,\n", " 'bids': {'in': 190643164.91311347, 'out': 188260331.3474664},\n", " 'asks': {'in': 171731048.5078425, 'out': 171452302.31510255}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385336.0243258,\n", " 'depth': 10,\n", " 'bids': {'in': 190765153.5857418, 'out': 188401956.9228611},\n", " 'asks': {'in': 171774051.18299922, 'out': 171487382.66721424}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385336.0246642,\n", " 'depth': 10,\n", " 'bids': {'in': 190911318.8114431, 'out': 188490823.5912533},\n", " 'asks': {'in': 171844651.47835323, 'out': 171601911.86301234}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385336.025001,\n", " 'depth': 10,\n", " 'bids': {'in': 190948162.6884232, 'out': 188510494.90102282},\n", " 'asks': {'in': 171852107.74422184, 'out': 171607955.31319416}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385336.0253282,\n", " 'depth': 10,\n", " 'bids': {'in': 190966342.8003243, 'out': 188528675.02342263},\n", " 'asks': {'in': 171857142.75051445, 'out': 171613589.30192775}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385336.025663,\n", " 'depth': 10,\n", " 'bids': {'in': 191042578.02993768, 'out': 188663647.93306082},\n", " 'asks': {'in': 171893205.02136344, 'out': 171687556.76396933}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385336.026005,\n", " 'depth': 10,\n", " 'bids': {'in': 191191175.9828325, 'out': 188751827.5146323},\n", " 'asks': {'in': 171986040.28307775, 'out': 171727376.17454922}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385336.0263438,\n", " 'depth': 10,\n", " 'bids': {'in': 191275946.256657, 'out': 188887449.14335743},\n", " 'asks': {'in': 172018111.47190425, 'out': 171812776.71307883}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385336.026679,\n", " 'depth': 10,\n", " 'bids': {'in': 191603505.845489, 'out': 189499215.17466363},\n", " 'asks': {'in': 172048568.11454046, 'out': 171847632.83730093}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385336.027012,\n", " 'depth': 10,\n", " 'bids': {'in': 191693624.3142358, 'out': 189606124.67564005},\n", " 'asks': {'in': 172205986.90718946, 'out': 171999991.54004693}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385336.027354,\n", " 'depth': 10,\n", " 'bids': {'in': 192091382.7577107, 'out': 189867676.53248414},\n", " 'asks': {'in': 172329798.32276747, 'out': 172175869.49440733}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385336.027701,\n", " 'depth': 10,\n", " 'bids': {'in': 192397876.0620469, 'out': 190170888.79463384},\n", " 'asks': {'in': 172371328.76281017, 'out': 172226452.18969402}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385336.028037,\n", " 'depth': 10,\n", " 'bids': {'in': 192678569.2959394, 'out': 190517644.95337963},\n", " 'asks': {'in': 172681399.01585937, 'out': 172654009.263031}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385336.028383,\n", " 'depth': 10,\n", " 'bids': {'in': 193373477.5348045, 'out': 190933965.44997242},\n", " 'asks': {'in': 172920493.51348555, 'out': 172734249.82513142}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385336.0287209,\n", " 'depth': 10,\n", " 'bids': {'in': 193496326.2380654, 'out': 191094516.474512},\n", " 'asks': {'in': 172980292.62107575, 'out': 172809794.09207073}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385336.0290492,\n", " 'depth': 10,\n", " 'bids': {'in': 193893019.3971371, 'out': 191616964.5036674},\n", " 'asks': {'in': 173011070.74014884, 'out': 172840232.30737624}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385336.0293891,\n", " 'depth': 10,\n", " 'bids': {'in': 193931698.3188539, 'out': 191635143.80118752},\n", " 'asks': {'in': 173059418.43397525, 'out': 172888508.26962954}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385336.029713,\n", " 'depth': 10,\n", " 'bids': {'in': 193960689.1707189, 'out': 191664134.89837262},\n", " 'asks': {'in': 173264733.96550164, 'out': 173092203.60511294}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385336.030041,\n", " 'depth': 10,\n", " 'bids': {'in': 194303071.0501784, 'out': 191824272.31125072},\n", " 'asks': {'in': 173293691.68284684, 'out': 173122787.13262913}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385336.0303822,\n", " 'depth': 10,\n", " 'bids': {'in': 194415073.6804995, 'out': 192170584.96739933},\n", " 'asks': {'in': 173349824.97570315, 'out': 173212149.91282612}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385336.030742,\n", " 'depth': 10,\n", " 'bids': {'in': 194746446.1874283, 'out': 192496219.81535232},\n", " 'asks': {'in': 173547320.63734335, 'out': 173564430.08429962}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385336.0310972,\n", " 'depth': 10,\n", " 'bids': {'in': 195183227.3080461, 'out': 192974108.12930053},\n", " 'asks': {'in': 174590218.76143324, 'out': 173969918.36228532}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385336.031449,\n", " 'depth': 10,\n", " 'bids': {'in': 195345528.6271961, 'out': 193129922.46304724},\n", " 'asks': {'in': 174658857.99603593, 'out': 174695051.7605285}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385336.03179,\n", " 'depth': 10,\n", " 'bids': {'in': 195532322.61168352, 'out': 193458928.38410804},\n", " 'asks': {'in': 174819135.11964443, 'out': 175029040.42060772}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385336.0321221,\n", " 'depth': 10,\n", " 'bids': {'in': 195773811.96769062, 'out': 193573604.68085542},\n", " 'asks': {'in': 174971663.40549713, 'out': 175039439.7326073}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385336.032446,\n", " 'depth': 10,\n", " 'bids': {'in': 196034001.99410212, 'out': 193599323.7158552},\n", " 'asks': {'in': 175042565.84482533, 'out': 175085878.1377603}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385336.032769,\n", " 'depth': 10,\n", " 'bids': {'in': 196041375.12683132, 'out': 193606486.02559772},\n", " 'asks': {'in': 175056360.51681063, 'out': 175093540.82938153}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385336.033101,\n", " 'depth': 10,\n", " 'bids': {'in': 196116810.64862442, 'out': 193864163.45941913},\n", " 'asks': {'in': 175138679.78109774, 'out': 175140085.33776703}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385336.03345,\n", " 'depth': 10,\n", " 'bids': {'in': 196483584.0690036, 'out': 194048694.80943164},\n", " 'asks': {'in': 175282161.53903443, 'out': 175312250.65331754}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385336.0337868,\n", " 'depth': 10,\n", " 'bids': {'in': 196546422.679679, 'out': 194113033.18202356},\n", " 'asks': {'in': 175291575.36928523, 'out': 175321664.60368383}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385336.034135,\n", " 'depth': 10,\n", " 'bids': {'in': 196662080.1312116, 'out': 194192447.48043627},\n", " 'asks': {'in': 175527499.46628603, 'out': 175536901.55405182}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385336.0344708,\n", " 'depth': 10,\n", " 'bids': {'in': 196736014.29422972, 'out': 194266381.54936436},\n", " 'asks': {'in': 175571965.42363864, 'out': 175582994.3824253}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385336.034816,\n", " 'depth': 10,\n", " 'bids': {'in': 196801935.16524953, 'out': 194330153.57435974},\n", " 'asks': {'in': 175596315.51519495, 'out': 175730210.7999259}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385336.035157,\n", " 'depth': 10,\n", " 'bids': {'in': 196929646.91408342, 'out': 194394382.74812374},\n", " 'asks': {'in': 175797753.78914297, 'out': 175767511.79890698}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385336.035486,\n", " 'depth': 10,\n", " 'bids': {'in': 196992375.76879543, 'out': 194466640.06793204},\n", " 'asks': {'in': 175806772.38449886, 'out': 175840168.8747871}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385336.0358138,\n", " 'depth': 10,\n", " 'bids': {'in': 197094518.13758063, 'out': 194599636.52499655},\n", " 'asks': {'in': 175822779.12712845, 'out': 175862679.4342671}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385336.036171,\n", " 'depth': 10,\n", " 'bids': {'in': 197492122.80353463, 'out': 195095175.28890085},\n", " 'asks': {'in': 176184314.28811646, 'out': 176107419.5455654}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385336.036532,\n", " 'depth': 10,\n", " 'bids': {'in': 197712433.15580404, 'out': 195306013.51453754},\n", " 'asks': {'in': 176541756.64857027, 'out': 176472694.9171746}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385336.036902,\n", " 'depth': 10,\n", " 'bids': {'in': 198104294.85452023, 'out': 195726660.08112144},\n", " 'asks': {'in': 176744512.46984786, 'out': 176730417.11590362}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385336.03725,\n", " 'depth': 10,\n", " 'bids': {'in': 198255916.99796483, 'out': 195864185.21229655},\n", " 'asks': {'in': 176758997.45760256, 'out': 176794918.6807031}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385336.0375931,\n", " 'depth': 10,\n", " 'bids': {'in': 198649244.43395624, 'out': 196429403.48040396},\n", " 'asks': {'in': 176847831.87179407, 'out': 176834914.9049067}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385336.0379388,\n", " 'depth': 10,\n", " 'bids': {'in': 199007337.79546764, 'out': 196605242.22587526},\n", " 'asks': {'in': 177141012.34477347, 'out': 177190007.26477548}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385336.0382872,\n", " 'depth': 10,\n", " 'bids': {'in': 199251485.52466995, 'out': 196778906.88035366},\n", " 'asks': {'in': 177216586.86368778, 'out': 177290150.52741098}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385336.03864,\n", " 'depth': 10,\n", " 'bids': {'in': 199299924.73760563, 'out': 196880158.67656377},\n", " 'asks': {'in': 177283810.13302067, 'out': 177343066.32365128}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385336.038979,\n", " 'depth': 10,\n", " 'bids': {'in': 199320599.17253262, 'out': 196900832.35508728},\n", " 'asks': {'in': 177591942.57805017, 'out': 177605770.61342597}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385336.039314,\n", " 'depth': 10,\n", " 'bids': {'in': 199402256.5987381, 'out': 196905829.7988633},\n", " 'asks': {'in': 177637949.70130417, 'out': 177643813.30126676}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385336.039653,\n", " 'depth': 10,\n", " 'bids': {'in': 199632589.3983196, 'out': 197168261.67767859},\n", " 'asks': {'in': 177655644.92557138, 'out': 177659862.21248096}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385336.039993,\n", " 'depth': 10,\n", " 'bids': {'in': 199685983.444773, 'out': 197208458.7921981},\n", " 'asks': {'in': 177695779.86188728, 'out': 177763245.43092197}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385336.040334,\n", " 'depth': 10,\n", " 'bids': {'in': 199704179.342825, 'out': 197227864.5745048},\n", " 'asks': {'in': 177700736.36032528, 'out': 177768201.92021036}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385336.040669,\n", " 'depth': 10,\n", " 'bids': {'in': 199787813.64929968, 'out': 197379944.21717},\n", " 'asks': {'in': 177935312.41289818, 'out': 177983432.31905147}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385336.04101,\n", " 'depth': 10,\n", " 'bids': {'in': 200129215.39016607, 'out': 197641047.5535063},\n", " 'asks': {'in': 178115479.1619883, 'out': 178163604.89477357}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385336.0413492,\n", " 'depth': 10,\n", " 'bids': {'in': 200289912.83787316, 'out': 197800530.1466287},\n", " 'asks': {'in': 178152613.3930466, 'out': 178207244.92227608}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385336.041698,\n", " 'depth': 10,\n", " 'bids': {'in': 200365996.36619845, 'out': 197876612.9652327},\n", " 'asks': {'in': 178186028.93371108, 'out': 178248247.92339018}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385336.0420392,\n", " 'depth': 10,\n", " 'bids': {'in': 200456316.88139457, 'out': 198092585.9019273},\n", " 'asks': {'in': 178228516.48184907, 'out': 178424578.40833977}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385336.042393,\n", " 'depth': 10,\n", " 'bids': {'in': 200672819.66271397, 'out': 198448949.4764422},\n", " 'asks': {'in': 178372713.37210897, 'out': 178474949.12319118}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385336.042735,\n", " 'depth': 10,\n", " 'bids': {'in': 200765886.20494148, 'out': 198503362.15822068},\n", " 'asks': {'in': 178599087.42119887, 'out': 178699266.19535357}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385336.0430772,\n", " 'depth': 10,\n", " 'bids': {'in': 200788842.94303927, 'out': 198525236.2267728},\n", " 'asks': {'in': 178628800.05681866, 'out': 178736566.82888797}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385336.043443,\n", " 'depth': 10,\n", " 'bids': {'in': 200807268.32515076, 'out': 198641075.51140988},\n", " 'asks': {'in': 178851606.18181565, 'out': 178951790.85015827}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385336.043782,\n", " 'depth': 10,\n", " 'bids': {'in': 200972208.64776754, 'out': 198794559.49231747},\n", " 'asks': {'in': 178862999.66807574, 'out': 178970771.64503118}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385336.044116,\n", " 'depth': 10,\n", " 'bids': {'in': 201279349.37308615, 'out': 198846507.80647656},\n", " 'asks': {'in': 178904002.25566533, 'out': 179004186.950806}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385336.044449,\n", " 'depth': 10,\n", " 'bids': {'in': 201332849.78858846, 'out': 198886199.48420876},\n", " 'asks': {'in': 179126115.42764413, 'out': 179186333.2797522}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385336.044784,\n", " 'depth': 10,\n", " 'bids': {'in': 201379800.73829767, 'out': 199188342.83600506},\n", " 'asks': {'in': 179132552.42182744, 'out': 179191290.997035}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385336.045117,\n", " 'depth': 10,\n", " 'bids': {'in': 201690184.08789548, 'out': 199243858.42507356},\n", " 'asks': {'in': 179137508.90196624, 'out': 179197247.468001}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385336.045446,\n", " 'depth': 10,\n", " 'bids': {'in': 201748267.53458488, 'out': 199557490.57925695},\n", " 'asks': {'in': 179146423.04099575, 'out': 179206161.6417301}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385336.045783,\n", " 'depth': 10,\n", " 'bids': {'in': 201819834.86190668, 'out': 199618889.23842725},\n", " 'asks': {'in': 179161259.08459085, 'out': 179222663.1857596}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385336.0461318,\n", " 'depth': 10,\n", " 'bids': {'in': 201886392.67889577, 'out': 199708214.80203554},\n", " 'asks': {'in': 179381427.54665014, 'out': 179429321.7286335}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385336.0464692,\n", " 'depth': 10,\n", " 'bids': {'in': 201919060.23097026, 'out': 199751024.84752765},\n", " 'asks': {'in': 179414842.47660413, 'out': 179506254.7509955}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385336.046821,\n", " 'depth': 10,\n", " 'bids': {'in': 201983632.95423317, 'out': 199905363.15302736},\n", " 'asks': {'in': 179460578.37869123, 'out': 179668312.3143735}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385336.047165,\n", " 'depth': 10,\n", " 'bids': {'in': 202402340.88844106, 'out': 200229114.79703546},\n", " 'asks': {'in': 179627271.24020514, 'out': 179732316.94009578}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385336.047503,\n", " 'depth': 10,\n", " 'bids': {'in': 202674229.27164686, 'out': 200501020.01684096},\n", " 'asks': {'in': 179655162.29671815, 'out': 179744710.20916787}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385336.047851,\n", " 'depth': 10,\n", " 'bids': {'in': 203283400.62107575, 'out': 200924397.41833416},\n", " 'asks': {'in': 179774805.31872985, 'out': 179809856.99204937}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385336.048202,\n", " 'depth': 10,\n", " 'bids': {'in': 203665411.89372584, 'out': 201338335.94581026},\n", " 'asks': {'in': 179809971.26049146, 'out': 179821515.85179436}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385336.0485408,\n", " 'depth': 10,\n", " 'bids': {'in': 203815096.29691365, 'out': 201531245.87139967},\n", " 'asks': {'in': 179920434.53008765, 'out': 179854704.18300638}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385336.048883,\n", " 'depth': 10,\n", " 'bids': {'in': 203891036.64583814, 'out': 201607186.24381626},\n", " 'asks': {'in': 179980169.51110765, 'out': 179887618.56279936}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385336.049216,\n", " 'depth': 10,\n", " 'bids': {'in': 204150719.44753695, 'out': 201684626.52608636},\n", " 'asks': {'in': 180012105.78744316, 'out': 179967097.58327818}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385336.049556,\n", " 'depth': 10,\n", " 'bids': {'in': 204214096.64562505, 'out': 201929596.73565817},\n", " 'asks': {'in': 180020041.85203296, 'out': 179975033.6003081}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385336.049891,\n", " 'depth': 10,\n", " 'bids': {'in': 204575241.07874545, 'out': 202032913.97938067},\n", " 'asks': {'in': 180026081.65576187, 'out': 180077503.80518678}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385336.050227,\n", " 'depth': 10,\n", " 'bids': {'in': 204637983.09234616, 'out': 202095641.73921105},\n", " 'asks': {'in': 180156509.96772715, 'out': 180178561.99178737}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385336.050572,\n", " 'depth': 10,\n", " 'bids': {'in': 204791701.67546967, 'out': 202247974.18366906},\n", " 'asks': {'in': 180214906.27902666, 'out': 180222531.58440286}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385336.050913,\n", " 'depth': 10,\n", " 'bids': {'in': 204816102.48826006, 'out': 202298989.99747026},\n", " 'asks': {'in': 180245912.06821746, 'out': 180237539.73745865}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385336.0512471,\n", " 'depth': 10,\n", " 'bids': {'in': 204865989.74549997, 'out': 202400377.14424115},\n", " 'asks': {'in': 180265880.96395427, 'out': 180275981.56900674}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385336.051585,\n", " 'depth': 10,\n", " 'bids': {'in': 204953401.18224418, 'out': 202469639.35414705},\n", " 'asks': {'in': 180301274.97384417, 'out': 180444917.04020905}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385336.051938,\n", " 'depth': 10,\n", " 'bids': {'in': 205085937.05999687, 'out': 202630956.73786804},\n", " 'asks': {'in': 180513846.35492876, 'out': 180566308.62163895}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385336.052292,\n", " 'depth': 10,\n", " 'bids': {'in': 205152954.64155117, 'out': 202941079.08036184},\n", " 'asks': {'in': 180540240.16712347, 'out': 180587312.64462745}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385336.052638,\n", " 'depth': 10,\n", " 'bids': {'in': 205215902.24692878, 'out': 203013550.49479786},\n", " 'asks': {'in': 180654634.26323068, 'out': 180638976.69127905}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385336.0529878,\n", " 'depth': 10,\n", " 'bids': {'in': 205315628.9278862, 'out': 203110240.72781545},\n", " 'asks': {'in': 180744278.60149667, 'out': 180753905.32532135}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385336.053338,\n", " 'depth': 10,\n", " 'bids': {'in': 205427148.00726157, 'out': 203177298.14568505},\n", " 'asks': {'in': 180846677.53663227, 'out': 180790758.58312744}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385336.053685,\n", " 'depth': 10,\n", " 'bids': {'in': 205506357.08673286, 'out': 203263000.51709646},\n", " 'asks': {'in': 180860424.85332447, 'out': 180800178.17509693}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385336.0540218,\n", " 'depth': 10,\n", " 'bids': {'in': 205536846.19682527, 'out': 203291991.05315965},\n", " 'asks': {'in': 180889887.81297767, 'out': 180832115.17609093}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385336.054365,\n", " 'depth': 10,\n", " 'bids': {'in': 205808736.51525918, 'out': 203564964.60342965},\n", " 'asks': {'in': 181071972.86486956, 'out': 181011787.47138533}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385336.0547168,\n", " 'depth': 10,\n", " 'bids': {'in': 205981623.90977287, 'out': 203648787.52739954},\n", " 'asks': {'in': 181080814.51883838, 'out': 181057347.81531224}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385336.055063,\n", " 'depth': 10,\n", " 'bids': {'in': 206048966.88556507, 'out': 203787466.76638725},\n", " 'asks': {'in': 181111402.03184697, 'out': 181061232.79387602}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385336.055412,\n", " 'depth': 10,\n", " 'bids': {'in': 206091205.07762626, 'out': 203830347.10114875},\n", " 'asks': {'in': 181140864.75678957, 'out': 181093169.9595946}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385336.055754,\n", " 'depth': 10,\n", " 'bids': {'in': 206330919.70568606, 'out': 204070022.45942256},\n", " 'asks': {'in': 181173707.81763446, 'out': 181178092.2637287}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385336.056198,\n", " 'depth': 10,\n", " 'bids': {'in': 208000075.39353487, 'out': 206427362.16875097},\n", " 'asks': {'in': 181711692.34985626, 'out': 181713235.614006}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385336.056695,\n", " 'depth': 10,\n", " 'bids': {'in': 209754899.04136696, 'out': 208187026.97161606},\n", " 'asks': {'in': 182527874.45545214, 'out': 182528031.7230727}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385336.0573142,\n", " 'depth': 10,\n", " 'bids': {'in': 210159028.75260505, 'out': 208730377.79868025},\n", " 'asks': {'in': 183014654.33290815, 'out': 182680279.6075483}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385336.057802,\n", " 'depth': 10,\n", " 'bids': {'in': 210833780.88681456, 'out': 209204426.12292245},\n", " 'asks': {'in': 183391543.66395256, 'out': 183504056.5354265}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385336.058204,\n", " 'depth': 10,\n", " 'bids': {'in': 211002263.64614928, 'out': 210120464.82121426},\n", " 'asks': {'in': 183683643.62206727, 'out': 183678781.3448935}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385336.058542,\n", " 'depth': 10,\n", " 'bids': {'in': 211168521.2789431, 'out': 210259099.39114177},\n", " 'asks': {'in': 183683643.62206727, 'out': 183678781.3448935}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385336.0588899,\n", " 'depth': 10,\n", " 'bids': {'in': 211266648.86073518, 'out': 210333533.29533738},\n", " 'asks': {'in': 183867380.94144338, 'out': 183870085.2644704}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385336.059244,\n", " 'depth': 10,\n", " 'bids': {'in': 211565957.156424, 'out': 210712770.662969},\n", " 'asks': {'in': 184031358.7275377, 'out': 184027925.1623165}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385336.059604,\n", " 'depth': 10,\n", " 'bids': {'in': 211766549.91209897, 'out': 210968879.7685022},\n", " 'asks': {'in': 184371410.0889547, 'out': 184289248.7768223}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385336.059953,\n", " 'depth': 10,\n", " 'bids': {'in': 212138701.6560183, 'out': 211330066.2270954},\n", " 'asks': {'in': 184382203.5891192, 'out': 184300037.3610268}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385336.060298,\n", " 'depth': 10,\n", " 'bids': {'in': 212359290.222863, 'out': 211505882.9842279},\n", " 'asks': {'in': 184432622.9555391, 'out': 184344064.13769498}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385336.060649,\n", " 'depth': 10,\n", " 'bids': {'in': 212533664.2585992, 'out': 211686453.5162257},\n", " 'asks': {'in': 184484728.158241, 'out': 184588636.9605007}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385336.060995,\n", " 'depth': 10,\n", " 'bids': {'in': 212807404.9329413, 'out': 212012637.4210705},\n", " 'asks': {'in': 184688749.0744714, 'out': 184621917.0027979}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385336.0613382,\n", " 'depth': 10,\n", " 'bids': {'in': 213700141.65053448, 'out': 212141264.85482767},\n", " 'asks': {'in': 184865032.0864253, 'out': 184833440.9799479}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385336.0617101,\n", " 'depth': 10,\n", " 'bids': {'in': 213893119.03092268, 'out': 212292974.00873718},\n", " 'asks': {'in': 185061568.91331202, 'out': 185004362.8543384}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385336.062054,\n", " 'depth': 10,\n", " 'bids': {'in': 214046013.6196043, 'out': 212393262.6641321},\n", " 'asks': {'in': 185277686.52980512, 'out': 185241350.1484769}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385336.062418,\n", " 'depth': 10,\n", " 'bids': {'in': 214307366.13211098, 'out': 212642658.9854566},\n", " 'asks': {'in': 185325967.66595003, 'out': 185277952.4342862}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385336.062762,\n", " 'depth': 10,\n", " 'bids': {'in': 214567729.239204, 'out': 212789212.72282428},\n", " 'asks': {'in': 185364247.96992654, 'out': 185314482.1041283}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385336.063106,\n", " 'depth': 10,\n", " 'bids': {'in': 215069936.4544426, 'out': 213992000.79480937},\n", " 'asks': {'in': 185389725.26863945, 'out': 185387451.2602177}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385336.0634592,\n", " 'depth': 10,\n", " 'bids': {'in': 215112287.30063868, 'out': 214034231.98978978},\n", " 'asks': {'in': 185430065.84282926, 'out': 185459552.8562878}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385336.063819,\n", " 'depth': 10,\n", " 'bids': {'in': 215406632.57421696, 'out': 214640900.62494567},\n", " 'asks': {'in': 185584472.66567814, 'out': 185503890.7311028}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385336.06418,\n", " 'depth': 10,\n", " 'bids': {'in': 215565486.99721345, 'out': 214671534.46998316},\n", " 'asks': {'in': 185643310.58069655, 'out': 185598098.3722981}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385336.0645409,\n", " 'depth': 10,\n", " 'bids': {'in': 215793298.01817015, 'out': 214898922.27386457},\n", " 'asks': {'in': 185698762.79038006, 'out': 185648110.8343449}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385336.064906,\n", " 'depth': 10,\n", " 'bids': {'in': 215884802.79707325, 'out': 215056473.37153876},\n", " 'asks': {'in': 185740944.89942035, 'out': 185724188.17262578}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385336.0652502,\n", " 'depth': 10,\n", " 'bids': {'in': 216193348.77902624, 'out': 215297876.62375477},\n", " 'asks': {'in': 186021595.72039706, 'out': 185973888.68812767}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385336.0656168,\n", " 'depth': 10,\n", " 'bids': {'in': 217681686.30154344, 'out': 216190391.94293186},\n", " 'asks': {'in': 186329354.96853235, 'out': 186250410.23875046}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385336.066036,\n", " 'depth': 10,\n", " 'bids': {'in': 218408095.51863325, 'out': 217692414.94063216},\n", " 'asks': {'in': 186416186.36505595, 'out': 186365292.33417785}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385336.0664089,\n", " 'depth': 10,\n", " 'bids': {'in': 218848330.22205356, 'out': 217995350.70292276},\n", " 'asks': {'in': 186472709.22185615, 'out': 186447011.25693595}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385336.066771,\n", " 'depth': 10,\n", " 'bids': {'in': 219007373.60920596, 'out': 218207426.70376247},\n", " 'asks': {'in': 186492562.59216696, 'out': 186466847.35724446}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385336.067124,\n", " 'depth': 10,\n", " 'bids': {'in': 219101010.44164518, 'out': 218236868.41088328},\n", " 'asks': {'in': 186683645.10229546, 'out': 186657941.72746545}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385336.067487,\n", " 'depth': 10,\n", " 'bids': {'in': 219419808.83079636, 'out': 218685257.01218998},\n", " 'asks': {'in': 186921028.26615214, 'out': 186935274.10284066}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385336.0679722,\n", " 'depth': 10,\n", " 'bids': {'in': 221543489.06465676, 'out': 219733120.1391011},\n", " 'asks': {'in': 187684442.53124154, 'out': 187701507.22863457}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385336.068487,\n", " 'depth': 10,\n", " 'bids': {'in': 222597482.26079255, 'out': 220828743.43762338},\n", " 'asks': {'in': 188496748.14269865, 'out': 188679679.73893377}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385336.068981,\n", " 'depth': 10,\n", " 'bids': {'in': 223155713.37511936, 'out': 221330217.3257025},\n", " 'asks': {'in': 189108905.93085083, 'out': 188886961.20112088}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385336.069377,\n", " 'depth': 10,\n", " 'bids': {'in': 223553318.92860815, 'out': 221624297.95876098},\n", " 'asks': {'in': 189387289.75953475, 'out': 189195151.2389373}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385336.069748,\n", " 'depth': 10,\n", " 'bids': {'in': 224017380.97137964, 'out': 221792602.03741348},\n", " 'asks': {'in': 189772291.44414854, 'out': 189578223.04012668}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385336.0701199,\n", " 'depth': 10,\n", " 'bids': {'in': 224421197.46480265, 'out': 222104961.57177848},\n", " 'asks': {'in': 189877483.14570183, 'out': 189663117.95940068}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385336.0704892,\n", " 'depth': 10,\n", " 'bids': {'in': 224629880.74943116, 'out': 222207228.03141788},\n", " 'asks': {'in': 189920531.9991083, 'out': 189701133.27762538}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385336.070865,\n", " 'depth': 10,\n", " 'bids': {'in': 225162135.47071755, 'out': 222933558.30895248},\n", " 'asks': {'in': 189978761.66330132, 'out': 189852099.0965767}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385336.071229,\n", " 'depth': 10,\n", " 'bids': {'in': 225245356.00317994, 'out': 222964545.77011138},\n", " 'asks': {'in': 190088204.60022023, 'out': 189862432.59517428}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385336.07158,\n", " 'depth': 10,\n", " 'bids': {'in': 225305825.71539512, 'out': 223148205.4412799},\n", " 'asks': {'in': 190176725.13216254, 'out': 189902802.6158141}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385336.0720372,\n", " 'depth': 10,\n", " 'bids': {'in': 225482493.46811503, 'out': 223373799.98631078},\n", " 'asks': {'in': 190222107.72242513, 'out': 189942462.0859541}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385336.072433,\n", " 'depth': 10,\n", " 'bids': {'in': 225988173.99922425, 'out': 223948305.1233014},\n", " 'asks': {'in': 190304382.82106403, 'out': 190306724.2200891}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385336.072809,\n", " 'depth': 10,\n", " 'bids': {'in': 226381883.25851345, 'out': 224298378.1476963},\n", " 'asks': {'in': 190454082.03054103, 'out': 190392554.6261873}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385336.0731761,\n", " 'depth': 10,\n", " 'bids': {'in': 226676582.26150265, 'out': 224604395.56388888},\n", " 'asks': {'in': 190498655.69685963, 'out': 190484711.6508401}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385336.0735302,\n", " 'depth': 10,\n", " 'bids': {'in': 226681588.10004786, 'out': 224609392.60607588},\n", " 'asks': {'in': 190626672.76796943, 'out': 190532802.7183593}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385336.073913,\n", " 'depth': 10,\n", " 'bids': {'in': 227030353.53603217, 'out': 224920547.44430828},\n", " 'asks': {'in': 190770389.35147193, 'out': 190902239.9082604}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385336.074309,\n", " 'depth': 10,\n", " 'bids': {'in': 227156316.71614426, 'out': 225238070.33346048},\n", " 'asks': {'in': 190835212.23457864, 'out': 191098685.998485}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385336.074677,\n", " 'depth': 10,\n", " 'bids': {'in': 227573061.07477355, 'out': 225583543.0289414},\n", " 'asks': {'in': 191179753.19920024, 'out': 191286098.982317}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385336.0750499,\n", " 'depth': 10,\n", " 'bids': {'in': 227824481.25980434, 'out': 225838187.4209135},\n", " 'asks': {'in': 191431324.51997265, 'out': 191493641.5388103}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385336.075402,\n", " 'depth': 10,\n", " 'bids': {'in': 227876113.34951234, 'out': 225890225.89750507},\n", " 'asks': {'in': 191474118.26869515, 'out': 191560034.9646275}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385336.0757701,\n", " 'depth': 10,\n", " 'bids': {'in': 228127526.47602075, 'out': 226141673.93721247},\n", " 'asks': {'in': 191660033.12232745, 'out': 191746230.51252872}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385336.076121,\n", " 'depth': 10,\n", " 'bids': {'in': 228146839.41858715, 'out': 226162652.06185666},\n", " 'asks': {'in': 191851242.74799505, 'out': 191945620.37982902}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385336.076478,\n", " 'depth': 10,\n", " 'bids': {'in': 228431031.79043475, 'out': 226416230.06213507},\n", " 'asks': {'in': 192043748.85970154, 'out': 192128687.04220632}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385336.076829,\n", " 'depth': 10,\n", " 'bids': {'in': 228485706.31202325, 'out': 226461109.57440606},\n", " 'asks': {'in': 192251131.44822395, 'out': 192331751.1291145}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385336.077179,\n", " 'depth': 10,\n", " 'bids': {'in': 228527950.76604775, 'out': 226503354.17516446},\n", " 'asks': {'in': 192327875.36169374, 'out': 192362509.5955661}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385336.077526,\n", " 'depth': 10,\n", " 'bids': {'in': 228546201.79325894, 'out': 226521605.20398706},\n", " 'asks': {'in': 192357483.77819583, 'out': 192391468.26802048}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385336.077869,\n", " 'depth': 10,\n", " 'bids': {'in': 228594311.77652124, 'out': 226551677.68631056},\n", " 'asks': {'in': 192561308.94150734, 'out': 192628826.4112424}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385336.078225,\n", " 'depth': 10,\n", " 'bids': {'in': 228917956.41158533, 'out': 226803490.52958155},\n", " 'asks': {'in': 192739278.52344224, 'out': 192822072.8782351}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385336.07858,\n", " 'depth': 10,\n", " 'bids': {'in': 228950100.87788883, 'out': 226914287.16508263},\n", " 'asks': {'in': 192939733.34070814, 'out': 193013465.0764846}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385336.078934,\n", " 'depth': 10,\n", " 'bids': {'in': 229005385.39413622, 'out': 226956531.80612624},\n", " 'asks': {'in': 192955938.33515725, 'out': 193039674.4819165}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385336.079296,\n", " 'depth': 10,\n", " 'bids': {'in': 229052952.408946, 'out': 227008813.57820323},\n", " 'asks': {'in': 193042780.46706703, 'out': 193072782.61493978}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385336.07966,\n", " 'depth': 10,\n", " 'bids': {'in': 229106988.60026142, 'out': 227184604.97313043},\n", " 'asks': {'in': 193076568.53973272, 'out': 193271047.27510837}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385336.0800278,\n", " 'depth': 10,\n", " 'bids': {'in': 229509479.9645014, 'out': 227609914.33186793},\n", " 'asks': {'in': 193371800.65693423, 'out': 193403443.40908965}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385336.080402,\n", " 'depth': 10,\n", " 'bids': {'in': 229683074.81511343, 'out': 227688350.20809343},\n", " 'asks': {'in': 193479963.92624304, 'out': 193439299.19892296}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385336.080756,\n", " 'depth': 10,\n", " 'bids': {'in': 229954436.38442242, 'out': 227979272.33468634},\n", " 'asks': {'in': 193686818.15846205, 'out': 193635722.65383917}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385336.081111,\n", " 'depth': 10,\n", " 'bids': {'in': 230240718.2303278, 'out': 228281134.38397545},\n", " 'asks': {'in': 193698971.13907704, 'out': 193644827.92721757}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385336.0814679,\n", " 'depth': 10,\n", " 'bids': {'in': 230541839.44653562, 'out': 228576503.54179475},\n", " 'asks': {'in': 193736303.70198435, 'out': 193716560.38160476}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385336.081824,\n", " 'depth': 10,\n", " 'bids': {'in': 230860908.8046171, 'out': 228864136.80130655},\n", " 'asks': {'in': 193773243.07266736, 'out': 193826045.09531066}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385336.082192,\n", " 'depth': 10,\n", " 'bids': {'in': 230915514.74864322, 'out': 228912165.88416424},\n", " 'asks': {'in': 193831574.12326998, 'out': 193907813.74058327}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385336.082554,\n", " 'depth': 10,\n", " 'bids': {'in': 231021157.06741583, 'out': 229024354.05918583},\n", " 'asks': {'in': 193849086.59624296, 'out': 193917313.34527156}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385336.082912,\n", " 'depth': 10,\n", " 'bids': {'in': 231063741.58677244, 'out': 229066598.81021422},\n", " 'asks': {'in': 193929476.58962557, 'out': 193950420.28560436}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385336.0832698,\n", " 'depth': 10,\n", " 'bids': {'in': 231127008.65911615, 'out': 229130220.2334341},\n", " 'asks': {'in': 194002905.18615648, 'out': 193997817.01770735}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385336.083671,\n", " 'depth': 10,\n", " 'bids': {'in': 231477463.15644464, 'out': 229668463.9550082},\n", " 'asks': {'in': 194152574.73215777, 'out': 194085879.28142345}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385336.084053,\n", " 'depth': 10,\n", " 'bids': {'in': 231771191.72741064, 'out': 229754082.0155938},\n", " 'asks': {'in': 194324394.31024396, 'out': 194256081.77868384}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385336.084428,\n", " 'depth': 10,\n", " 'bids': {'in': 231931528.42841384, 'out': 229964448.7572965},\n", " 'asks': {'in': 194375150.84996316, 'out': 194308697.47937685}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385336.084793,\n", " 'depth': 10,\n", " 'bids': {'in': 232082170.52572125, 'out': 230115397.518331},\n", " 'asks': {'in': 194461198.15684617, 'out': 194352891.65787956}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385336.085147,\n", " 'depth': 10,\n", " 'bids': {'in': 232158151.79603794, 'out': 230197886.0564083},\n", " 'asks': {'in': 194501871.67010286, 'out': 194393023.19013196}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385336.0855129,\n", " 'depth': 10,\n", " 'bids': {'in': 232304437.03747696, 'out': 230388949.84461898},\n", " 'asks': {'in': 194776007.37571946, 'out': 194664626.84523025}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385336.08587,\n", " 'depth': 10,\n", " 'bids': {'in': 232511014.63008717, 'out': 230545925.82180476},\n", " 'asks': {'in': 194808589.29400405, 'out': 194794684.37768754}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385336.0862238,\n", " 'depth': 10,\n", " 'bids': {'in': 232569954.48972017, 'out': 230617698.23753437},\n", " 'asks': {'in': 194933877.74637645, 'out': 194824817.69674644}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385336.086585,\n", " 'depth': 10,\n", " 'bids': {'in': 232746903.23776436, 'out': 230791074.39287436},\n", " 'asks': {'in': 194976290.94042456, 'out': 194911830.99448013}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385336.0869792,\n", " 'depth': 10,\n", " 'bids': {'in': 233097024.33587685, 'out': 231117989.75327617},\n", " 'asks': {'in': 195232709.50162756, 'out': 195433742.61508402}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385336.0873759,\n", " 'depth': 10,\n", " 'bids': {'in': 233312872.16317084, 'out': 231380138.27662206},\n", " 'asks': {'in': 195582071.68973657, 'out': 195647290.61345112}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385336.087759,\n", " 'depth': 10,\n", " 'bids': {'in': 233433649.05350456, 'out': 231498959.30510926},\n", " 'asks': {'in': 195637154.14403027, 'out': 195819565.21368232}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385336.088141,\n", " 'depth': 10,\n", " 'bids': {'in': 233550079.11293575, 'out': 231622057.22842196},\n", " 'asks': {'in': 195830636.17566127, 'out': 195875491.67614093}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385336.088526,\n", " 'depth': 10,\n", " 'bids': {'in': 233795722.63243055, 'out': 231888407.02588347},\n", " 'asks': {'in': 195912018.17134845, 'out': 195910901.00874925}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385336.088885,\n", " 'depth': 10,\n", " 'bids': {'in': 233862501.94705725, 'out': 231936199.91458717},\n", " 'asks': {'in': 195947893.53531316, 'out': 195955405.23504436}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385336.0892532,\n", " 'depth': 10,\n", " 'bids': {'in': 234199197.86045596, 'out': 232249496.35425317},\n", " 'asks': {'in': 195984011.22238156, 'out': 195975541.02295196}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385336.089611,\n", " 'depth': 10,\n", " 'bids': {'in': 234469446.57897627, 'out': 232558957.32172966},\n", " 'asks': {'in': 196011996.66845927, 'out': 195995176.63548476}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385336.089965,\n", " 'depth': 10,\n", " 'bids': {'in': 234534079.90653047, 'out': 232623590.65045205},\n", " 'asks': {'in': 196020616.71806195, 'out': 196003796.70518777}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385336.0903199,\n", " 'depth': 10,\n", " 'bids': {'in': 234586742.29981318, 'out': 232699586.65805346},\n", " 'asks': {'in': 196049574.91758177, 'out': 196032755.05601376}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385336.090671,\n", " 'depth': 10,\n", " 'bids': {'in': 234663521.85790977, 'out': 232738971.39270407},\n", " 'asks': {'in': 196082440.29036137, 'out': 196069092.04030135}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385336.0910258,\n", " 'depth': 10,\n", " 'bids': {'in': 234811889.32102087, 'out': 232813381.60065997},\n", " 'asks': {'in': 196118757.50753087, 'out': 196101666.96769536}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385336.091383,\n", " 'depth': 10,\n", " 'bids': {'in': 234841853.54770187, 'out': 232906737.02556217},\n", " 'asks': {'in': 196151832.03771415, 'out': 196137992.89638686}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385336.091743,\n", " 'depth': 10,\n", " 'bids': {'in': 234969060.25142446, 'out': 233026697.79452506},\n", " 'asks': {'in': 196272924.52089036, 'out': 196172432.13137016}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385336.092135,\n", " 'depth': 10,\n", " 'bids': {'in': 235361537.41624635, 'out': 233509571.88395047},\n", " 'asks': {'in': 196667624.10223255, 'out': 196584982.44909206}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385336.092528,\n", " 'depth': 10,\n", " 'bids': {'in': 235580841.29601505, 'out': 233588088.90898237},\n", " 'asks': {'in': 196789791.01724035, 'out': 196695513.71775925}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385336.0929,\n", " 'depth': 10,\n", " 'bids': {'in': 235923720.07135504, 'out': 233876065.34886566},\n", " 'asks': {'in': 197012536.13085926, 'out': 196984516.26156464}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385336.093291,\n", " 'depth': 10,\n", " 'bids': {'in': 236159672.56956205, 'out': 234208380.21030086},\n", " 'asks': {'in': 197116600.53978145, 'out': 197168986.27761823}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385336.0936692,\n", " 'depth': 10,\n", " 'bids': {'in': 236464750.35900524, 'out': 234446524.96039495},\n", " 'asks': {'in': 197399725.56063244, 'out': 197381246.68978494}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385336.0941381,\n", " 'depth': 10,\n", " 'bids': {'in': 237461763.97276226, 'out': 236296065.67433155},\n", " 'asks': {'in': 199714867.77334854, 'out': 198742302.11262625}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385336.094649,\n", " 'depth': 10,\n", " 'bids': {'in': 237983259.92823225, 'out': 237646286.24292153},\n", " 'asks': {'in': 200361020.46714643, 'out': 200826896.27681917}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385336.095089,\n", " 'depth': 10,\n", " 'bids': {'in': 238556392.99830845, 'out': 238190068.14827174},\n", " 'asks': {'in': 200682330.39785063, 'out': 200951190.15641266}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385336.095503,\n", " 'depth': 10,\n", " 'bids': {'in': 238866692.80601025, 'out': 238676940.85496303},\n", " 'asks': {'in': 200798078.37486103, 'out': 201005801.04052746}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385336.0959082,\n", " 'depth': 10,\n", " 'bids': {'in': 239344202.95698816, 'out': 239080933.01553154},\n", " 'asks': {'in': 201107602.25407252, 'out': 201136061.39464226}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385336.096307,\n", " 'depth': 10,\n", " 'bids': {'in': 239831250.49914396, 'out': 239558274.05413654},\n", " 'asks': {'in': 201319351.2722786, 'out': 201439755.24770555}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385336.0967,\n", " 'depth': 10,\n", " 'bids': {'in': 240011220.30429366, 'out': 239746147.17047036},\n", " 'asks': {'in': 201387969.67747492, 'out': 201493978.40172154}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385336.097095,\n", " 'depth': 10,\n", " 'bids': {'in': 240161116.38674188, 'out': 239845119.41595796},\n", " 'asks': {'in': 201431918.96245003, 'out': 201540888.19235983}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385336.097518,\n", " 'depth': 10,\n", " 'bids': {'in': 240921620.43834037, 'out': 240631567.85272425},\n", " 'asks': {'in': 202004554.52176753, 'out': 202282688.80116725}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385336.0979578,\n", " 'depth': 10,\n", " 'bids': {'in': 241213156.31572777, 'out': 240883569.08122176},\n", " 'asks': {'in': 202104544.19829813, 'out': 202378073.29443675}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385336.0983481,\n", " 'depth': 10,\n", " 'bids': {'in': 241443682.73674557, 'out': 241254949.40502086},\n", " 'asks': {'in': 202435447.88905352, 'out': 202704777.93301964}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385336.098739,\n", " 'depth': 10,\n", " 'bids': {'in': 241638151.61606705, 'out': 241341945.97733036},\n", " 'asks': {'in': 202794711.55979782, 'out': 203005632.50098303}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385336.099204,\n", " 'depth': 10,\n", " 'bids': {'in': 242557258.66141585, 'out': 242185725.48475477},\n", " 'asks': {'in': 204947542.56879362, 'out': 203911092.91553003}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385336.099691,\n", " 'depth': 10,\n", " 'bids': {'in': 243470555.80827993, 'out': 243016544.89020997},\n", " 'asks': {'in': 205558438.6287307, 'out': 204294700.86244032}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385336.1001248,\n", " 'depth': 10,\n", " 'bids': {'in': 243725429.71002614, 'out': 243199098.98445466},\n", " 'asks': {'in': 205965679.56778753, 'out': 204696649.09532693}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385336.100543,\n", " 'depth': 10,\n", " 'bids': {'in': 243931186.20264655, 'out': 243605701.64700055},\n", " 'asks': {'in': 206307604.75264314, 'out': 206293237.19106433}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385336.1009321,\n", " 'depth': 10,\n", " 'bids': {'in': 244144683.00866157, 'out': 243694064.65103346},\n", " 'asks': {'in': 206596997.59195563, 'out': 206571486.4797671}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385336.101304,\n", " 'depth': 10,\n", " 'bids': {'in': 244316463.78908578, 'out': 243865842.99601695},\n", " 'asks': {'in': 206662293.07351762, 'out': 206616073.3052425}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385336.101674,\n", " 'depth': 10,\n", " 'bids': {'in': 244378250.9248649, 'out': 243905227.84844455},\n", " 'asks': {'in': 207346798.0359882, 'out': 206637007.0315733}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385336.102048,\n", " 'depth': 10,\n", " 'bids': {'in': 244534551.6808253, 'out': 244046400.31998044},\n", " 'asks': {'in': 208260034.4181728, 'out': 207047815.8172184}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385336.102431,\n", " 'depth': 10,\n", " 'bids': {'in': 244935378.7286161, 'out': 244428001.74789664},\n", " 'asks': {'in': 208304914.8736714, 'out': 207084143.15583718}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385336.102808,\n", " 'depth': 10,\n", " 'bids': {'in': 245365908.35703048, 'out': 244815791.06404775},\n", " 'asks': {'in': 208431408.48243892, 'out': 207942752.59728447}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385336.103201,\n", " 'depth': 10,\n", " 'bids': {'in': 245805191.25403738, 'out': 245467638.11139005},\n", " 'asks': {'in': 208695400.37645382, 'out': 208117952.80756387}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385336.103605,\n", " 'depth': 10,\n", " 'bids': {'in': 245938559.96280158, 'out': 245715828.64458627},\n", " 'asks': {'in': 209027632.96814463, 'out': 209118474.48652846}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385336.103999,\n", " 'depth': 10,\n", " 'bids': {'in': 246163033.67047918, 'out': 245809723.36542726},\n", " 'asks': {'in': 209157059.92066732, 'out': 209125910.26716426}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385336.104439,\n", " 'depth': 10,\n", " 'bids': {'in': 248724221.4529068, 'out': 246739076.98426464},\n", " 'asks': {'in': 210029290.8313533, 'out': 209907599.47915545}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385336.104932,\n", " 'depth': 10,\n", " 'bids': {'in': 249431420.1309883, 'out': 248524514.64533865},\n", " 'asks': {'in': 210544422.4346644, 'out': 210368315.49566525}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385336.10538,\n", " 'depth': 10,\n", " 'bids': {'in': 249887618.3502528, 'out': 249843774.77689704},\n", " 'asks': {'in': 210967037.9121376, 'out': 210933497.08088845}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385336.1058428,\n", " 'depth': 10,\n", " 'bids': {'in': 252875637.7890602, 'out': 250751897.38569745},\n", " 'asks': {'in': 212082754.8327315, 'out': 211939716.05734625}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385336.106328,\n", " 'depth': 10,\n", " 'bids': {'in': 253428957.8252035, 'out': 251567213.20652425},\n", " 'asks': {'in': 212623084.99603608, 'out': 212367953.22780865}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385336.106744,\n", " 'depth': 10,\n", " 'bids': {'in': 253833691.73344612, 'out': 251917882.03452486},\n", " 'asks': {'in': 212981301.38853228, 'out': 212767838.68937054}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385336.1071382,\n", " 'depth': 10,\n", " 'bids': {'in': 253997138.09402442, 'out': 252078018.81408685},\n", " 'asks': {'in': 213034076.4922154, 'out': 212813549.51017815}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385336.1075242,\n", " 'depth': 10,\n", " 'bids': {'in': 254084894.65651822, 'out': 252191894.07044056},\n", " 'asks': {'in': 213249086.7835612, 'out': 213035030.25171906}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385336.10791,\n", " 'depth': 10,\n", " 'bids': {'in': 254142391.3046747, 'out': 252357631.04559106},\n", " 'asks': {'in': 213342678.853109, 'out': 213136078.65573567}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385336.108321,\n", " 'depth': 10,\n", " 'bids': {'in': 254691753.2805879, 'out': 252785176.96201837},\n", " 'asks': {'in': 213938108.99718902, 'out': 213679748.35782918}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385336.10874,\n", " 'depth': 10,\n", " 'bids': {'in': 255185196.6438764, 'out': 253362197.83445418},\n", " 'asks': {'in': 214441191.8476681, 'out': 214281973.2225251}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385336.109161,\n", " 'depth': 10,\n", " 'bids': {'in': 255436397.3437053, 'out': 253706893.07911587},\n", " 'asks': {'in': 214550315.5781056, 'out': 214396969.8935934}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385336.109555,\n", " 'depth': 10,\n", " 'bids': {'in': 255757930.08774158, 'out': 253947179.74889678},\n", " 'asks': {'in': 214783567.7044288, 'out': 214604191.773616}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385336.10994,\n", " 'depth': 10,\n", " 'bids': {'in': 255871404.83640838, 'out': 254089819.99840558},\n", " 'asks': {'in': 214930137.812589, 'out': 214643118.9281056}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385336.1103108,\n", " 'depth': 10,\n", " 'bids': {'in': 256280326.8010631, 'out': 254459081.57801297},\n", " 'asks': {'in': 214973248.8223382, 'out': 214686127.7029991}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385336.110695,\n", " 'depth': 10,\n", " 'bids': {'in': 256556702.8505329, 'out': 254785270.7465588},\n", " 'asks': {'in': 215020139.8333963, 'out': 214846296.2357069}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385336.111087,\n", " 'depth': 10,\n", " 'bids': {'in': 256902282.57544088, 'out': 255084241.43546858},\n", " 'asks': {'in': 215161782.10906458, 'out': 214920730.6127195}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385336.111496,\n", " 'depth': 10,\n", " 'bids': {'in': 256995355.0850381, 'out': 255242171.4684254},\n", " 'asks': {'in': 215241400.22851548, 'out': 214957695.5330769}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385336.111874,\n", " 'depth': 10,\n", " 'bids': {'in': 257296203.9071681, 'out': 255552123.0838228},\n", " 'asks': {'in': 215285606.46743947, 'out': 215001896.3449225}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385336.112267,\n", " 'depth': 10,\n", " 'bids': {'in': 257435837.3071326, 'out': 255628175.49121988},\n", " 'asks': {'in': 215507023.47854808, 'out': 215218299.01581392}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385336.112651,\n", " 'depth': 10,\n", " 'bids': {'in': 257784133.5085176, 'out': 255920287.9262975},\n", " 'asks': {'in': 215747585.31049818, 'out': 215595755.7179264}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385336.1131089,\n", " 'depth': 10,\n", " 'bids': {'in': 258556968.11361688, 'out': 257667273.08993918},\n", " 'asks': {'in': 217878259.0223924, 'out': 216885553.3214926}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385336.1136189,\n", " 'depth': 10,\n", " 'bids': {'in': 259029673.2806272, 'out': 259020074.03893018},\n", " 'asks': {'in': 218704579.8277767, 'out': 218807971.31112522}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385336.114068,\n", " 'depth': 10,\n", " 'bids': {'in': 259537311.6335671, 'out': 259299087.96610487},\n", " 'asks': {'in': 219145670.1629385, 'out': 219127762.9377253}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385336.114469,\n", " 'depth': 10,\n", " 'bids': {'in': 259783901.2398513, 'out': 259547022.77151507},\n", " 'asks': {'in': 219184535.0951549, 'out': 219163404.3693726}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385336.114851,\n", " 'depth': 10,\n", " 'bids': {'in': 259875371.4710857, 'out': 259634086.51266336},\n", " 'asks': {'in': 219302887.4872165, 'out': 219405783.8261483}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385336.115242,\n", " 'depth': 10,\n", " 'bids': {'in': 260084985.898148, 'out': 259728439.65860957},\n", " 'asks': {'in': 219546581.3885373, 'out': 219716658.694373}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385336.1156359,\n", " 'depth': 10,\n", " 'bids': {'in': 260402681.4676829, 'out': 260047474.41868606},\n", " 'asks': {'in': 220058175.1999541, 'out': 220180899.55488113}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385336.116044,\n", " 'depth': 10,\n", " 'bids': {'in': 260982429.4759049, 'out': 260701874.99075657},\n", " 'asks': {'in': 220233468.8693394, 'out': 220512948.70599604}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385336.1164951,\n", " 'depth': 10,\n", " 'bids': {'in': 261690114.8139845, 'out': 261659255.82183298},\n", " 'asks': {'in': 221584024.4840488, 'out': 221118212.11613825}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385336.116951,\n", " 'depth': 10,\n", " 'bids': {'in': 262140640.0391659, 'out': 262080209.528541},\n", " 'asks': {'in': 222054577.66167933, 'out': 222031888.96085924}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385336.117356,\n", " 'depth': 10,\n", " 'bids': {'in': 262193065.5910514, 'out': 262150683.9991575},\n", " 'asks': {'in': 222284658.01735014, 'out': 222304601.30309463}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385336.117742,\n", " 'depth': 10,\n", " 'bids': {'in': 262575123.2892703, 'out': 262304141.5813897},\n", " 'asks': {'in': 222357962.89809734, 'out': 222338552.10869804}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385336.118122,\n", " 'depth': 10,\n", " 'bids': {'in': 262596132.3949795, 'out': 262454284.43423238},\n", " 'asks': {'in': 222656642.39494914, 'out': 222636252.92084044}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385336.1185,\n", " 'depth': 10,\n", " 'bids': {'in': 262625623.88751242, 'out': 262525010.5228876},\n", " 'asks': {'in': 222690036.91226825, 'out': 222669537.91577685}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385336.118867,\n", " 'depth': 10,\n", " 'bids': {'in': 262645813.97264263, 'out': 262559531.2452868},\n", " 'asks': {'in': 222698928.78796616, 'out': 222678434.85359275}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385336.1192489,\n", " 'depth': 10,\n", " 'bids': {'in': 262712586.66979593, 'out': 262670848.2224743},\n", " 'asks': {'in': 223007651.95503467, 'out': 222925046.99511015}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385336.11964,\n", " 'depth': 10,\n", " 'bids': {'in': 262759210.94006643, 'out': 262810944.6289779},\n", " 'asks': {'in': 223080928.52543348, 'out': 223156975.01357377}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385336.120024,\n", " 'depth': 10,\n", " 'bids': {'in': 262908852.09089682, 'out': 262864214.4698541},\n", " 'asks': {'in': 223400326.3192396, 'out': 223390143.47333947}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385336.1204321,\n", " 'depth': 10,\n", " 'bids': {'in': 263228597.6483896, 'out': 263454174.19372737},\n", " 'asks': {'in': 223705310.92471388, 'out': 223654044.81278875}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385336.1208682,\n", " 'depth': 10,\n", " 'bids': {'in': 263981562.8284826, 'out': 264152313.31919017},\n", " 'asks': {'in': 224438887.87348908, 'out': 224308515.44085637}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385336.121299,\n", " 'depth': 10,\n", " 'bids': {'in': 264248799.11445048, 'out': 264353928.64712736},\n", " 'asks': {'in': 224704684.6405168, 'out': 224522038.49649265}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385336.1216981,\n", " 'depth': 10,\n", " 'bids': {'in': 264441417.8817741, 'out': 264689798.47225598},\n", " 'asks': {'in': 224907805.19546458, 'out': 224856461.84546095}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385336.122113,\n", " 'depth': 10,\n", " 'bids': {'in': 265073773.5063454, 'out': 265059940.63299596},\n", " 'asks': {'in': 225085237.9217876, 'out': 224921709.38339484}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385336.122499,\n", " 'depth': 10,\n", " 'bids': {'in': 265169611.0796411, 'out': 265268612.50565726},\n", " 'asks': {'in': 225264855.798403, 'out': 225101315.92643964}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385336.122875,\n", " 'depth': 10,\n", " 'bids': {'in': 265364547.0949076, 'out': 265453480.98741326},\n", " 'asks': {'in': 225475475.8565394, 'out': 225305436.35844234}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760385336.1232572,\n", " 'depth': 10,\n", " 'bids': {'in': 265770404.4342719, 'out': 265761053.46088704},\n", " 'asks': {'in': 225485367.3975672, 'out': 225314835.66742694}},\n", " ...]" ] }, "execution_count": 142, "metadata": {}, "output_type": "execute_result" } ], "source": [ "volumes" ] }, { "cell_type": "code", "execution_count": 177, "id": "a5c1507c-f012-4600-b3cf-e1da9bc4be14", "metadata": {}, "outputs": [], "source": [ "import numpy as np\n", "import pandas as pd" ] }, { "cell_type": "code", "execution_count": 191, "id": "f0d9f779-c974-44c4-9f0b-72f42fa4ddd8", "metadata": {}, "outputs": [], "source": [ "prices = np.array([volume[\"lowest_ask\"] for volume in orderbooks])\n", "\n", "bids_in = np.array([volume[\"bids\"][\"in\"] for volume in volumes])\n", "bids_out = np.array([volume[\"bids\"][\"out\"] for volume in volumes])\n", "asks_in = np.array([volume[\"asks\"][\"in\"] for volume in volumes])\n", "asks_out = np.array([volume[\"asks\"][\"out\"] for volume in volumes])\n", "\n", "\n", "bids_balance = bids_in - bids_out\n", "asks_balance = asks_in - asks_out\n", "balance = bids_in - asks_out\n", "\n", "x = np.array([vol[\"timestamp\"] for vol in volumes])\n", "\n", "data=np.concatenate([prices.reshape(-1,1), bids_in.reshape(-1,1), bids_out.reshape(-1,1), asks_in.reshape(-1,1), asks_out.reshape(-1,1)], axis=1)\n", "df = pd.DataFrame(data=data,index=x, columns= [\"prices\", \"bids_in\", \"bids_out\", \"asks_in\", \"asks_out\"] )\n" ] }, { "cell_type": "code", "execution_count": 192, "id": "ce0f8c96-1d15-48d9-9b13-f0f88a3a48a9", "metadata": {}, "outputs": [ { "data": { "text/plain": [ "[{'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.880457,\n", " 'depth': 60,\n", " 'bids': {'in': 0, 'out': 0},\n", " 'asks': {'in': 0, 'out': 0}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.880766,\n", " 'depth': 60,\n", " 'bids': {'in': 267825.1921611, 'out': 144300.90123040005},\n", " 'asks': {'in': 162848.7712041, 'out': 193219.8091764}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.880943,\n", " 'depth': 60,\n", " 'bids': {'in': 434006.80804489995, 'out': 353783.707776},\n", " 'asks': {'in': 403914.7605707, 'out': 277329.900226}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.881129,\n", " 'depth': 60,\n", " 'bids': {'in': 707685.6404085999, 'out': 1136577.1175236},\n", " 'asks': {'in': 657794.1375483, 'out': 613306.2864753001}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.88133,\n", " 'depth': 60,\n", " 'bids': {'in': 1087650.2383775997, 'out': 1401142.0233726},\n", " 'asks': {'in': 934629.9921611999, 'out': 899587.3122018}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.8817239,\n", " 'depth': 60,\n", " 'bids': {'in': 1394798.2319957996, 'out': 1478476.0530396001},\n", " 'asks': {'in': 1079812.5444328, 'out': 923695.8137408}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.88188,\n", " 'depth': 60,\n", " 'bids': {'in': 1515477.1922628996, 'out': 1662637.8632248002},\n", " 'asks': {'in': 1127373.5341794, 'out': 959929.4989198}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.882037,\n", " 'depth': 60,\n", " 'bids': {'in': 1622656.9443586995, 'out': 1729471.2006568003},\n", " 'asks': {'in': 1174989.832958, 'out': 1018609.5373818}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.8822038,\n", " 'depth': 60,\n", " 'bids': {'in': 1748500.1911307995, 'out': 1859853.8151610002},\n", " 'asks': {'in': 1222245.2463612, 'out': 1063574.5614261}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.882378,\n", " 'depth': 60,\n", " 'bids': {'in': 1978227.4428747995, 'out': 2032903.8450020002},\n", " 'asks': {'in': 1277955.9460451999, 'out': 1113442.3371838}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.882547,\n", " 'depth': 60,\n", " 'bids': {'in': 2101342.9670808995, 'out': 2115828.4432673003},\n", " 'asks': {'in': 1326196.5799411, 'out': 1200036.0015884}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.8827221,\n", " 'depth': 60,\n", " 'bids': {'in': 2186606.7783189993, 'out': 2291406.2453213003},\n", " 'asks': {'in': 1471898.9791091, 'out': 1384340.8210784}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.882944,\n", " 'depth': 60,\n", " 'bids': {'in': 2629419.6023500995, 'out': 2552981.2285976},\n", " 'asks': {'in': 1822566.1382271, 'out': 2003293.7614737}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.883153,\n", " 'depth': 60,\n", " 'bids': {'in': 2744426.6155696996, 'out': 2760997.0181854},\n", " 'asks': {'in': 2186791.201626, 'out': 2198742.8590527}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.883342,\n", " 'depth': 60,\n", " 'bids': {'in': 2919763.0509190997, 'out': 2928973.3080213},\n", " 'asks': {'in': 2449333.9407672, 'out': 2255491.8147432}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.883521,\n", " 'depth': 60,\n", " 'bids': {'in': 3143378.0325658997, 'out': 3029319.8554058},\n", " 'asks': {'in': 2576341.4302286003, 'out': 2481795.84332}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.883696,\n", " 'depth': 60,\n", " 'bids': {'in': 3281538.8971273997, 'out': 3154419.9291593},\n", " 'asks': {'in': 2726425.2965156003, 'out': 2619954.2698376}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.883863,\n", " 'depth': 60,\n", " 'bids': {'in': 3366779.1366016995, 'out': 3239660.9152002},\n", " 'asks': {'in': 2761249.1254374003, 'out': 2682805.0895006}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.884017,\n", " 'depth': 60,\n", " 'bids': {'in': 3429509.4754397995, 'out': 3302631.45708},\n", " 'asks': {'in': 2987346.3925456004, 'out': 2816379.9278307}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.884172,\n", " 'depth': 60,\n", " 'bids': {'in': 3626070.2711404995, 'out': 3498261.9480399},\n", " 'asks': {'in': 3132404.8720800006, 'out': 2959013.0721734}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.88434,\n", " 'depth': 60,\n", " 'bids': {'in': 3748259.2630156996, 'out': 3824299.6576489},\n", " 'asks': {'in': 3181710.3500442007, 'out': 3120891.1145141}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.8845272,\n", " 'depth': 60,\n", " 'bids': {'in': 3840162.4290713994, 'out': 4037993.2536334},\n", " 'asks': {'in': 3320882.9663327006, 'out': 3316213.9624412}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.884705,\n", " 'depth': 60,\n", " 'bids': {'in': 3927001.1943422994, 'out': 4124465.6181292},\n", " 'asks': {'in': 3465312.701346101, 'out': 3363784.9629753}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.8848839,\n", " 'depth': 60,\n", " 'bids': {'in': 4056917.5967991995, 'out': 4280666.6977909},\n", " 'asks': {'in': 3498162.707050901, 'out': 3420166.9975711}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.885078,\n", " 'depth': 60,\n", " 'bids': {'in': 4359750.532937899, 'out': 4425863.9448934},\n", " 'asks': {'in': 4088709.6571102007, 'out': 3798051.8797212}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.885278,\n", " 'depth': 60,\n", " 'bids': {'in': 4615873.575795699, 'out': 4541042.8370133005},\n", " 'asks': {'in': 4406096.078658901, 'out': 4273752.1573913}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.885461,\n", " 'depth': 60,\n", " 'bids': {'in': 4693671.118214099, 'out': 4705047.5674457},\n", " 'asks': {'in': 4445938.642446701, 'out': 4395315.7076513}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.885631,\n", " 'depth': 60,\n", " 'bids': {'in': 4867135.369404999, 'out': 4819999.9871518},\n", " 'asks': {'in': 4507419.305028101, 'out': 4435281.887380701}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.885803,\n", " 'depth': 60,\n", " 'bids': {'in': 4930189.782251999, 'out': 4920901.3184392},\n", " 'asks': {'in': 4543510.977759501, 'out': 4525547.899682401}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.885997,\n", " 'depth': 60,\n", " 'bids': {'in': 5003904.855667699, 'out': 5172009.874585399},\n", " 'asks': {'in': 4652047.399921001, 'out': 4574397.0763749005}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.886181,\n", " 'depth': 60,\n", " 'bids': {'in': 5194559.400390899, 'out': 5247127.724692499},\n", " 'asks': {'in': 4802741.398240301, 'out': 4725093.7884966}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.8863528,\n", " 'depth': 60,\n", " 'bids': {'in': 5347781.317624799, 'out': 5383236.0772472},\n", " 'asks': {'in': 4932555.2415158, 'out': 4854944.5901054}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.886513,\n", " 'depth': 60,\n", " 'bids': {'in': 5387270.296670399, 'out': 5453793.9050950995},\n", " 'asks': {'in': 4941421.564216101, 'out': 4863793.5112047}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.886676,\n", " 'depth': 60,\n", " 'bids': {'in': 5457158.763198298, 'out': 5493715.758040699},\n", " 'asks': {'in': 4970877.284422501, 'out': 4893248.9497059}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.886852,\n", " 'depth': 60,\n", " 'bids': {'in': 5646990.885252899, 'out': 5726618.3157351995},\n", " 'asks': {'in': 5137214.564775801, 'out': 5069412.553472}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.887038,\n", " 'depth': 60,\n", " 'bids': {'in': 5672619.453411099, 'out': 5826859.584603399},\n", " 'asks': {'in': 5181974.634150201, 'out': 5240583.3616936}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.887528,\n", " 'depth': 60,\n", " 'bids': {'in': 6299955.110510498, 'out': 6411852.225446099},\n", " 'asks': {'in': 5805565.183489902, 'out': 5935648.2227982}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.8877819,\n", " 'depth': 60,\n", " 'bids': {'in': 6516329.210464498, 'out': 6685864.606021499},\n", " 'asks': {'in': 6109930.103584502, 'out': 6053134.87581}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.887991,\n", " 'depth': 60,\n", " 'bids': {'in': 6741295.251897798, 'out': 6784255.780475499},\n", " 'asks': {'in': 6283576.0489698015, 'out': 6390838.8595313}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.888182,\n", " 'depth': 60,\n", " 'bids': {'in': 6915229.680725598, 'out': 6982012.5972976},\n", " 'asks': {'in': 6326997.306032002, 'out': 6430227.7459205}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.888361,\n", " 'depth': 60,\n", " 'bids': {'in': 6988590.196818198, 'out': 7161324.5918146},\n", " 'asks': {'in': 6421444.540951002, 'out': 6459684.1174809}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.8885279,\n", " 'depth': 60,\n", " 'bids': {'in': 7164087.250888398, 'out': 7218005.2300439},\n", " 'asks': {'in': 6511264.577958602, 'out': 6576907.0736955}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.888702,\n", " 'depth': 60,\n", " 'bids': {'in': 7306678.045225498, 'out': 7289915.0252061},\n", " 'asks': {'in': 6733520.436217902, 'out': 6703930.6102552}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.888884,\n", " 'depth': 60,\n", " 'bids': {'in': 7371809.482982598, 'out': 7477164.5814866},\n", " 'asks': {'in': 6893634.916745102, 'out': 6854597.5848495}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.889069,\n", " 'depth': 60,\n", " 'bids': {'in': 7484167.675375998, 'out': 7571777.687328501},\n", " 'asks': {'in': 7048829.423037602, 'out': 7001007.4176445}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.889364,\n", " 'depth': 60,\n", " 'bids': {'in': 10389272.317918498, 'out': 8688687.161049802},\n", " 'asks': {'in': 7671172.725482602, 'out': 7684574.5616206}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.889697,\n", " 'depth': 60,\n", " 'bids': {'in': 10939643.904696997, 'out': 9249509.598821202},\n", " 'asks': {'in': 8532633.463865303, 'out': 8432843.5638885}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.889942,\n", " 'depth': 60,\n", " 'bids': {'in': 11403437.957510397, 'out': 9516455.661613103},\n", " 'asks': {'in': 8871332.780542802, 'out': 8634509.138621699}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.890156,\n", " 'depth': 60,\n", " 'bids': {'in': 11639750.506927997, 'out': 9726618.360183403},\n", " 'asks': {'in': 9264230.042231202, 'out': 9079359.608994499}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.89035,\n", " 'depth': 60,\n", " 'bids': {'in': 11747866.438452296, 'out': 9962718.030296603},\n", " 'asks': {'in': 9406558.256190702, 'out': 9335858.9665745}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.890537,\n", " 'depth': 60,\n", " 'bids': {'in': 12063388.508184696, 'out': 10177297.023264403},\n", " 'asks': {'in': 9617624.038179602, 'out': 9608244.0842054}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.890743,\n", " 'depth': 60,\n", " 'bids': {'in': 12243530.942457996, 'out': 11009359.737541702},\n", " 'asks': {'in': 9706613.875078302, 'out': 9678571.869061401}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.890935,\n", " 'depth': 60,\n", " 'bids': {'in': 13144806.538733797, 'out': 11207317.921246601},\n", " 'asks': {'in': 9823094.923445001, 'out': 9696585.2311259}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.8911219,\n", " 'depth': 60,\n", " 'bids': {'in': 13258800.416147998, 'out': 12020058.124016201},\n", " 'asks': {'in': 9911792.7767827, 'out': 9899899.6153486}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.891306,\n", " 'depth': 60,\n", " 'bids': {'in': 13361260.781527797, 'out': 12099994.445851201},\n", " 'asks': {'in': 10043033.0819569, 'out': 9933687.3177829}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.891482,\n", " 'depth': 60,\n", " 'bids': {'in': 14142861.637255296, 'out': 12196226.6281994},\n", " 'asks': {'in': 10074461.198583601, 'out': 10005556.754107099}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.891669,\n", " 'depth': 60,\n", " 'bids': {'in': 14233996.960406195, 'out': 12989026.0184027},\n", " 'asks': {'in': 10118285.9056314, 'out': 10056966.6620474}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.89185,\n", " 'depth': 60,\n", " 'bids': {'in': 15058519.482446695, 'out': 13093063.0068128},\n", " 'asks': {'in': 10154325.7134539, 'out': 10091001.2921132}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.892032,\n", " 'depth': 60,\n", " 'bids': {'in': 15140575.042526195, 'out': 13864319.8976119},\n", " 'asks': {'in': 10185983.5903987, 'out': 10119870.9943268}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.892224,\n", " 'depth': 60,\n", " 'bids': {'in': 15368376.180316694, 'out': 14005258.2006249},\n", " 'asks': {'in': 10324298.049421702, 'out': 10349606.3888312}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.892411,\n", " 'depth': 60,\n", " 'bids': {'in': 16169959.070405994, 'out': 14102194.5597749},\n", " 'asks': {'in': 10456536.640431002, 'out': 10381379.3955742}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.892595,\n", " 'depth': 60,\n", " 'bids': {'in': 16251234.533736393, 'out': 14205595.9320998},\n", " 'asks': {'in': 10530199.562026702, 'out': 10439842.031136202}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.892779,\n", " 'depth': 60,\n", " 'bids': {'in': 16334426.262279892, 'out': 14332062.277666701},\n", " 'asks': {'in': 10667655.629809802, 'out': 10647893.922017002}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.892956,\n", " 'depth': 60,\n", " 'bids': {'in': 16390384.605237592, 'out': 15089982.812940702},\n", " 'asks': {'in': 10797275.217332102, 'out': 10777514.612416102}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.8931358,\n", " 'depth': 60,\n", " 'bids': {'in': 16459588.876482092, 'out': 15145941.155898402},\n", " 'asks': {'in': 10832725.124266002, 'out': 10858593.039088402}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.893319,\n", " 'depth': 60,\n", " 'bids': {'in': 16519112.467789892, 'out': 15365498.8815458},\n", " 'asks': {'in': 10879728.490555203, 'out': 11028435.962627502}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.8935099,\n", " 'depth': 60,\n", " 'bids': {'in': 16696032.232311891, 'out': 15416458.700956501},\n", " 'asks': {'in': 11057282.668685103, 'out': 11107499.994713701}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.893696,\n", " 'depth': 60,\n", " 'bids': {'in': 17502752.314820193, 'out': 15584156.2566273},\n", " 'asks': {'in': 11113850.423012303, 'out': 11237733.724810202}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.893877,\n", " 'depth': 60,\n", " 'bids': {'in': 17676377.36262499, 'out': 16439840.720280401},\n", " 'asks': {'in': 11261635.213328203, 'out': 11282829.145788}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.8940601,\n", " 'depth': 60,\n", " 'bids': {'in': 17902322.512358993, 'out': 16844231.892622102},\n", " 'asks': {'in': 11471184.116600104, 'out': 11428286.495976401}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.894239,\n", " 'depth': 60,\n", " 'bids': {'in': 18193211.844453394, 'out': 16930514.393577904},\n", " 'asks': {'in': 11483139.346610904, 'out': 11441297.684636801}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.894433,\n", " 'depth': 60,\n", " 'bids': {'in': 18379981.182488993, 'out': 17356826.8542671},\n", " 'asks': {'in': 11528241.811985703, 'out': 11483586.2931098}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.89463,\n", " 'depth': 60,\n", " 'bids': {'in': 18623353.990317892, 'out': 17678416.1266076},\n", " 'asks': {'in': 11700271.665286902, 'out': 11616022.1319301}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.8948212,\n", " 'depth': 60,\n", " 'bids': {'in': 19040024.124451794, 'out': 17909339.092606902},\n", " 'asks': {'in': 11875490.418848902, 'out': 11833364.977325}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.895009,\n", " 'depth': 60,\n", " 'bids': {'in': 19214666.391357392, 'out': 18345005.7165784},\n", " 'asks': {'in': 11884169.662480103, 'out': 11849597.0100745}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.8952,\n", " 'depth': 60,\n", " 'bids': {'in': 19327187.45537319, 'out': 18536201.351630103},\n", " 'asks': {'in': 11930767.502209203, 'out': 11961230.4429705}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.895403,\n", " 'depth': 60,\n", " 'bids': {'in': 19932365.29459779, 'out': 18666563.751437604},\n", " 'asks': {'in': 12155002.230339704, 'out': 12361436.6618963}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.895621,\n", " 'depth': 60,\n", " 'bids': {'in': 20164604.97960239, 'out': 18888228.111766703},\n", " 'asks': {'in': 12486743.780213105, 'out': 12415060.844482299}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.895807,\n", " 'depth': 60,\n", " 'bids': {'in': 20224240.68925349, 'out': 18947426.0289001},\n", " 'asks': {'in': 12518823.645048605, 'out': 12447142.158755198}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.8959942,\n", " 'depth': 60,\n", " 'bids': {'in': 20437484.67708419, 'out': 19189159.440528303},\n", " 'asks': {'in': 12656377.419458006, 'out': 12659562.187075498}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.896199,\n", " 'depth': 60,\n", " 'bids': {'in': 20529283.329206187, 'out': 19503619.305655405},\n", " 'asks': {'in': 12751629.536741905, 'out': 12830682.250461498}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.89639,\n", " 'depth': 60,\n", " 'bids': {'in': 20838873.68683199, 'out': 19852930.430107605},\n", " 'asks': {'in': 12955992.978561105, 'out': 12868966.424562799}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.896565,\n", " 'depth': 60,\n", " 'bids': {'in': 20930475.341372687, 'out': 19932989.428939804},\n", " 'asks': {'in': 12963764.975968605, 'out': 12971376.172059499}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.896738,\n", " 'depth': 60,\n", " 'bids': {'in': 21011631.35714489, 'out': 20013047.494230904},\n", " 'asks': {'in': 13069397.926625405, 'out': 13024784.809044398}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.89692,\n", " 'depth': 60,\n", " 'bids': {'in': 21109146.60828919, 'out': 20115676.307156503},\n", " 'asks': {'in': 13107385.980329705, 'out': 13260212.672533099}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.8971741,\n", " 'depth': 60,\n", " 'bids': {'in': 21945959.04532379, 'out': 21755239.900237605},\n", " 'asks': {'in': 14845147.620059205, 'out': 13832585.716710199}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.897473,\n", " 'depth': 60,\n", " 'bids': {'in': 22803783.922806688, 'out': 22708719.313828506},\n", " 'asks': {'in': 15376750.647685105, 'out': 14171606.339757299}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.897737,\n", " 'depth': 60,\n", " 'bids': {'in': 22990288.172284987, 'out': 22917406.610597104},\n", " 'asks': {'in': 15464632.166729005, 'out': 14984521.161417}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.897949,\n", " 'depth': 60,\n", " 'bids': {'in': 23131668.87424379, 'out': 23093185.454895303},\n", " 'asks': {'in': 15579015.469873605, 'out': 15718060.2857579}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.898155,\n", " 'depth': 60,\n", " 'bids': {'in': 23257331.102476887, 'out': 23195146.9429682},\n", " 'asks': {'in': 15622870.221141905, 'out': 15762234.271507598}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.8983932,\n", " 'depth': 60,\n", " 'bids': {'in': 23706699.35000859, 'out': 23630703.868205},\n", " 'asks': {'in': 17299605.208035406, 'out': 16471281.344161598}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.898643,\n", " 'depth': 60,\n", " 'bids': {'in': 24043594.93858539, 'out': 24032687.2979787},\n", " 'asks': {'in': 17709425.214144606, 'out': 16711910.265660599}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.8988721,\n", " 'depth': 60,\n", " 'bids': {'in': 24369255.26112989, 'out': 24413731.630257398},\n", " 'asks': {'in': 17996679.885574408, 'out': 17502050.9407169}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.899075,\n", " 'depth': 60,\n", " 'bids': {'in': 24588845.42844219, 'out': 24604539.366586197},\n", " 'asks': {'in': 18684505.096579507, 'out': 17507105.4388829}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.8992598,\n", " 'depth': 60,\n", " 'bids': {'in': 24748945.07372599, 'out': 24771126.5246408},\n", " 'asks': {'in': 18700590.637216207, 'out': 18205866.5094354}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.89945,\n", " 'depth': 60,\n", " 'bids': {'in': 24910349.13833729, 'out': 24956173.064485498},\n", " 'asks': {'in': 19499546.607038505, 'out': 18600278.2758706}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.899688,\n", " 'depth': 60,\n", " 'bids': {'in': 25405905.481564492, 'out': 25414318.382324897},\n", " 'asks': {'in': 19868698.716913003, 'out': 18765239.8438874}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.899921,\n", " 'depth': 60,\n", " 'bids': {'in': 25636472.58837039, 'out': 25740091.156267997},\n", " 'asks': {'in': 20073434.955594603, 'out': 19522561.5055333}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.9001238,\n", " 'depth': 60,\n", " 'bids': {'in': 25850549.11795709, 'out': 25857936.099757396},\n", " 'asks': {'in': 20124941.008653603, 'out': 19603434.8196178}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.90033,\n", " 'depth': 60,\n", " 'bids': {'in': 25903426.59130079, 'out': 26026515.171201594},\n", " 'asks': {'in': 20259119.908316802, 'out': 19742524.7117773}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.900525,\n", " 'depth': 60,\n", " 'bids': {'in': 26029808.18633609, 'out': 26088496.462371293},\n", " 'asks': {'in': 20298335.940323103, 'out': 19833799.4931483}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.900713,\n", " 'depth': 60,\n", " 'bids': {'in': 26136228.99462329, 'out': 26172544.169458292},\n", " 'asks': {'in': 20340268.4481641, 'out': 19844285.546443302}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.900893,\n", " 'depth': 60,\n", " 'bids': {'in': 26165221.22202559, 'out': 26223671.425731592},\n", " 'asks': {'in': 20348485.4666633, 'out': 19852530.649275}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.901076,\n", " 'depth': 60,\n", " 'bids': {'in': 26228040.057059687, 'out': 26277728.275347393},\n", " 'asks': {'in': 20370351.5663075, 'out': 19874854.2928984}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.901271,\n", " 'depth': 60,\n", " 'bids': {'in': 26319785.008480888, 'out': 26463207.524128795},\n", " 'asks': {'in': 20572599.8888317, 'out': 20060679.470454503}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.90147,\n", " 'depth': 60,\n", " 'bids': {'in': 26401112.08940049, 'out': 26631740.230934594},\n", " 'asks': {'in': 20760891.4547423, 'out': 20127459.376627404}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.901663,\n", " 'depth': 60,\n", " 'bids': {'in': 26596174.668119688, 'out': 26671126.128481794},\n", " 'asks': {'in': 20769608.49523, 'out': 20140401.694358405}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.9019399,\n", " 'depth': 60,\n", " 'bids': {'in': 29302769.159207687, 'out': 27762998.440951295},\n", " 'asks': {'in': 21410862.846829, 'out': 20766973.036127206}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.902246,\n", " 'depth': 60,\n", " 'bids': {'in': 29871933.578049287, 'out': 28059530.546687495},\n", " 'asks': {'in': 21872741.8592509, 'out': 21843088.809939206}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.902514,\n", " 'depth': 60,\n", " 'bids': {'in': 30105659.22549819, 'out': 29137096.532054994},\n", " 'asks': {'in': 22179801.5944793, 'out': 22114550.341653004}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.902739,\n", " 'depth': 60,\n", " 'bids': {'in': 30245837.43317689, 'out': 29530921.049446393},\n", " 'asks': {'in': 22374697.1448365, 'out': 22234615.586582504}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.902942,\n", " 'depth': 60,\n", " 'bids': {'in': 30608197.64275349, 'out': 29745052.351109993},\n", " 'asks': {'in': 22555019.535009, 'out': 22436683.487403706}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.90313,\n", " 'depth': 60,\n", " 'bids': {'in': 30849406.38759029, 'out': 29803404.555298094},\n", " 'asks': {'in': 22634898.960042, 'out': 22457662.578759506}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.903311,\n", " 'depth': 60,\n", " 'bids': {'in': 30888251.92051069, 'out': 29856816.554077394},\n", " 'asks': {'in': 22646735.1222828, 'out': 22463002.843256306}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.9034932,\n", " 'depth': 60,\n", " 'bids': {'in': 30965913.43258469, 'out': 30103995.041631095},\n", " 'asks': {'in': 22670037.9792399, 'out': 22476101.063258506}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.903671,\n", " 'depth': 60,\n", " 'bids': {'in': 31028641.007950693, 'out': 30166724.172002696},\n", " 'asks': {'in': 22678139.1780178, 'out': 22484202.208489906}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.903852,\n", " 'depth': 60,\n", " 'bids': {'in': 31060870.63939059, 'out': 30203112.443131495},\n", " 'asks': {'in': 22721750.9889729, 'out': 22523040.150342207}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.9040298,\n", " 'depth': 60,\n", " 'bids': {'in': 31159697.30256709, 'out': 30300248.675425094},\n", " 'asks': {'in': 22721750.9889729, 'out': 22523040.150342207}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.904209,\n", " 'depth': 60,\n", " 'bids': {'in': 31475886.62304589, 'out': 30377072.790624294},\n", " 'asks': {'in': 22733183.8380926, 'out': 22532223.774205107}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.904407,\n", " 'depth': 60,\n", " 'bids': {'in': 31800829.875144593, 'out': 30700827.760386996},\n", " 'asks': {'in': 22829343.189913798, 'out': 22705446.827447306}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.904628,\n", " 'depth': 60,\n", " 'bids': {'in': 32274991.258072093, 'out': 30998428.700348496},\n", " 'asks': {'in': 23324481.972822797, 'out': 23283469.478252206}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.9048488,\n", " 'depth': 60,\n", " 'bids': {'in': 32368188.987866692, 'out': 31186294.216245197},\n", " 'asks': {'in': 23496276.294366196, 'out': 23450495.112982806}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.905071,\n", " 'depth': 60,\n", " 'bids': {'in': 33267753.25922289, 'out': 31407702.8057987},\n", " 'asks': {'in': 23915470.566395298, 'out': 23750160.184809204}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.905283,\n", " 'depth': 60,\n", " 'bids': {'in': 33366790.42436759, 'out': 32281647.8790363},\n", " 'asks': {'in': 24048103.972011596, 'out': 23893738.186750304}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.905557,\n", " 'depth': 60,\n", " 'bids': {'in': 34887412.56882499, 'out': 33326384.8392145},\n", " 'asks': {'in': 24757497.949452296, 'out': 24762367.946412902}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.905867,\n", " 'depth': 60,\n", " 'bids': {'in': 35257386.086545795, 'out': 33712966.9401753},\n", " 'asks': {'in': 24963663.066459496, 'out': 24984854.118927002}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.906108,\n", " 'depth': 60,\n", " 'bids': {'in': 35587538.2423948, 'out': 34100552.3658029},\n", " 'asks': {'in': 25261847.310392596, 'out': 25306595.1722938}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.906313,\n", " 'depth': 60,\n", " 'bids': {'in': 35852405.5951432, 'out': 34277422.3159388},\n", " 'asks': {'in': 25378608.611084696, 'out': 25322687.4346878}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.906501,\n", " 'depth': 60,\n", " 'bids': {'in': 36027591.221444696, 'out': 34480767.1778993},\n", " 'asks': {'in': 25383571.726318896, 'out': 25426267.7837724}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.906694,\n", " 'depth': 60,\n", " 'bids': {'in': 36152801.70374899, 'out': 34567591.5656995},\n", " 'asks': {'in': 25501455.187706497, 'out': 25446696.723093603}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.906889,\n", " 'depth': 60,\n", " 'bids': {'in': 36241435.2593703, 'out': 34761969.7123664},\n", " 'asks': {'in': 25527812.351611696, 'out': 25462219.607190404}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.907077,\n", " 'depth': 60,\n", " 'bids': {'in': 36381078.0879633, 'out': 34851690.6387746},\n", " 'asks': {'in': 25560756.740066797, 'out': 25499634.615199603}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.907271,\n", " 'depth': 60,\n", " 'bids': {'in': 36545190.486668296, 'out': 34931888.9920936},\n", " 'asks': {'in': 25602631.455297995, 'out': 25589744.384031203}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.907501,\n", " 'depth': 60,\n", " 'bids': {'in': 36947712.3187726, 'out': 35532342.777148},\n", " 'asks': {'in': 25712952.066192795, 'out': 25730259.874378704}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.907744,\n", " 'depth': 60,\n", " 'bids': {'in': 37436518.4783177, 'out': 36043656.345963},\n", " 'asks': {'in': 25840511.036882393, 'out': 25879806.0508867}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.9079628,\n", " 'depth': 60,\n", " 'bids': {'in': 37663427.817441, 'out': 36907751.8096727},\n", " 'asks': {'in': 25875445.27631799, 'out': 25947698.3650325}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.9081652,\n", " 'depth': 60,\n", " 'bids': {'in': 37835148.4209102, 'out': 37168929.1197064},\n", " 'asks': {'in': 25997844.564947993, 'out': 25959215.263290703}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.908374,\n", " 'depth': 60,\n", " 'bids': {'in': 38259040.7388222, 'out': 37391569.3198322},\n", " 'asks': {'in': 26066324.240263894, 'out': 26011996.435798902}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.908583,\n", " 'depth': 60,\n", " 'bids': {'in': 38436851.3655874, 'out': 37755822.8324678},\n", " 'asks': {'in': 26209006.330301195, 'out': 26154426.228525702}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.908799,\n", " 'depth': 60,\n", " 'bids': {'in': 38567305.0511844, 'out': 37861152.164398104},\n", " 'asks': {'in': 26369711.670736797, 'out': 26670496.970972802}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.909051,\n", " 'depth': 60,\n", " 'bids': {'in': 39078771.0333934, 'out': 38271471.1115251},\n", " 'asks': {'in': 26522610.5804149, 'out': 26760225.2110758}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.909297,\n", " 'depth': 60,\n", " 'bids': {'in': 39468562.9951661, 'out': 38617708.644975506},\n", " 'asks': {'in': 26857525.4348114, 'out': 26906390.7044464}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.909529,\n", " 'depth': 60,\n", " 'bids': {'in': 39763230.9925834, 'out': 38826206.38775591},\n", " 'asks': {'in': 27735541.218550697, 'out': 27318811.480804503}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.909798,\n", " 'depth': 60,\n", " 'bids': {'in': 40320145.9768553, 'out': 39541795.10841181},\n", " 'asks': {'in': 28344076.338105597, 'out': 27743944.501164004}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.910057,\n", " 'depth': 60,\n", " 'bids': {'in': 40490904.6988585, 'out': 39738934.55790281},\n", " 'asks': {'in': 28555248.719989397, 'out': 27821550.650122404}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.910285,\n", " 'depth': 60,\n", " 'bids': {'in': 40664905.2912342, 'out': 40563905.78472311},\n", " 'asks': {'in': 28708590.738298696, 'out': 28060510.500426404}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.910516,\n", " 'depth': 60,\n", " 'bids': {'in': 41723260.8888603, 'out': 40648905.55234841},\n", " 'asks': {'in': 29123290.012698796, 'out': 28133962.102097005}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.910746,\n", " 'depth': 60,\n", " 'bids': {'in': 42002758.0793745, 'out': 41539578.872270815},\n", " 'asks': {'in': 29350819.536285397, 'out': 28480053.312439505}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.9109702,\n", " 'depth': 60,\n", " 'bids': {'in': 42820383.3528426, 'out': 41652577.100557014},\n", " 'asks': {'in': 29384785.295877498, 'out': 28505712.153148904}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.911187,\n", " 'depth': 60,\n", " 'bids': {'in': 42951535.4338682, 'out': 41807755.428563714},\n", " 'asks': {'in': 29487925.729006097, 'out': 28554829.392836604}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.911425,\n", " 'depth': 60,\n", " 'bids': {'in': 43237090.6571845, 'out': 42839530.067833915},\n", " 'asks': {'in': 30617387.275482196, 'out': 29324355.556129005}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.911718,\n", " 'depth': 60,\n", " 'bids': {'in': 44160296.7081605, 'out': 43889786.406760514},\n", " 'asks': {'in': 31247947.523779795, 'out': 29956944.329132706}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.911992,\n", " 'depth': 60,\n", " 'bids': {'in': 44860950.5754847, 'out': 44552546.561959416},\n", " 'asks': {'in': 31668470.083658393, 'out': 30949333.424836107}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.912222,\n", " 'depth': 60,\n", " 'bids': {'in': 45264799.6781425, 'out': 44983272.67200381},\n", " 'asks': {'in': 31710939.717263892, 'out': 30992506.218001507}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.91244,\n", " 'depth': 60,\n", " 'bids': {'in': 45366421.452473104, 'out': 45096369.128534116},\n", " 'asks': {'in': 31880054.20873719, 'out': 31818137.124369007}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.912652,\n", " 'depth': 60,\n", " 'bids': {'in': 45416338.0433766, 'out': 45175603.12579842},\n", " 'asks': {'in': 32936449.945926093, 'out': 32174361.195071008}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.912868,\n", " 'depth': 60,\n", " 'bids': {'in': 45502733.0609429, 'out': 45278756.09659682},\n", " 'asks': {'in': 33265255.628998294, 'out': 33258542.65240191}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.913079,\n", " 'depth': 60,\n", " 'bids': {'in': 45679932.9235009, 'out': 45432590.755665325},\n", " 'asks': {'in': 33698890.332417294, 'out': 33719231.96224391}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.913281,\n", " 'depth': 60,\n", " 'bids': {'in': 45766282.8300379, 'out': 45526285.837310925},\n", " 'asks': {'in': 33958392.2157888, 'out': 33943862.67933541}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.913495,\n", " 'depth': 60,\n", " 'bids': {'in': 46066091.8520332, 'out': 45816566.770347424},\n", " 'asks': {'in': 34724257.569039695, 'out': 34039848.81480901}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.913713,\n", " 'depth': 60,\n", " 'bids': {'in': 46175118.5527599, 'out': 45930282.451809525},\n", " 'asks': {'in': 35001179.692428194, 'out': 34935474.05389931}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.913924,\n", " 'depth': 60,\n", " 'bids': {'in': 46479076.7566908, 'out': 46196855.76868953},\n", " 'asks': {'in': 35058620.62795629, 'out': 35021390.08970351}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.9141219,\n", " 'depth': 60,\n", " 'bids': {'in': 46656283.6598072, 'out': 46255459.82156803},\n", " 'asks': {'in': 35159416.008491494, 'out': 35118964.76203181}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.9143429,\n", " 'depth': 60,\n", " 'bids': {'in': 47249373.015818395, 'out': 46954876.381114125},\n", " 'asks': {'in': 35333076.27890639, 'out': 35247313.45388551}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.9146361,\n", " 'depth': 60,\n", " 'bids': {'in': 49886064.299849294, 'out': 48170238.870563224},\n", " 'asks': {'in': 36324218.63810749, 'out': 35995945.21101541}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.914918,\n", " 'depth': 60,\n", " 'bids': {'in': 50306927.78968649, 'out': 49315518.82542223},\n", " 'asks': {'in': 36529324.8415264, 'out': 36234470.26014471}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.915187,\n", " 'depth': 60,\n", " 'bids': {'in': 51628841.029289395, 'out': 49902865.307704926},\n", " 'asks': {'in': 37109053.050001994, 'out': 37017896.21508781}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.9154508,\n", " 'depth': 60,\n", " 'bids': {'in': 52265233.5857178, 'out': 50327935.87219483},\n", " 'asks': {'in': 37664110.906812094, 'out': 37334500.29545491}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.915692,\n", " 'depth': 60,\n", " 'bids': {'in': 52384064.720571, 'out': 50741513.38732943},\n", " 'asks': {'in': 38062650.1950167, 'out': 37880956.20167951}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.915935,\n", " 'depth': 60,\n", " 'bids': {'in': 52705394.0402219, 'out': 50825844.92092783},\n", " 'asks': {'in': 38458852.629649594, 'out': 38370119.137058616}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.916183,\n", " 'depth': 60,\n", " 'bids': {'in': 53185451.1727498, 'out': 52168800.60760723},\n", " 'asks': {'in': 38655419.39423429, 'out': 38589293.01442421}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.9164212,\n", " 'depth': 60,\n", " 'bids': {'in': 53383110.6846949, 'out': 53054394.87108763},\n", " 'asks': {'in': 38964459.31504509, 'out': 39033011.184940614}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.9166641,\n", " 'depth': 60,\n", " 'bids': {'in': 54778785.079908304, 'out': 53610185.188619934},\n", " 'asks': {'in': 39335014.501907386, 'out': 39258983.124757014}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.916895,\n", " 'depth': 60,\n", " 'bids': {'in': 54971567.94375361, 'out': 53825020.37680353},\n", " 'asks': {'in': 39573545.707295485, 'out': 39328909.04730471}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.91711,\n", " 'depth': 60,\n", " 'bids': {'in': 55224688.106708005, 'out': 54087134.50854803},\n", " 'asks': {'in': 39619917.61896729, 'out': 39369181.72720301}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.9173172,\n", " 'depth': 60,\n", " 'bids': {'in': 55472908.4060882, 'out': 54335908.00280443},\n", " 'asks': {'in': 39837649.21822799, 'out': 39634309.05261251}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.917537,\n", " 'depth': 60,\n", " 'bids': {'in': 55780617.290912606, 'out': 54640962.37678553},\n", " 'asks': {'in': 40271010.27245359, 'out': 39882479.05747851}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.917753,\n", " 'depth': 60,\n", " 'bids': {'in': 56223718.6991927, 'out': 54830577.45117483},\n", " 'asks': {'in': 40406539.43775019, 'out': 40013427.85801821}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.917973,\n", " 'depth': 60,\n", " 'bids': {'in': 56627358.265222505, 'out': 55477450.211220734},\n", " 'asks': {'in': 40654209.33883809, 'out': 40287785.387901515}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.918185,\n", " 'depth': 60,\n", " 'bids': {'in': 56785485.27384201, 'out': 55637975.283185534},\n", " 'asks': {'in': 40887594.463104196, 'out': 40505665.29668382}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.91839,\n", " 'depth': 60,\n", " 'bids': {'in': 56953868.04338421, 'out': 55831831.68583433},\n", " 'asks': {'in': 40931588.086716294, 'out': 40558715.28277772}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.918596,\n", " 'depth': 60,\n", " 'bids': {'in': 57123251.43784221, 'out': 55985901.697950736},\n", " 'asks': {'in': 41242153.48013079, 'out': 40856245.586430416}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.918804,\n", " 'depth': 60,\n", " 'bids': {'in': 57193121.59597501, 'out': 56078195.731436834},\n", " 'asks': {'in': 41461865.67391099, 'out': 41210315.986736014}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.919022,\n", " 'depth': 60,\n", " 'bids': {'in': 57476978.55017971, 'out': 56266861.82859854},\n", " 'asks': {'in': 41736472.87201299, 'out': 41395262.616361916}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.91923,\n", " 'depth': 60,\n", " 'bids': {'in': 57563490.01491141, 'out': 56346885.66032754},\n", " 'asks': {'in': 41981805.927728385, 'out': 41646569.40939432}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.919441,\n", " 'depth': 60,\n", " 'bids': {'in': 57721657.96854962, 'out': 56449681.35879094},\n", " 'asks': {'in': 42035855.71365538, 'out': 41882644.63675342}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.919651,\n", " 'depth': 60,\n", " 'bids': {'in': 57977504.60929192, 'out': 56705859.596274644},\n", " 'asks': {'in': 42181060.314658485, 'out': 42022201.83770402}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.919861,\n", " 'depth': 60,\n", " 'bids': {'in': 58355961.20893162, 'out': 57257211.452032946},\n", " 'asks': {'in': 42383452.894629486, 'out': 42491070.839132816}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.920067,\n", " 'depth': 60,\n", " 'bids': {'in': 58711369.439527415, 'out': 57474848.48143255},\n", " 'asks': {'in': 42660272.15192269, 'out': 42669463.00535042}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.920298,\n", " 'depth': 60,\n", " 'bids': {'in': 58834592.98200821, 'out': 57588179.63870675},\n", " 'asks': {'in': 42879271.36913539, 'out': 42833974.76910732}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.920525,\n", " 'depth': 60,\n", " 'bids': {'in': 58882433.20339041, 'out': 57733820.08420225},\n", " 'asks': {'in': 43175342.98518689, 'out': 43055213.43603562}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.920738,\n", " 'depth': 60,\n", " 'bids': {'in': 59062306.49926791, 'out': 57816374.698146455},\n", " 'asks': {'in': 43408665.76259339, 'out': 43327697.46387792}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.9209511,\n", " 'depth': 60,\n", " 'bids': {'in': 59160843.07582671, 'out': 57913277.27224095},\n", " 'asks': {'in': 43609744.388992585, 'out': 43439581.809288815}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.92116,\n", " 'depth': 60,\n", " 'bids': {'in': 59456861.866105415, 'out': 58188773.24696545},\n", " 'asks': {'in': 43631176.34997059, 'out': 43445037.554870114}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.921366,\n", " 'depth': 60,\n", " 'bids': {'in': 59762006.776271515, 'out': 58478282.27066305},\n", " 'asks': {'in': 43831252.17716299, 'out': 43738100.09086902}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.921571,\n", " 'depth': 60,\n", " 'bids': {'in': 59842046.048918314, 'out': 58574280.801479556},\n", " 'asks': {'in': 43984794.73624019, 'out': 43840509.00880182}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.921783,\n", " 'depth': 60,\n", " 'bids': {'in': 59938068.013167016, 'out': 58654320.074126355},\n", " 'asks': {'in': 44013758.53856989, 'out': 44010488.21008642}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.921986,\n", " 'depth': 60,\n", " 'bids': {'in': 59984370.14281942, 'out': 58700622.513371654},\n", " 'asks': {'in': 44155620.19159869, 'out': 44054944.32661412}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.9222221,\n", " 'depth': 60,\n", " 'bids': {'in': 60388021.29517772, 'out': 59218026.28587975},\n", " 'asks': {'in': 44484684.23569629, 'out': 44536769.79972722}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.922474,\n", " 'depth': 60,\n", " 'bids': {'in': 60633959.14249672, 'out': 59341367.387249455},\n", " 'asks': {'in': 44694206.6568016, 'out': 44777832.28154121}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.922716,\n", " 'depth': 60,\n", " 'bids': {'in': 60961607.85792312, 'out': 59572008.86959346},\n", " 'asks': {'in': 44972266.8454088, 'out': 44977733.48171211}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.922963,\n", " 'depth': 60,\n", " 'bids': {'in': 61376522.07581722, 'out': 60038578.96627146},\n", " 'asks': {'in': 45046276.4788809, 'out': 45124858.24359511}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.923248,\n", " 'depth': 60,\n", " 'bids': {'in': 62054204.07777072, 'out': 61808689.25670506},\n", " 'asks': {'in': 47213069.82931019, 'out': 45959766.45786141}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.923577,\n", " 'depth': 60,\n", " 'bids': {'in': 63074329.37443842, 'out': 62593942.45494346},\n", " 'asks': {'in': 48073294.34626199, 'out': 46703967.65070451}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.9238698,\n", " 'depth': 60,\n", " 'bids': {'in': 63473918.00257092, 'out': 63090493.43754546},\n", " 'asks': {'in': 48441369.86304789, 'out': 47768710.50277061}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.924117,\n", " 'depth': 60,\n", " 'bids': {'in': 63700216.71657102, 'out': 63320905.67755726},\n", " 'asks': {'in': 48599281.04882919, 'out': 47850403.79501791}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.9243379,\n", " 'depth': 60,\n", " 'bids': {'in': 63784313.37224752, 'out': 63465895.797647856},\n", " 'asks': {'in': 48608200.30496719, 'out': 47858555.61811401}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.924564,\n", " 'depth': 60,\n", " 'bids': {'in': 64047222.692130215, 'out': 63690894.13747076},\n", " 'asks': {'in': 48823068.46487579, 'out': 48181082.51273401}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.924808,\n", " 'depth': 60,\n", " 'bids': {'in': 64561853.428117916, 'out': 64112721.504367456},\n", " 'asks': {'in': 49819724.69999069, 'out': 48680525.69356851}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.92505,\n", " 'depth': 60,\n", " 'bids': {'in': 64730237.09301682, 'out': 64297729.34357726},\n", " 'asks': {'in': 50175891.86685999, 'out': 48730757.26731631}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.9252732,\n", " 'depth': 60,\n", " 'bids': {'in': 65036442.378060915, 'out': 64592014.95790846},\n", " 'asks': {'in': 50221409.38541759, 'out': 49641974.213404715}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.925494,\n", " 'depth': 60,\n", " 'bids': {'in': 65113498.36049371, 'out': 64669078.52256726},\n", " 'asks': {'in': 50396578.40530489, 'out': 49757105.18835241}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.92572,\n", " 'depth': 60,\n", " 'bids': {'in': 65511743.93672841, 'out': 65074686.99003506},\n", " 'asks': {'in': 50540017.27283689, 'out': 49979914.375643015}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.925962,\n", " 'depth': 60,\n", " 'bids': {'in': 65675549.89712551, 'out': 65177296.53576976},\n", " 'asks': {'in': 51528203.764096886, 'out': 50326094.38326971}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.926249,\n", " 'depth': 60,\n", " 'bids': {'in': 66144673.95095171, 'out': 65657187.35040726},\n", " 'asks': {'in': 52209369.98882639, 'out': 50815255.857442714}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.926504,\n", " 'depth': 60,\n", " 'bids': {'in': 66440279.32388261, 'out': 65912253.640748456},\n", " 'asks': {'in': 52255412.25388509, 'out': 50843111.48171921}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.9267259,\n", " 'depth': 60,\n", " 'bids': {'in': 66577509.23010461, 'out': 66039322.041734256},\n", " 'asks': {'in': 52298117.04989059, 'out': 50923975.86501151}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.926949,\n", " 'depth': 60,\n", " 'bids': {'in': 66923913.60556231, 'out': 66464488.67230236},\n", " 'asks': {'in': 52429897.97200659, 'out': 51081441.15728322}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.9271739,\n", " 'depth': 60,\n", " 'bids': {'in': 67186046.2680965, 'out': 66755943.22559326},\n", " 'asks': {'in': 52605431.193295985, 'out': 51167766.78341982}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.927404,\n", " 'depth': 60,\n", " 'bids': {'in': 67420142.6682491, 'out': 66938821.16177406},\n", " 'asks': {'in': 52661550.74354759, 'out': 51309090.361335814}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.927629,\n", " 'depth': 60,\n", " 'bids': {'in': 67600216.540858, 'out': 67193938.75218026},\n", " 'asks': {'in': 52706251.84013749, 'out': 51350207.489777215}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.92785,\n", " 'depth': 60,\n", " 'bids': {'in': 67744375.1477497, 'out': 67285797.75328086},\n", " 'asks': {'in': 52847557.62343069, 'out': 51397465.37569462}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.9280682,\n", " 'depth': 60,\n", " 'bids': {'in': 67817510.93072791, 'out': 67344537.40621276},\n", " 'asks': {'in': 52859558.27085969, 'out': 51402809.27861692}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.9282749,\n", " 'depth': 60,\n", " 'bids': {'in': 67910224.77691191, 'out': 67391671.88161106},\n", " 'asks': {'in': 52985990.06997909, 'out': 51529498.36913242}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.928492,\n", " 'depth': 60,\n", " 'bids': {'in': 67988880.03535742, 'out': 67479208.48968077},\n", " 'asks': {'in': 53030933.709392585, 'out': 51606061.644990325}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.928722,\n", " 'depth': 60,\n", " 'bids': {'in': 68149475.43810591, 'out': 67638337.81457646},\n", " 'asks': {'in': 53197722.59642269, 'out': 51768638.710813925}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.928944,\n", " 'depth': 60,\n", " 'bids': {'in': 68198550.7378914, 'out': 67739714.35599066},\n", " 'asks': {'in': 53227355.79648409, 'out': 51938908.965417325}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.929155,\n", " 'depth': 60,\n", " 'bids': {'in': 68552963.34234771, 'out': 68044126.90318666},\n", " 'asks': {'in': 53374322.59724829, 'out': 51943957.58610663}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.929365,\n", " 'depth': 60,\n", " 'bids': {'in': 68680875.86182581, 'out': 68092108.09488997},\n", " 'asks': {'in': 53377661.28256969, 'out': 51947205.629106626}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.929575,\n", " 'depth': 60,\n", " 'bids': {'in': 68735259.94702281, 'out': 68139758.13552867},\n", " 'asks': {'in': 53402598.09660299, 'out': 52102062.50942723}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.929794,\n", " 'depth': 60,\n", " 'bids': {'in': 68767748.73106681, 'out': 68173870.45523916},\n", " 'asks': {'in': 53604510.47168029, 'out': 52157423.58829643}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.930015,\n", " 'depth': 60,\n", " 'bids': {'in': 68849394.0248779, 'out': 68254529.28380086},\n", " 'asks': {'in': 53655328.73023389, 'out': 52314161.76753623}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.9302359,\n", " 'depth': 60,\n", " 'bids': {'in': 68920562.60413, 'out': 68360178.79914266},\n", " 'asks': {'in': 53788842.59013169, 'out': 52473270.56173823}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.930449,\n", " 'depth': 60,\n", " 'bids': {'in': 69022757.3660273, 'out': 68605407.38667886},\n", " 'asks': {'in': 53958318.54423169, 'out': 52517699.25704333}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.9306712,\n", " 'depth': 60,\n", " 'bids': {'in': 69237732.8411741, 'out': 68743823.11473896},\n", " 'asks': {'in': 54007067.923060894, 'out': 52560467.91998433}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.93089,\n", " 'depth': 60,\n", " 'bids': {'in': 69327036.23429699, 'out': 68921661.28123495},\n", " 'asks': {'in': 54056016.799504094, 'out': 52594419.40201453}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.931107,\n", " 'depth': 60,\n", " 'bids': {'in': 69715016.3464603, 'out': 69220030.34879185},\n", " 'asks': {'in': 54088814.38292609, 'out': 52644552.65137493}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.931317,\n", " 'depth': 60,\n", " 'bids': {'in': 69777744.2325805, 'out': 69283088.28829525},\n", " 'asks': {'in': 54318557.49446929, 'out': 52847500.501498826}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.931524,\n", " 'depth': 60,\n", " 'bids': {'in': 69857766.8641045, 'out': 69363110.85011886},\n", " 'asks': {'in': 54351354.99287409, 'out': 52885507.32515123}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.931734,\n", " 'depth': 60,\n", " 'bids': {'in': 69956398.26942809, 'out': 69426444.99056336},\n", " 'asks': {'in': 54567156.879525796, 'out': 53088460.760286324}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.93194,\n", " 'depth': 60,\n", " 'bids': {'in': 70033045.08491609, 'out': 69501469.60013676},\n", " 'asks': {'in': 54594663.4547428, 'out': 53122576.58533772}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.932142,\n", " 'depth': 60,\n", " 'bids': {'in': 70108069.72976899, 'out': 69576494.20762476},\n", " 'asks': {'in': 54618666.477003396, 'out': 53146579.62976892}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.932346,\n", " 'depth': 60,\n", " 'bids': {'in': 70170797.95192069, 'out': 69640844.52899466},\n", " 'asks': {'in': 54647625.2544406, 'out': 53183120.389455125}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.9325519,\n", " 'depth': 60,\n", " 'bids': {'in': 70250820.78553109, 'out': 69720867.44766386},\n", " 'asks': {'in': 54680422.7396594, 'out': 53215917.787360124}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.932758,\n", " 'depth': 60,\n", " 'bids': {'in': 70412246.0757341, 'out': 69785086.25048035},\n", " 'asks': {'in': 54726255.5530188, 'out': 53243333.59525873}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.932962,\n", " 'depth': 60,\n", " 'bids': {'in': 70475304.5323219, 'out': 69897569.58709125},\n", " 'asks': {'in': 54750367.0343324, 'out': 53267336.63968993}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.933176,\n", " 'depth': 60,\n", " 'bids': {'in': 70567818.001835, 'out': 70005936.35196675},\n", " 'asks': {'in': 54793615.373317204, 'out': 53314841.75632183}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.933397,\n", " 'depth': 60,\n", " 'bids': {'in': 70630546.059714, 'out': 70068664.97397405},\n", " 'asks': {'in': 54839701.944449306, 'out': 53412572.88067583}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.933623,\n", " 'depth': 60,\n", " 'bids': {'in': 70734026.1081874, 'out': 70283000.54722925},\n", " 'asks': {'in': 55012125.73422491, 'out': 54271812.74910603}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.9338539,\n", " 'depth': 60,\n", " 'bids': {'in': 71237076.308072, 'out': 70643859.60109614},\n", " 'asks': {'in': 55021484.47775531, 'out': 54335346.577962026}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.934156,\n", " 'depth': 60,\n", " 'bids': {'in': 71791194.52986, 'out': 71190884.97670273},\n", " 'asks': {'in': 56524948.89491511, 'out': 55367645.54052942}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.934516,\n", " 'depth': 60,\n", " 'bids': {'in': 72720051.5468916, 'out': 72606350.49065123},\n", " 'asks': {'in': 57311076.00771821, 'out': 56010571.063619025}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.934828,\n", " 'depth': 60,\n", " 'bids': {'in': 72954289.1399334, 'out': 72855571.02628033},\n", " 'asks': {'in': 57874170.06561241, 'out': 56329101.454554126}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.935086,\n", " 'depth': 60,\n", " 'bids': {'in': 73413147.1773397, 'out': 73107974.71379143},\n", " 'asks': {'in': 58094318.66947001, 'out': 56962596.66871583}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.93534,\n", " 'depth': 60,\n", " 'bids': {'in': 73851851.3248724, 'out': 73488607.05617332},\n", " 'asks': {'in': 58394146.11231651, 'out': 57066862.887856424}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.935589,\n", " 'depth': 60,\n", " 'bids': {'in': 74066658.9170663, 'out': 73756349.96178882},\n", " 'asks': {'in': 58535755.13797861, 'out': 57194735.24178192}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.9358249,\n", " 'depth': 60,\n", " 'bids': {'in': 74176624.4756477, 'out': 73807355.20900892},\n", " 'asks': {'in': 58608820.973609515, 'out': 57325081.86881372}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.936051,\n", " 'depth': 60,\n", " 'bids': {'in': 74225922.4144025, 'out': 73915577.44215491},\n", " 'asks': {'in': 58739160.61284121, 'out': 57358437.25694552}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.936272,\n", " 'depth': 60,\n", " 'bids': {'in': 74360261.1029319, 'out': 73997135.22205201},\n", " 'asks': {'in': 58772062.780321315, 'out': 57477955.43369262}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.936497,\n", " 'depth': 60,\n", " 'bids': {'in': 74545025.8026153, 'out': 74133293.4187368},\n", " 'asks': {'in': 58864485.94224791, 'out': 57622641.63485712}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.936723,\n", " 'depth': 60,\n", " 'bids': {'in': 74625083.7450697, 'out': 74213696.4126851},\n", " 'asks': {'in': 58966749.457493015, 'out': 57670043.32849592}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.936963,\n", " 'depth': 60,\n", " 'bids': {'in': 75177443.96001449, 'out': 74610810.5264159},\n", " 'asks': {'in': 59144500.79957371, 'out': 57795977.32710332}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.937212,\n", " 'depth': 60,\n", " 'bids': {'in': 75365867.9245113, 'out': 74740205.4998683},\n", " 'asks': {'in': 59227449.03024671, 'out': 57974799.487718016}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.9374459,\n", " 'depth': 60,\n", " 'bids': {'in': 75541659.2091742, 'out': 74884591.15855381},\n", " 'asks': {'in': 59664884.41781871, 'out': 58191540.49701791}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.9376829,\n", " 'depth': 60,\n", " 'bids': {'in': 75797245.2344865, 'out': 75130149.29653391},\n", " 'asks': {'in': 59711916.04096531, 'out': 58228851.14928101}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.937919,\n", " 'depth': 60,\n", " 'bids': {'in': 75987138.02570051, 'out': 75296149.06971972},\n", " 'asks': {'in': 59744885.68212711, 'out': 58361470.62155141}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.9381518,\n", " 'depth': 60,\n", " 'bids': {'in': 76072591.06288831, 'out': 75487687.85958952},\n", " 'asks': {'in': 59852372.07186761, 'out': 58376797.26231961}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.938373,\n", " 'depth': 60,\n", " 'bids': {'in': 76250037.3548606, 'out': 75590885.00196892},\n", " 'asks': {'in': 59857334.616630405, 'out': 58479240.08946661}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.938596,\n", " 'depth': 60,\n", " 'bids': {'in': 76306389.3408197, 'out': 75648456.46792242},\n", " 'asks': {'in': 59964443.5569749, 'out': 58505545.29442741}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.938924,\n", " 'depth': 60,\n", " 'bids': {'in': 77523429.0235136, 'out': 77037449.33433191},\n", " 'asks': {'in': 61056777.282993004, 'out': 61214790.56893261}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.9393191,\n", " 'depth': 60,\n", " 'bids': {'in': 77902181.7921097, 'out': 77631706.25801042},\n", " 'asks': {'in': 61796795.3482834, 'out': 61767337.89822951}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.93962,\n", " 'depth': 60,\n", " 'bids': {'in': 78330694.225375, 'out': 78040917.49209751},\n", " 'asks': {'in': 62046651.2978496, 'out': 61916385.83081991}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.93988,\n", " 'depth': 60,\n", " 'bids': {'in': 78908872.52466239, 'out': 78287989.17800441},\n", " 'asks': {'in': 62149821.136774406, 'out': 62017312.50521811}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.940129,\n", " 'depth': 60,\n", " 'bids': {'in': 79032270.5037752, 'out': 78407139.89143002},\n", " 'asks': {'in': 62353557.4368913, 'out': 62230897.24699751}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.940365,\n", " 'depth': 60,\n", " 'bids': {'in': 79159852.8938448, 'out': 78531570.93364282},\n", " 'asks': {'in': 62391346.751809604, 'out': 62312038.68202911}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.940591,\n", " 'depth': 60,\n", " 'bids': {'in': 79201849.6221561, 'out': 78584535.14161041},\n", " 'asks': {'in': 62429050.0117427, 'out': 62344579.98009241}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.940816,\n", " 'depth': 60,\n", " 'bids': {'in': 79249146.6092428, 'out': 78614173.38448942},\n", " 'asks': {'in': 62632351.110263206, 'out': 62547855.28087001}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.941041,\n", " 'depth': 60,\n", " 'bids': {'in': 79295794.08761139, 'out': 78660820.95039512},\n", " 'asks': {'in': 62687792.466754004, 'out': 62588482.59983081}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.94128,\n", " 'depth': 60,\n", " 'bids': {'in': 79462301.26563819, 'out': 78831977.22730643},\n", " 'asks': {'in': 62967412.371090405, 'out': 62924765.52509262}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.941526,\n", " 'depth': 60,\n", " 'bids': {'in': 79688149.85155639, 'out': 79077695.14916582},\n", " 'asks': {'in': 63134555.80135561, 'out': 62972756.93464932}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.9417589,\n", " 'depth': 60,\n", " 'bids': {'in': 79744652.5709544, 'out': 79188520.87738273},\n", " 'asks': {'in': 63183714.54345921, 'out': 63005328.30059962}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.941983,\n", " 'depth': 60,\n", " 'bids': {'in': 79825464.6040078, 'out': 79329335.02750343},\n", " 'asks': {'in': 63188670.250768505, 'out': 63010284.01248462}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.942218,\n", " 'depth': 60,\n", " 'bids': {'in': 79972614.4116666, 'out': 79420592.85670833},\n", " 'asks': {'in': 63414391.013473004, 'out': 63235898.35141212}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.942453,\n", " 'depth': 60,\n", " 'bids': {'in': 80032225.9209312, 'out': 79473059.61540014},\n", " 'asks': {'in': 63713668.81669681, 'out': 63511283.054196015}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.942684,\n", " 'depth': 60,\n", " 'bids': {'in': 80124003.1050307, 'out': 79572213.63043433},\n", " 'asks': {'in': 63938525.55294771, 'out': 63738882.573189214}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.9429178,\n", " 'depth': 60,\n", " 'bids': {'in': 80230051.2993767, 'out': 79683371.20912044},\n", " 'asks': {'in': 63967103.654053405, 'out': 63813348.73542261}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.9431522,\n", " 'depth': 60,\n", " 'bids': {'in': 80368104.1772044, 'out': 79761420.61067094},\n", " 'asks': {'in': 64019852.71990181, 'out': 63967735.57339231}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.943386,\n", " 'depth': 60,\n", " 'bids': {'in': 80461201.1132579, 'out': 79838531.85879494},\n", " 'asks': {'in': 64103706.03971381, 'out': 64198338.61327761}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.943618,\n", " 'depth': 60,\n", " 'bids': {'in': 80542567.8184656, 'out': 80004148.47882494},\n", " 'asks': {'in': 64212209.50297361, 'out': 64234656.585788704}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.9438431,\n", " 'depth': 60,\n", " 'bids': {'in': 80581952.38208121, 'out': 80043534.24735074},\n", " 'asks': {'in': 64344046.48803861, 'out': 64277442.81979351}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.944073,\n", " 'depth': 60,\n", " 'bids': {'in': 80647077.7201095, 'out': 80072523.03822914},\n", " 'asks': {'in': 64389584.040169604, 'out': 64330823.49489321}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.944331,\n", " 'depth': 60,\n", " 'bids': {'in': 80706870.7800433, 'out': 80138801.99513224},\n", " 'asks': {'in': 64441658.7539691, 'out': 64501887.37037251}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.9445581,\n", " 'depth': 60,\n", " 'bids': {'in': 80786938.9012305, 'out': 80220246.94456095},\n", " 'asks': {'in': 64504725.2795248, 'out': 64541224.76305031}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.94478,\n", " 'depth': 60,\n", " 'bids': {'in': 80792267.3961123, 'out': 80358827.36254874},\n", " 'asks': {'in': 64635372.332256906, 'out': 64704029.09107881}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.945008,\n", " 'depth': 60,\n", " 'bids': {'in': 80984649.2224491, 'out': 80513377.62713903},\n", " 'asks': {'in': 64806882.776227504, 'out': 64737331.54576551}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.945326,\n", " 'depth': 60,\n", " 'bids': {'in': 82733735.33326569, 'out': 81447290.63115323},\n", " 'asks': {'in': 67113295.16798921, 'out': 65956883.882856116}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.945675,\n", " 'depth': 60,\n", " 'bids': {'in': 83065454.00094889, 'out': 81973254.56460503},\n", " 'asks': {'in': 67565268.60898681, 'out': 67592985.72520381}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.9459531,\n", " 'depth': 60,\n", " 'bids': {'in': 83506578.6397588, 'out': 82293663.39770733},\n", " 'asks': {'in': 67786675.6374388, 'out': 67792852.70824382}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.946209,\n", " 'depth': 60,\n", " 'bids': {'in': 83762038.3906, 'out': 82895966.43508543},\n", " 'asks': {'in': 67831825.8136266, 'out': 67825785.55671221}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.9464839,\n", " 'depth': 60,\n", " 'bids': {'in': 84272878.00385, 'out': 83550428.51339753},\n", " 'asks': {'in': 68230210.19584571, 'out': 68167300.57031772}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.946754,\n", " 'depth': 60,\n", " 'bids': {'in': 84712858.4388532, 'out': 83633823.36950213},\n", " 'asks': {'in': 68571952.04026951, 'out': 68481818.76428922}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.947001,\n", " 'depth': 60,\n", " 'bids': {'in': 85097202.51564111, 'out': 83911448.24234983},\n", " 'asks': {'in': 68786286.42888401, 'out': 68685427.15947792}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.947239,\n", " 'depth': 60,\n", " 'bids': {'in': 85177384.5267674, 'out': 83991630.26257274},\n", " 'asks': {'in': 68815414.90070112, 'out': 68729277.77413312}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.9474728,\n", " 'depth': 60,\n", " 'bids': {'in': 85241738.4312977, 'out': 84189974.19700463},\n", " 'asks': {'in': 68845954.15154532, 'out': 68758734.28175992}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.9477172,\n", " 'depth': 60,\n", " 'bids': {'in': 85446134.19201961, 'out': 84421348.47033644},\n", " 'asks': {'in': 68882553.08207522, 'out': 68889606.05526352}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.9479628,\n", " 'depth': 60,\n", " 'bids': {'in': 85714760.22533222, 'out': 84570556.20675024},\n", " 'asks': {'in': 69014410.95420192, 'out': 68926739.42755502}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.9482,\n", " 'depth': 60,\n", " 'bids': {'in': 85892895.29533301, 'out': 84749197.51961735},\n", " 'asks': {'in': 69043367.50926782, 'out': 68998974.09038723}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.948432,\n", " 'depth': 60,\n", " 'bids': {'in': 86168255.48641361, 'out': 84926683.03561816},\n", " 'asks': {'in': 69073033.86362632, 'out': 69078426.37258753}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.94867,\n", " 'depth': 60,\n", " 'bids': {'in': 86349494.88203801, 'out': 85211109.79750305},\n", " 'asks': {'in': 69327297.85310762, 'out': 69282808.34846014}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.94893,\n", " 'depth': 60,\n", " 'bids': {'in': 86718863.92395751, 'out': 85663238.94811675},\n", " 'asks': {'in': 69734041.09976971, 'out': 69919575.52456793}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.949196,\n", " 'depth': 60,\n", " 'bids': {'in': 87131375.69004141, 'out': 85949368.82887734},\n", " 'asks': {'in': 69966809.90220101, 'out': 70145530.47788543}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.949449,\n", " 'depth': 60,\n", " 'bids': {'in': 87285527.7934916, 'out': 86196838.43847135},\n", " 'asks': {'in': 70336089.48930481, 'out': 70378575.71156652}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.9496891,\n", " 'depth': 60,\n", " 'bids': {'in': 87455190.24027461, 'out': 86340593.30509195},\n", " 'asks': {'in': 70372834.02296601, 'out': 70408407.14176762}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.949926,\n", " 'depth': 60,\n", " 'bids': {'in': 87511942.93653621, 'out': 86453987.85006444},\n", " 'asks': {'in': 70433723.48724481, 'out': 70493106.03330602}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.950166,\n", " 'depth': 60,\n", " 'bids': {'in': 87612851.2686011, 'out': 86517979.35073404},\n", " 'asks': {'in': 70470823.86110911, 'out': 70528023.69513512}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.9504151,\n", " 'depth': 60,\n", " 'bids': {'in': 88143655.130103, 'out': 86984612.37197204},\n", " 'asks': {'in': 70676294.8329892, 'out': 70711647.35719942}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.9506629,\n", " 'depth': 60,\n", " 'bids': {'in': 88432905.5001696, 'out': 87278172.97051944},\n", " 'asks': {'in': 70806961.82211511, 'out': 70847476.91984181}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.950898,\n", " 'depth': 60,\n", " 'bids': {'in': 88586677.7985298, 'out': 87337532.31255764},\n", " 'asks': {'in': 70840130.98776981, 'out': 70880646.36896771}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.951128,\n", " 'depth': 60,\n", " 'bids': {'in': 88849954.77009021, 'out': 87735605.45972703},\n", " 'asks': {'in': 70849463.86749071, 'out': 70889979.30732101}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.951363,\n", " 'depth': 60,\n", " 'bids': {'in': 89063351.8534809, 'out': 87792362.08397493},\n", " 'asks': {'in': 70885134.24713011, 'out': 70923729.59175111}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.951607,\n", " 'depth': 60,\n", " 'bids': {'in': 89474444.12662481, 'out': 88161936.14325602},\n", " 'asks': {'in': 71005732.40067841, 'out': 71036899.93302521}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.951839,\n", " 'depth': 60,\n", " 'bids': {'in': 89615228.44077861, 'out': 88438133.31947382},\n", " 'asks': {'in': 71017194.24884811, 'out': 71047018.55667251}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.95207,\n", " 'depth': 60,\n", " 'bids': {'in': 89824605.24169561, 'out': 88494447.31382822},\n", " 'asks': {'in': 71028022.8694767, 'out': 71052684.52495071}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.9523048,\n", " 'depth': 60,\n", " 'bids': {'in': 89866649.85235262, 'out': 88615100.73205172},\n", " 'asks': {'in': 71165982.69878851, 'out': 71191484.80100021}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.9525461,\n", " 'depth': 60,\n", " 'bids': {'in': 89927581.42839712, 'out': 88781980.25718522},\n", " 'asks': {'in': 71185372.34145571, 'out': 71207788.18983251}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.952791,\n", " 'depth': 60,\n", " 'bids': {'in': 90121761.94838722, 'out': 88980863.46228021},\n", " 'asks': {'in': 71217800.06343631, 'out': 71262005.39637841}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.9530299,\n", " 'depth': 60,\n", " 'bids': {'in': 90321541.06812403, 'out': 89216019.28759362},\n", " 'asks': {'in': 71247258.64050831, 'out': 71291963.63326831}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.953259,\n", " 'depth': 60,\n", " 'bids': {'in': 90452633.57476602, 'out': 89249757.03482492},\n", " 'asks': {'in': 71275511.6616106, 'out': 71413963.1172758}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.9535072,\n", " 'depth': 60,\n", " 'bids': {'in': 90492869.14303252, 'out': 89289992.34545092},\n", " 'asks': {'in': 71402468.4764895, 'out': 71446672.72451891}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.9537358,\n", " 'depth': 60,\n", " 'bids': {'in': 90505658.46819831, 'out': 89294989.75970753},\n", " 'asks': {'in': 71434744.3440346, 'out': 71478948.1942618}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.9539661,\n", " 'depth': 60,\n", " 'bids': {'in': 90595345.04785031, 'out': 89513197.97617333},\n", " 'asks': {'in': 71440200.7589403, 'out': 71509663.0300506}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.954196,\n", " 'depth': 60,\n", " 'bids': {'in': 90715116.35867661, 'out': 89535563.56527072},\n", " 'asks': {'in': 71445657.1331849, 'out': 71515127.03138131}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.954431,\n", " 'depth': 60,\n", " 'bids': {'in': 90753460.62192361, 'out': 89621567.52510951},\n", " 'asks': {'in': 71477874.4414948, 'out': 71544585.21028271}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.9546618,\n", " 'depth': 60,\n", " 'bids': {'in': 90830378.22411092, 'out': 89643933.18325251},\n", " 'asks': {'in': 71507332.8366825, 'out': 71591380.3981848}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.954894,\n", " 'depth': 60,\n", " 'bids': {'in': 90852743.91897212, 'out': 89720850.78543982},\n", " 'asks': {'in': 71686730.0682855, 'out': 71770316.057656}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.955132,\n", " 'depth': 60,\n", " 'bids': {'in': 91013361.11179082, 'out': 89869355.47417963},\n", " 'asks': {'in': 71741734.3562086, 'out': 71806896.98869741}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.955384,\n", " 'depth': 60,\n", " 'bids': {'in': 91201843.37110162, 'out': 90014990.00528042},\n", " 'asks': {'in': 71815519.5327988, 'out': 71881771.08964841}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.955637,\n", " 'depth': 60,\n", " 'bids': {'in': 91390539.20934992, 'out': 90285948.30034032},\n", " 'asks': {'in': 71892129.3182182, 'out': 71925993.7052807}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.955894,\n", " 'depth': 60,\n", " 'bids': {'in': 91749897.29976031, 'out': 90684312.43704222},\n", " 'asks': {'in': 72208488.3441557, 'out': 72234012.2855149}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.95615,\n", " 'depth': 60,\n", " 'bids': {'in': 91940544.25752981, 'out': 90740381.44266702},\n", " 'asks': {'in': 72221622.5661951, 'out': 72247038.4728398}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.956393,\n", " 'depth': 60,\n", " 'bids': {'in': 92120975.37741221, 'out': 90942054.64683162},\n", " 'asks': {'in': 72265868.8834667, 'out': 72291259.6393238}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.95663,\n", " 'depth': 60,\n", " 'bids': {'in': 92178161.60553342, 'out': 91067780.45022902},\n", " 'asks': {'in': 72298540.97594331, 'out': 72323956.6117759}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.956865,\n", " 'depth': 60,\n", " 'bids': {'in': 92234265.67749181, 'out': 91123884.27535021},\n", " 'asks': {'in': 72332272.91949661, 'out': 72357678.8279375}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.957099,\n", " 'depth': 60,\n", " 'bids': {'in': 92442806.72226831, 'out': 91277389.13730861},\n", " 'asks': {'in': 72370693.24462052, 'out': 72390853.0934913}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.957335,\n", " 'depth': 60,\n", " 'bids': {'in': 92698340.05279942, 'out': 91587464.0086995},\n", " 'asks': {'in': 72422847.26024652, 'out': 72405822.33375481}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.9575732,\n", " 'depth': 60,\n", " 'bids': {'in': 92805852.26919481, 'out': 92297090.1995904},\n", " 'asks': {'in': 72456521.70201972, 'out': 72481435.26327221}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.957808,\n", " 'depth': 60,\n", " 'bids': {'in': 93510727.81301591, 'out': 92343463.6912112},\n", " 'asks': {'in': 72530501.19959003, 'out': 72511943.23606181}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.95805,\n", " 'depth': 60,\n", " 'bids': {'in': 93801205.16369511, 'out': 93301080.5143998},\n", " 'asks': {'in': 72563175.40311863, 'out': 72546962.11120701}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.958293,\n", " 'depth': 60,\n", " 'bids': {'in': 93881313.51907872, 'out': 93476257.111451},\n", " 'asks': {'in': 72598691.47777793, 'out': 72580136.2596551}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.958533,\n", " 'depth': 60,\n", " 'bids': {'in': 94014273.26441462, 'out': 93556365.4668346},\n", " 'asks': {'in': 72628156.61953263, 'out': 72609593.41103831}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.958773,\n", " 'depth': 60,\n", " 'bids': {'in': 94087542.04456742, 'out': 93891286.11946361},\n", " 'asks': {'in': 72661328.59203254, 'out': 72685161.78247161}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.959007,\n", " 'depth': 60,\n", " 'bids': {'in': 94143660.28313522, 'out': 93947404.2401548},\n", " 'asks': {'in': 72669999.29980044, 'out': 72696177.2373698}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.959245,\n", " 'depth': 60,\n", " 'bids': {'in': 94424579.44582082, 'out': 94231811.0034922},\n", " 'asks': {'in': 72747912.11200544, 'out': 72863873.4359525}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.9594848,\n", " 'depth': 60,\n", " 'bids': {'in': 94705935.09318942, 'out': 94564586.6391509},\n", " 'asks': {'in': 72916045.26465084, 'out': 72905987.0728315}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.9597282,\n", " 'depth': 60,\n", " 'bids': {'in': 94957777.46248052, 'out': 94591295.0024367},\n", " 'asks': {'in': 72953048.28438354, 'out': 72987733.4984787}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.9599721,\n", " 'depth': 60,\n", " 'bids': {'in': 95212918.53506482, 'out': 94770635.1367794},\n", " 'asks': {'in': 73030953.38924013, 'out': 73020904.8191309}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.9602098,\n", " 'depth': 60,\n", " 'bids': {'in': 95385427.32050581, 'out': 94898597.6555822},\n", " 'asks': {'in': 73055454.20794523, 'out': 73046488.4949185}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.960445,\n", " 'depth': 60,\n", " 'bids': {'in': 95441545.53622521, 'out': 94954715.89494881},\n", " 'asks': {'in': 73084419.27965173, 'out': 73078694.7521191}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.9606771,\n", " 'depth': 60,\n", " 'bids': {'in': 95569508.02756241, 'out': 95029827.22907001},\n", " 'asks': {'in': 73084919.21533723, 'out': 73079194.69703859}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.960912,\n", " 'depth': 60,\n", " 'bids': {'in': 95747017.36480752, 'out': 95207333.1085758},\n", " 'asks': {'in': 73118090.40170114, 'out': 73112365.9474711}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.961152,\n", " 'depth': 60,\n", " 'bids': {'in': 95863952.19192481, 'out': 95340292.91099891},\n", " 'asks': {'in': 73130009.26736474, 'out': 73163432.9768959}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.961388,\n", " 'depth': 60,\n", " 'bids': {'in': 95991914.8782829, 'out': 95415404.364967},\n", " 'asks': {'in': 73181568.66955075, 'out': 73172603.297479}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.9616268,\n", " 'depth': 60,\n", " 'bids': {'in': 96073105.966381, 'out': 95548364.2208171},\n", " 'asks': {'in': 73214764.41029054, 'out': 73205774.49820061}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.9618611,\n", " 'depth': 60,\n", " 'bids': {'in': 96124227.410599, 'out': 95599485.6017472},\n", " 'asks': {'in': 73215264.34597604, 'out': 73206292.10028781}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.962097,\n", " 'depth': 60,\n", " 'bids': {'in': 96224780.34050399, 'out': 95904395.6946667},\n", " 'asks': {'in': 73249335.66030714, 'out': 73290583.3062185}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.962349,\n", " 'depth': 60,\n", " 'bids': {'in': 96418732.08741659, 'out': 96061674.784224},\n", " 'asks': {'in': 73289709.03094053, 'out': 73590738.05635421}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.962622,\n", " 'depth': 60,\n", " 'bids': {'in': 96767516.47342609, 'out': 96454336.1731762},\n", " 'asks': {'in': 73552294.13272813, 'out': 73793399.6484352}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.962882,\n", " 'depth': 60,\n", " 'bids': {'in': 97162723.94332808, 'out': 96598260.0049284},\n", " 'asks': {'in': 73862664.28756553, 'out': 74108274.4574081}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.963153,\n", " 'depth': 60,\n", " 'bids': {'in': 97672491.60197388, 'out': 97006752.14725679},\n", " 'asks': {'in': 74334950.56674683, 'out': 74506101.4714061}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.963428,\n", " 'depth': 60,\n", " 'bids': {'in': 97864655.75169748, 'out': 97207562.51859659},\n", " 'asks': {'in': 74497009.66164643, 'out': 74555662.6353332}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.963685,\n", " 'depth': 60,\n", " 'bids': {'in': 98009928.52295798, 'out': 97350718.63889179},\n", " 'asks': {'in': 74554964.79480892, 'out': 74638330.65078689}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.963943,\n", " 'depth': 60,\n", " 'bids': {'in': 98138602.27646658, 'out': 97687894.52046178},\n", " 'asks': {'in': 74682193.50929123, 'out': 74890193.18321739}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.96421,\n", " 'depth': 60,\n", " 'bids': {'in': 98539900.66510507, 'out': 98096593.23084119},\n", " 'asks': {'in': 74833376.89678273, 'out': 74954380.0279651}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.964483,\n", " 'depth': 60,\n", " 'bids': {'in': 98641283.24347307, 'out': 98190416.74105999},\n", " 'asks': {'in': 75085404.36161563, 'out': 75220596.1530354}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.9648159,\n", " 'depth': 60,\n", " 'bids': {'in': 99425256.00320856, 'out': 98872866.59532818},\n", " 'asks': {'in': 76069671.25659193, 'out': 76381352.6798177}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.965167,\n", " 'depth': 60,\n", " 'bids': {'in': 99865748.83276306, 'out': 99319194.26262729},\n", " 'asks': {'in': 76785439.69096743, 'out': 76707618.0096312}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.965479,\n", " 'depth': 60,\n", " 'bids': {'in': 100420833.66923976, 'out': 99776621.2995766},\n", " 'asks': {'in': 77054685.98209943, 'out': 77233420.8371371}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.9657679,\n", " 'depth': 60,\n", " 'bids': {'in': 100845807.02333327, 'out': 100168045.42804499},\n", " 'asks': {'in': 77237875.88080873, 'out': 77249340.9624313}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.966093,\n", " 'depth': 60,\n", " 'bids': {'in': 101561052.85072897, 'out': 100894059.13954619},\n", " 'asks': {'in': 79328575.97453593, 'out': 78005658.3084252}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.966451,\n", " 'depth': 60,\n", " 'bids': {'in': 102272557.97897567, 'out': 101740892.92530678},\n", " 'asks': {'in': 79641682.06759512, 'out': 79151843.9052034}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.966772,\n", " 'depth': 60,\n", " 'bids': {'in': 102897255.29537377, 'out': 102303626.86591989},\n", " 'asks': {'in': 80004863.19727732, 'out': 80170604.8201149}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.967052,\n", " 'depth': 60,\n", " 'bids': {'in': 103226306.71900266, 'out': 102620740.41258739},\n", " 'asks': {'in': 80219379.31872812, 'out': 80357641.57027909}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.967309,\n", " 'depth': 60,\n", " 'bids': {'in': 103346173.86941287, 'out': 102747008.36026868},\n", " 'asks': {'in': 80323082.41716641, 'out': 80471658.37834749}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.967563,\n", " 'depth': 60,\n", " 'bids': {'in': 103412506.59880766, 'out': 102973388.91546099},\n", " 'asks': {'in': 80591744.07574521, 'out': 80767299.62469429}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.967826,\n", " 'depth': 60,\n", " 'bids': {'in': 103611979.45536457, 'out': 103051334.67775218},\n", " 'asks': {'in': 80715422.80987981, 'out': 80883633.68878919}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.9680798,\n", " 'depth': 60,\n", " 'bids': {'in': 103706615.28117917, 'out': 103115165.60674658},\n", " 'asks': {'in': 80724297.42614451, 'out': 80919995.0897352}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.968332,\n", " 'depth': 60,\n", " 'bids': {'in': 103789769.61725917, 'out': 103178543.14403999},\n", " 'asks': {'in': 80855359.61444712, 'out': 81050889.8524919}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.9685938,\n", " 'depth': 60,\n", " 'bids': {'in': 103854974.29484667, 'out': 103249018.86689709},\n", " 'asks': {'in': 81066526.66511671, 'out': 81132979.0424823}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.9688761,\n", " 'depth': 60,\n", " 'bids': {'in': 104017889.85276927, 'out': 103622114.16645299},\n", " 'asks': {'in': 81317057.34122461, 'out': 81420960.7340716}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.9691699,\n", " 'depth': 60,\n", " 'bids': {'in': 104279731.95469578, 'out': 103777062.29972568},\n", " 'asks': {'in': 81599258.72418801, 'out': 81763259.9950373}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.9694421,\n", " 'depth': 60,\n", " 'bids': {'in': 104447385.38077657, 'out': 103915356.20807348},\n", " 'asks': {'in': 81882177.69631042, 'out': 82003363.4277534}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.9697149,\n", " 'depth': 60,\n", " 'bids': {'in': 104809967.49342597, 'out': 104213789.24167548},\n", " 'asks': {'in': 82879637.38273291, 'out': 82493038.4875492}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.9700851,\n", " 'depth': 60,\n", " 'bids': {'in': 105906584.07591377, 'out': 105498316.37247959},\n", " 'asks': {'in': 83851250.56976831, 'out': 83335977.8274776}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.970455,\n", " 'depth': 60,\n", " 'bids': {'in': 106444049.50454307, 'out': 105966771.37042749},\n", " 'asks': {'in': 84342926.27807891, 'out': 83637782.2663617}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.970751,\n", " 'depth': 60,\n", " 'bids': {'in': 106793033.36051406, 'out': 106339206.9632828},\n", " 'asks': {'in': 84549084.04529051, 'out': 83861038.9213327}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.9710531,\n", " 'depth': 60,\n", " 'bids': {'in': 107292246.52948736, 'out': 106749088.0825772},\n", " 'asks': {'in': 85057125.59228462, 'out': 84116049.5595206}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.971352,\n", " 'depth': 60,\n", " 'bids': {'in': 107527210.44453116, 'out': 106914606.1873101},\n", " 'asks': {'in': 85103943.83084852, 'out': 84295398.3268334}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.9716291,\n", " 'depth': 60,\n", " 'bids': {'in': 107697636.19116716, 'out': 107051669.0872531},\n", " 'asks': {'in': 85202131.13280351, 'out': 84433553.4268765}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.971893,\n", " 'depth': 60,\n", " 'bids': {'in': 107907728.06888196, 'out': 107393201.2549346},\n", " 'asks': {'in': 85207088.19193031, 'out': 84438510.4677061}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.9721642,\n", " 'depth': 60,\n", " 'bids': {'in': 108119489.63912305, 'out': 107514667.82582769},\n", " 'asks': {'in': 85348128.1146499, 'out': 84573949.4174741}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.972428,\n", " 'depth': 60,\n", " 'bids': {'in': 108268335.78965235, 'out': 107600894.1769386},\n", " 'asks': {'in': 85377318.20755471, 'out': 84622025.80004011}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.972691,\n", " 'depth': 60,\n", " 'bids': {'in': 108335695.82706665, 'out': 107673704.71170719},\n", " 'asks': {'in': 85383677.4600954, 'out': 84627982.6983201}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.973035,\n", " 'depth': 60,\n", " 'bids': {'in': 109350246.07009405, 'out': 108742075.44614409},\n", " 'asks': {'in': 86410371.35446371, 'out': 86795920.4255082}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.973433,\n", " 'depth': 60,\n", " 'bids': {'in': 110436111.89606015, 'out': 109817986.66638759},\n", " 'asks': {'in': 87478060.91527581, 'out': 87394009.0065594}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.9737659,\n", " 'depth': 60,\n", " 'bids': {'in': 110773595.93029675, 'out': 110155546.33672309},\n", " 'asks': {'in': 87807848.1832281, 'out': 87687861.3248751}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.9740999,\n", " 'depth': 60,\n", " 'bids': {'in': 111514782.98636915, 'out': 110919288.17508279},\n", " 'asks': {'in': 88298670.7128264, 'out': 88291330.4335144}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.974407,\n", " 'depth': 60,\n", " 'bids': {'in': 111748666.09867305, 'out': 111128702.89039499},\n", " 'asks': {'in': 88350788.0095823, 'out': 88424680.1147932}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.974705,\n", " 'depth': 60,\n", " 'bids': {'in': 111883294.74794945, 'out': 111302924.57039268},\n", " 'asks': {'in': 88584632.8514218, 'out': 88713220.2541652}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.975019,\n", " 'depth': 60,\n", " 'bids': {'in': 112459058.28982276, 'out': 111991811.00086018},\n", " 'asks': {'in': 89106886.7481309, 'out': 89029679.2318765}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.975328,\n", " 'depth': 60,\n", " 'bids': {'in': 112851192.27468196, 'out': 112130093.45847829},\n", " 'asks': {'in': 89425815.95247221, 'out': 89298893.8980347}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.975602,\n", " 'depth': 60,\n", " 'bids': {'in': 112996562.39179556, 'out': 112311171.68695559},\n", " 'asks': {'in': 89470059.43074101, 'out': 89440396.6455618}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.975928,\n", " 'depth': 60,\n", " 'bids': {'in': 113805878.75433587, 'out': 113201988.53481749},\n", " 'asks': {'in': 91476337.7348189, 'out': 90579166.7317818}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.9763021,\n", " 'depth': 60,\n", " 'bids': {'in': 114854792.10377787, 'out': 114349774.96853429},\n", " 'asks': {'in': 92257087.28302641, 'out': 92366689.8798769}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.976643,\n", " 'depth': 60,\n", " 'bids': {'in': 115452148.68484376, 'out': 115087424.10793439},\n", " 'asks': {'in': 92632608.3419052, 'out': 92870628.673921}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.976952,\n", " 'depth': 60,\n", " 'bids': {'in': 115810417.10128197, 'out': 115304023.11896048},\n", " 'asks': {'in': 93136829.5305732, 'out': 93117134.9599709}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.977234,\n", " 'depth': 60,\n", " 'bids': {'in': 115894481.19194117, 'out': 115385166.97087139},\n", " 'asks': {'in': 93399883.68710111, 'out': 93413001.8877334}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.977519,\n", " 'depth': 60,\n", " 'bids': {'in': 116071415.05700926, 'out': 115501519.63633099},\n", " 'asks': {'in': 93440993.39758871, 'out': 93541296.7374929}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.977797,\n", " 'depth': 60,\n", " 'bids': {'in': 116156143.28095856, 'out': 115583994.51441939},\n", " 'asks': {'in': 93703259.58481531, 'out': 93850941.8837959}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.9780638,\n", " 'depth': 60,\n", " 'bids': {'in': 116251505.23023246, 'out': 115735508.1176581},\n", " 'asks': {'in': 93743283.2861751, 'out': 93892440.6996063}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.978376,\n", " 'depth': 60,\n", " 'bids': {'in': 116945361.69628136, 'out': 116441120.8325605},\n", " 'asks': {'in': 94305763.56660551, 'out': 94216778.5289459}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.978683,\n", " 'depth': 60,\n", " 'bids': {'in': 117124373.78621736, 'out': 116502028.0567212},\n", " 'asks': {'in': 94531941.7943125, 'out': 94403972.25317039}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.978983,\n", " 'depth': 60,\n", " 'bids': {'in': 117585280.34547156, 'out': 117002878.25987789},\n", " 'asks': {'in': 95609754.5978807, 'out': 95033338.19546568}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.979319,\n", " 'depth': 60,\n", " 'bids': {'in': 118595359.14150326, 'out': 118093782.52170219},\n", " 'asks': {'in': 96149011.4296799, 'out': 96186527.45658259}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.97965,\n", " 'depth': 60,\n", " 'bids': {'in': 119151884.97078486, 'out': 118822948.95789048},\n", " 'asks': {'in': 96664084.2934171, 'out': 96538901.72241569}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.979949,\n", " 'depth': 60,\n", " 'bids': {'in': 119773633.72628306, 'out': 119142661.75892918},\n", " 'asks': {'in': 96829314.6296206, 'out': 96666289.39668289}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.980226,\n", " 'depth': 60,\n", " 'bids': {'in': 119951553.35332476, 'out': 119518859.96733998},\n", " 'asks': {'in': 96983288.18867789, 'out': 96844387.90047918}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.9804978,\n", " 'depth': 60,\n", " 'bids': {'in': 120195808.91190796, 'out': 119692124.59784628},\n", " 'asks': {'in': 97019561.2577011, 'out': 96880660.78029338}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.9807649,\n", " 'depth': 60,\n", " 'bids': {'in': 120295006.89823626, 'out': 119807825.93172619},\n", " 'asks': {'in': 97117805.5240467, 'out': 96985645.49025637}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.981025,\n", " 'depth': 60,\n", " 'bids': {'in': 120510969.95383546, 'out': 119985951.69592829},\n", " 'asks': {'in': 97240029.2483899, 'out': 97114691.34243847}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.981303,\n", " 'depth': 60,\n", " 'bids': {'in': 120956546.30746555, 'out': 120545497.6647708},\n", " 'asks': {'in': 97773650.2037343, 'out': 97570400.94295268}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.981588,\n", " 'depth': 60,\n", " 'bids': {'in': 121372841.40668085, 'out': 121045122.6848875},\n", " 'asks': {'in': 98111438.0524313, 'out': 97986150.62790957}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.981864,\n", " 'depth': 60,\n", " 'bids': {'in': 121670538.59121525, 'out': 121295847.764997},\n", " 'asks': {'in': 98319196.2091796, 'out': 98190939.10075517}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.982152,\n", " 'depth': 60,\n", " 'bids': {'in': 121853302.36569655, 'out': 121379253.20448351},\n", " 'asks': {'in': 98497897.13840759, 'out': 98353324.63721266}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.982419,\n", " 'depth': 60,\n", " 'bids': {'in': 121990451.97092855, 'out': 121465027.11061081},\n", " 'asks': {'in': 98719980.56488378, 'out': 98571637.62556957}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.982688,\n", " 'depth': 60,\n", " 'bids': {'in': 122083237.21082506, 'out': 121560015.51197901},\n", " 'asks': {'in': 98927244.28275028, 'out': 98819826.55958477}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.982995,\n", " 'depth': 60,\n", " 'bids': {'in': 122358692.30131416, 'out': 122472963.78124201},\n", " 'asks': {'in': 99080473.58244237, 'out': 99027933.82452357}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.983317,\n", " 'depth': 60,\n", " 'bids': {'in': 122798073.17957696, 'out': 122832322.58931722},\n", " 'asks': {'in': 99521131.06008217, 'out': 99444959.77345766}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.983613,\n", " 'depth': 60,\n", " 'bids': {'in': 123409432.11610186, 'out': 123247416.46800362},\n", " 'asks': {'in': 99909790.67375046, 'out': 99767747.64352275}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.983895,\n", " 'depth': 60,\n", " 'bids': {'in': 123563432.97496486, 'out': 123349915.63264622},\n", " 'asks': {'in': 99948000.70362996, 'out': 99911341.11940186}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.9841669,\n", " 'depth': 60,\n", " 'bids': {'in': 123710998.83629055, 'out': 123454407.31619231},\n", " 'asks': {'in': 100057492.16663605, 'out': 99925306.66946095}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.9844348,\n", " 'depth': 60,\n", " 'bids': {'in': 123805611.34581095, 'out': 123549019.67393531},\n", " 'asks': {'in': 100101921.42482665, 'out': 100062016.72851905}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.984703,\n", " 'depth': 60,\n", " 'bids': {'in': 123956085.01623255, 'out': 123685549.0277151},\n", " 'asks': {'in': 100236150.02041306, 'out': 100105225.63987605}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.984979,\n", " 'depth': 60,\n", " 'bids': {'in': 124046538.57887895, 'out': 123871025.4190305},\n", " 'asks': {'in': 100453873.76405415, 'out': 100325882.58960915}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.985322,\n", " 'depth': 60,\n", " 'bids': {'in': 126447756.34947886, 'out': 124807614.9515291},\n", " 'asks': {'in': 101397781.68478274, 'out': 101214459.27300425}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.9856808,\n", " 'depth': 60,\n", " 'bids': {'in': 126999615.71444425, 'out': 125208404.9791439},\n", " 'asks': {'in': 101697820.13472144, 'out': 101537653.86477695}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.9859881,\n", " 'depth': 60,\n", " 'bids': {'in': 127279353.00074396, 'out': 125333087.27600831},\n", " 'asks': {'in': 102069809.18542744, 'out': 101822355.76961896}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.986277,\n", " 'depth': 60,\n", " 'bids': {'in': 127440088.37354936, 'out': 125443220.6061408},\n", " 'asks': {'in': 102286099.33631924, 'out': 102031171.12737596}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.9865448,\n", " 'depth': 60,\n", " 'bids': {'in': 127469074.28435695, 'out': 125472848.47705571},\n", " 'asks': {'in': 102323906.90601324, 'out': 102063874.49693306}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.986815,\n", " 'depth': 60,\n", " 'bids': {'in': 127518832.60020836, 'out': 125543315.30736691},\n", " 'asks': {'in': 102466484.47710504, 'out': 102211551.32358585}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.9870842,\n", " 'depth': 60,\n", " 'bids': {'in': 127614452.67454575, 'out': 125598017.88997251},\n", " 'asks': {'in': 102514817.15405343, 'out': 102253129.52997175}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.987345,\n", " 'depth': 60,\n", " 'bids': {'in': 127658438.32527065, 'out': 125627333.34640831},\n", " 'asks': {'in': 102544276.44678023, 'out': 102282588.50900945}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.987604,\n", " 'depth': 60,\n", " 'bids': {'in': 127738034.92317246, 'out': 126346808.9150768},\n", " 'asks': {'in': 102744060.62299713, 'out': 102482378.56949325}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.98788,\n", " 'depth': 60,\n", " 'bids': {'in': 128107985.89277516, 'out': 127381838.15598111},\n", " 'asks': {'in': 103106943.82858653, 'out': 102847611.02924795}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.98816,\n", " 'depth': 60,\n", " 'bids': {'in': 128351056.46971497, 'out': 128007114.60197681},\n", " 'asks': {'in': 103128436.19980124, 'out': 102930998.54616925}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.9884312,\n", " 'depth': 60,\n", " 'bids': {'in': 128488479.71688446, 'out': 128144535.74062932},\n", " 'asks': {'in': 103316873.85708724, 'out': 103125910.24879046}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.9887009,\n", " 'depth': 60,\n", " 'bids': {'in': 128758993.74883926, 'out': 128485128.66966312},\n", " 'asks': {'in': 103419966.94264774, 'out': 103300241.16395105}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.9890199,\n", " 'depth': 60,\n", " 'bids': {'in': 129204815.35522996, 'out': 128939959.86642282},\n", " 'asks': {'in': 103894417.62617424, 'out': 104019870.02784106}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.989515,\n", " 'depth': 60,\n", " 'bids': {'in': 130413058.20585826, 'out': 129895572.19010131},\n", " 'asks': {'in': 106219194.45220244, 'out': 104883543.25604986}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.9899242,\n", " 'depth': 60,\n", " 'bids': {'in': 130788714.13821006, 'out': 130729771.72859481},\n", " 'asks': {'in': 106874671.17679414, 'out': 106087439.95976906}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.9902751,\n", " 'depth': 60,\n", " 'bids': {'in': 131346461.08264726, 'out': 130917203.94603191},\n", " 'asks': {'in': 107262655.15226685, 'out': 107095790.40136546}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.9905732,\n", " 'depth': 60,\n", " 'bids': {'in': 131545093.07869886, 'out': 131100411.62649362},\n", " 'asks': {'in': 108234324.11987025, 'out': 107357014.85862496}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.9908512,\n", " 'depth': 60,\n", " 'bids': {'in': 131630460.39570026, 'out': 131239187.46485151},\n", " 'asks': {'in': 108269235.98936425, 'out': 108096902.16711487}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.991127,\n", " 'depth': 60,\n", " 'bids': {'in': 131792871.45255616, 'out': 131341818.5207899},\n", " 'asks': {'in': 108377412.13293085, 'out': 108216415.15501396}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.991422,\n", " 'depth': 60,\n", " 'bids': {'in': 132294191.55636317, 'out': 131915501.71077141},\n", " 'asks': {'in': 110083263.15828104, 'out': 108727145.65131067}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.99173,\n", " 'depth': 60,\n", " 'bids': {'in': 132844560.02794527, 'out': 132404451.5400207},\n", " 'asks': {'in': 110161994.70431845, 'out': 109489348.79598127}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.992013,\n", " 'depth': 60,\n", " 'bids': {'in': 133158577.01279257, 'out': 132734174.9739096},\n", " 'asks': {'in': 110176996.32719745, 'out': 109498051.61612298}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.9923358,\n", " 'depth': 60,\n", " 'bids': {'in': 133594942.65743618, 'out': 133127661.9256124},\n", " 'asks': {'in': 111304822.20835555, 'out': 109858689.77882877}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.992666,\n", " 'depth': 60,\n", " 'bids': {'in': 133911962.52467968, 'out': 133376863.0461141},\n", " 'asks': {'in': 111581419.95029405, 'out': 109950107.27230418}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.992971,\n", " 'depth': 60,\n", " 'bids': {'in': 134105133.17840408, 'out': 133606219.5915211},\n", " 'asks': {'in': 112008440.47440335, 'out': 110594820.20988038}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.993284,\n", " 'depth': 60,\n", " 'bids': {'in': 134304368.90097958, 'out': 133861545.8962667},\n", " 'asks': {'in': 112249121.03935035, 'out': 110920234.74478218}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.9935842,\n", " 'depth': 60,\n", " 'bids': {'in': 134542962.29375187, 'out': 134145982.1216308},\n", " 'asks': {'in': 112538476.50604485, 'out': 111119325.15365978}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.99386,\n", " 'depth': 60,\n", " 'bids': {'in': 134605161.13920566, 'out': 134202830.3208889},\n", " 'asks': {'in': 112549340.12901504, 'out': 111132565.57574257}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.994158,\n", " 'depth': 60,\n", " 'bids': {'in': 134925118.06755435, 'out': 134566677.0809339},\n", " 'asks': {'in': 112977797.32355385, 'out': 111613103.03629117}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.99447,\n", " 'depth': 60,\n", " 'bids': {'in': 135464575.42795566, 'out': 135071324.2566903},\n", " 'asks': {'in': 113369377.93610385, 'out': 111962741.63083687}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.994772,\n", " 'depth': 60,\n", " 'bids': {'in': 135872448.92326495, 'out': 135476790.5784405},\n", " 'asks': {'in': 113554723.39370695, 'out': 112052977.67004907}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.995072,\n", " 'depth': 60,\n", " 'bids': {'in': 136189813.77637005, 'out': 135761125.3004117},\n", " 'asks': {'in': 113802881.78676155, 'out': 112258793.16306987}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.995371,\n", " 'depth': 60,\n", " 'bids': {'in': 136384181.80265325, 'out': 135954044.6496594},\n", " 'asks': {'in': 114073986.17957266, 'out': 112504586.98398717}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.995649,\n", " 'depth': 60,\n", " 'bids': {'in': 136510495.53599235, 'out': 136044912.7861312},\n", " 'asks': {'in': 114208353.10991785, 'out': 112639997.50449587}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.9959512,\n", " 'depth': 60,\n", " 'bids': {'in': 136940147.31641185, 'out': 136691541.9746224},\n", " 'asks': {'in': 114529855.26679546, 'out': 112877455.18438748}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.996258,\n", " 'depth': 60,\n", " 'bids': {'in': 137136408.90585375, 'out': 136857007.8280019},\n", " 'asks': {'in': 114763927.97196816, 'out': 113078858.99346897}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.9965398,\n", " 'depth': 60,\n", " 'bids': {'in': 137457141.55652055, 'out': 137253904.15243357},\n", " 'asks': {'in': 115080772.57504106, 'out': 113497896.67295997}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.996819,\n", " 'depth': 60,\n", " 'bids': {'in': 137635425.95303935, 'out': 137334731.47010046},\n", " 'asks': {'in': 115450179.86783476, 'out': 113825220.00788277}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.9970949,\n", " 'depth': 60,\n", " 'bids': {'in': 137748066.44586995, 'out': 137410542.96636286},\n", " 'asks': {'in': 115726839.52210777, 'out': 114685275.77271497}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.9973671,\n", " 'depth': 60,\n", " 'bids': {'in': 137811438.78965795, 'out': 137477161.43042886},\n", " 'asks': {'in': 116453581.18419616, 'out': 114727773.50265017}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.99764,\n", " 'depth': 60,\n", " 'bids': {'in': 137981462.34762225, 'out': 137637352.07681686},\n", " 'asks': {'in': 116473126.43378197, 'out': 115474018.46817137}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.99792,\n", " 'depth': 60,\n", " 'bids': {'in': 138081435.93986064, 'out': 137846331.03540987},\n", " 'asks': {'in': 117189507.88985306, 'out': 115507010.57355137}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.998194,\n", " 'depth': 60,\n", " 'bids': {'in': 138242261.34286875, 'out': 138007154.22956738},\n", " 'asks': {'in': 117230584.13769786, 'out': 116281404.56984207}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.998462,\n", " 'depth': 60,\n", " 'bids': {'in': 138401333.62929323, 'out': 138275081.11077887},\n", " 'asks': {'in': 117995693.92940216, 'out': 116440840.95397347}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.998729,\n", " 'depth': 60,\n", " 'bids': {'in': 138560536.26760525, 'out': 138417805.80473956},\n", " 'asks': {'in': 118174691.87321165, 'out': 117206400.95448378}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.999007,\n", " 'depth': 60,\n", " 'bids': {'in': 138864122.38032046, 'out': 138597479.56327617},\n", " 'asks': {'in': 118207245.63153066, 'out': 117237871.54237467}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.999279,\n", " 'depth': 60,\n", " 'bids': {'in': 138943473.47191885, 'out': 138655205.4775642},\n", " 'asks': {'in': 118266808.11059526, 'out': 117240852.07724006}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.999545,\n", " 'depth': 60,\n", " 'bids': {'in': 139052054.35018864, 'out': 138718577.50876817},\n", " 'asks': {'in': 118302882.05275136, 'out': 117333507.50430216}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386603.999823,\n", " 'depth': 60,\n", " 'bids': {'in': 139144947.13218763, 'out': 138840443.07213888},\n", " 'asks': {'in': 118346505.17047927, 'out': 117375143.14064115}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.0000992,\n", " 'depth': 60,\n", " 'bids': {'in': 139323773.61416614, 'out': 138925749.36052817},\n", " 'asks': {'in': 118375966.37403826, 'out': 117404654.72840245}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.0004191,\n", " 'depth': 60,\n", " 'bids': {'in': 139939576.50391704, 'out': 139832192.52675968},\n", " 'asks': {'in': 118797149.47560686, 'out': 118824044.58858486}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.00077,\n", " 'depth': 60,\n", " 'bids': {'in': 140318742.74961084, 'out': 140112168.4863261},\n", " 'asks': {'in': 119659625.30332716, 'out': 119066941.14120376}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.001089,\n", " 'depth': 60,\n", " 'bids': {'in': 140821144.38405675, 'out': 140501452.8599123},\n", " 'asks': {'in': 120067689.63152026, 'out': 120051663.57591866}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.001416,\n", " 'depth': 60,\n", " 'bids': {'in': 141183609.82965255, 'out': 140789157.928979},\n", " 'asks': {'in': 121098416.59241666, 'out': 120401675.56451225}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.001726,\n", " 'depth': 60,\n", " 'bids': {'in': 141399252.95584863, 'out': 140979893.34600782},\n", " 'asks': {'in': 121338563.49906296, 'out': 120610040.83300875}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.002006,\n", " 'depth': 60,\n", " 'bids': {'in': 141689654.03169763, 'out': 141275535.41840893},\n", " 'asks': {'in': 121619062.43136285, 'out': 121527669.06433184}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.002288,\n", " 'depth': 60,\n", " 'bids': {'in': 141770675.60214192, 'out': 141359804.01475254},\n", " 'asks': {'in': 121694535.94280796, 'out': 121575578.16603124}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.002581,\n", " 'depth': 60,\n", " 'bids': {'in': 142124796.6232505, 'out': 141796867.84669623},\n", " 'asks': {'in': 122092408.85161516, 'out': 121902134.98550524}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.00288,\n", " 'depth': 60,\n", " 'bids': {'in': 142374452.2581379, 'out': 142023389.30905452},\n", " 'asks': {'in': 122260773.00730936, 'out': 122061044.56006163}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.003168,\n", " 'depth': 60,\n", " 'bids': {'in': 142521617.29110342, 'out': 142127126.81734273},\n", " 'asks': {'in': 122304423.84377746, 'out': 122258283.26302333}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.003456,\n", " 'depth': 60,\n", " 'bids': {'in': 142793759.65690383, 'out': 142422444.22760993},\n", " 'asks': {'in': 122437769.18112126, 'out': 122294077.41325553}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.003735,\n", " 'depth': 60,\n", " 'bids': {'in': 142821298.93829873, 'out': 142452303.59956995},\n", " 'asks': {'in': 122455157.51922446, 'out': 122333157.02380763}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.004013,\n", " 'depth': 60,\n", " 'bids': {'in': 142842550.05773574, 'out': 142470632.64943364},\n", " 'asks': {'in': 122482891.50933926, 'out': 122366215.91318083}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.004289,\n", " 'depth': 60,\n", " 'bids': {'in': 142890086.43824425, 'out': 142521138.32036763},\n", " 'asks': {'in': 122517054.24129926, 'out': 122409296.41482273}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.004564,\n", " 'depth': 60,\n", " 'bids': {'in': 143055856.54293504, 'out': 142601479.92316854},\n", " 'asks': {'in': 122530124.81618036, 'out': 122419956.81498472}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.004846,\n", " 'depth': 60,\n", " 'bids': {'in': 143136048.81071416, 'out': 142685242.87115535},\n", " 'asks': {'in': 122777618.09499857, 'out': 122811401.00010313}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.005143,\n", " 'depth': 60,\n", " 'bids': {'in': 143548304.03739095, 'out': 143087318.67379284},\n", " 'asks': {'in': 123154364.52551956, 'out': 123088033.95189664}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.005436,\n", " 'depth': 60,\n", " 'bids': {'in': 143617615.08303824, 'out': 143231738.00371465},\n", " 'asks': {'in': 123290105.11098577, 'out': 123251639.89860564}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.005714,\n", " 'depth': 60,\n", " 'bids': {'in': 143799736.14309865, 'out': 143411868.72913435},\n", " 'asks': {'in': 123319565.76861607, 'out': 123281100.74307625}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.0059898,\n", " 'depth': 60,\n", " 'bids': {'in': 144014367.25925466, 'out': 143593410.45419174},\n", " 'asks': {'in': 123355532.77292587, 'out': 123310561.40070654}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.006266,\n", " 'depth': 60,\n", " 'bids': {'in': 144097368.48406786, 'out': 143710261.38564774},\n", " 'asks': {'in': 123420942.94676147, 'out': 123350021.22628045}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.006542,\n", " 'depth': 60,\n", " 'bids': {'in': 144146626.70962265, 'out': 143775975.96923316},\n", " 'asks': {'in': 123621777.51567557, 'out': 123648415.97287466}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.0068219,\n", " 'depth': 60,\n", " 'bids': {'in': 144284404.94826144, 'out': 143917341.00389427},\n", " 'asks': {'in': 123748791.07540298, 'out': 123678960.27550496}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.007102,\n", " 'depth': 60,\n", " 'bids': {'in': 144608987.30179593, 'out': 144388200.67807218},\n", " 'asks': {'in': 123934448.11029388, 'out': 123839486.68618016}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.007382,\n", " 'depth': 60,\n", " 'bids': {'in': 145053388.94149104, 'out': 144718590.3125541},\n", " 'asks': {'in': 123961276.33967358, 'out': 123898335.43578877}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.007671,\n", " 'depth': 60,\n", " 'bids': {'in': 145187394.37300414, 'out': 144804139.2029282},\n", " 'asks': {'in': 124097277.86313789, 'out': 124062211.42822316}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.007953,\n", " 'depth': 60,\n", " 'bids': {'in': 145231332.49750254, 'out': 144848077.35040838},\n", " 'asks': {'in': 124126980.88147248, 'out': 124128594.55619246}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.008225,\n", " 'depth': 60,\n", " 'bids': {'in': 145282918.30476263, 'out': 144889535.80578476},\n", " 'asks': {'in': 124153560.11317888, 'out': 124153166.92472486}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.0085042,\n", " 'depth': 60,\n", " 'bids': {'in': 145332622.16955513, 'out': 144949366.73785135},\n", " 'asks': {'in': 124224886.06006888, 'out': 124188880.37598836}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.008783,\n", " 'depth': 60,\n", " 'bids': {'in': 145421250.76597443, 'out': 145041323.78216386},\n", " 'asks': {'in': 124538466.66937467, 'out': 124493065.08609787}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.009069,\n", " 'depth': 60,\n", " 'bids': {'in': 145719424.42989025, 'out': 145364031.53177917},\n", " 'asks': {'in': 124696686.87072948, 'out': 124533741.99179897}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.009355,\n", " 'depth': 60,\n", " 'bids': {'in': 145787973.76454344, 'out': 145423039.30422238},\n", " 'asks': {'in': 124736814.12499538, 'out': 124611091.48377326}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.0096362,\n", " 'depth': 60,\n", " 'bids': {'in': 145844503.17475405, 'out': 145482820.1985832},\n", " 'asks': {'in': 124747986.57550968, 'out': 124650195.40649846}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.009917,\n", " 'depth': 60,\n", " 'bids': {'in': 145930859.11369026, 'out': 145569684.24411818},\n", " 'asks': {'in': 124885172.62567559, 'out': 124780410.75267467}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.0102022,\n", " 'depth': 60,\n", " 'bids': {'in': 146004691.30037665, 'out': 145616469.7012046},\n", " 'asks': {'in': 124898241.91686699, 'out': 124879800.58422427}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.010483,\n", " 'depth': 60,\n", " 'bids': {'in': 146120964.71608266, 'out': 145696988.045049},\n", " 'asks': {'in': 124934814.76151888, 'out': 124916373.35940386}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.010758,\n", " 'depth': 60,\n", " 'bids': {'in': 146167419.86657476, 'out': 145779197.4573064},\n", " 'asks': {'in': 125027969.26990998, 'out': 125048018.76871976}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.011033,\n", " 'depth': 60,\n", " 'bids': {'in': 146284021.90404275, 'out': 145860045.53175572},\n", " 'asks': {'in': 125159396.49642958, 'out': 125081610.82520986}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.011311,\n", " 'depth': 60,\n", " 'bids': {'in': 146366044.96283206, 'out': 146068668.2771739},\n", " 'asks': {'in': 125210415.69948007, 'out': 125152376.31026106}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.011613,\n", " 'depth': 60,\n", " 'bids': {'in': 146678284.18694946, 'out': 146211909.29556632},\n", " 'asks': {'in': 125506241.23564517, 'out': 125430686.99225995}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.01191,\n", " 'depth': 60,\n", " 'bids': {'in': 146766370.92964327, 'out': 146332501.3056338},\n", " 'asks': {'in': 125548618.74160747, 'out': 125476867.91485445}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.012195,\n", " 'depth': 60,\n", " 'bids': {'in': 146847895.9164132, 'out': 146431354.15495142},\n", " 'asks': {'in': 125584203.93255387, 'out': 125609012.19823726}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.0124888,\n", " 'depth': 60,\n", " 'bids': {'in': 146928166.1563322, 'out': 146513217.6559455},\n", " 'asks': {'in': 125715348.87051007, 'out': 125649394.07840826}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.012767,\n", " 'depth': 60,\n", " 'bids': {'in': 147020837.0891259, 'out': 146596658.88279092},\n", " 'asks': {'in': 125756230.68641888, 'out': 125685069.69611245}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.0130482,\n", " 'depth': 60,\n", " 'bids': {'in': 147095875.7560737, 'out': 146644528.67331123},\n", " 'asks': {'in': 125889154.26711127, 'out': 125820697.88241166}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.013335,\n", " 'depth': 60,\n", " 'bids': {'in': 147183231.2367779, 'out': 146738165.90331432},\n", " 'asks': {'in': 125927706.50654007, 'out': 125964650.19647036}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.01362,\n", " 'depth': 60,\n", " 'bids': {'in': 147272887.6870368, 'out': 146818374.3926702},\n", " 'asks': {'in': 126080163.45997047, 'out': 125994733.69784647}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.0138922,\n", " 'depth': 60,\n", " 'bids': {'in': 147348425.2570812, 'out': 146893911.85983032},\n", " 'asks': {'in': 126088101.88561268, 'out': 126000247.76735447}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.014174,\n", " 'depth': 60,\n", " 'bids': {'in': 147394896.1614286, 'out': 146943630.58077213},\n", " 'asks': {'in': 126298477.48064128, 'out': 126273111.74841978}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.014452,\n", " 'depth': 60,\n", " 'bids': {'in': 147416061.2272436, 'out': 146961547.65478912},\n", " 'asks': {'in': 126529190.24576947, 'out': 126444485.66339478}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.014716,\n", " 'depth': 60,\n", " 'bids': {'in': 147438541.9547436, 'out': 146984033.64141703},\n", " 'asks': {'in': 126534148.32246067, 'out': 126449443.72636758}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.0149918,\n", " 'depth': 60,\n", " 'bids': {'in': 147500530.84891778, 'out': 147034076.55342343},\n", " 'asks': {'in': 126580488.17933707, 'out': 126660503.90764768}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.015279,\n", " 'depth': 60,\n", " 'bids': {'in': 147593714.59340477, 'out': 147120762.73400244},\n", " 'asks': {'in': 126802518.42346857, 'out': 126870454.13668078}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.0155861,\n", " 'depth': 60,\n", " 'bids': {'in': 148271721.54303136, 'out': 147629274.00980654},\n", " 'asks': {'in': 127165399.73198988, 'out': 127228130.76781118}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.01591,\n", " 'depth': 60,\n", " 'bids': {'in': 148805929.18507376, 'out': 148209535.16121194},\n", " 'asks': {'in': 128273093.35980608, 'out': 127481478.07649268}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.0162308,\n", " 'depth': 60,\n", " 'bids': {'in': 149194379.79542717, 'out': 148536819.26824263},\n", " 'asks': {'in': 129371334.72138438, 'out': 127746759.22363818}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.0165389,\n", " 'depth': 60,\n", " 'bids': {'in': 149303074.44073117, 'out': 148723556.99207893},\n", " 'asks': {'in': 129621730.84709677, 'out': 127975227.02930038}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.0168269,\n", " 'depth': 60,\n", " 'bids': {'in': 149379273.82092267, 'out': 148801581.39265862},\n", " 'asks': {'in': 129665938.26993367, 'out': 128012184.72680287}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.017117,\n", " 'depth': 60,\n", " 'bids': {'in': 149644398.00142747, 'out': 149069956.65100583},\n", " 'asks': {'in': 129709126.56977327, 'out': 128115374.52348597}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.0174038,\n", " 'depth': 60,\n", " 'bids': {'in': 149666199.380621, 'out': 149089927.48082054},\n", " 'asks': {'in': 129744293.33077997, 'out': 128157675.18715887}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.017681,\n", " 'depth': 60,\n", " 'bids': {'in': 149781476.21758097, 'out': 149205208.61910954},\n", " 'asks': {'in': 129787580.64215156, 'out': 128192678.37655267}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.017965,\n", " 'depth': 60,\n", " 'bids': {'in': 149843708.08579716, 'out': 149267432.96456274},\n", " 'asks': {'in': 129901102.73863596, 'out': 128216919.36763667}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.0182452,\n", " 'depth': 60,\n", " 'bids': {'in': 150140581.87082356, 'out': 149564312.89204493},\n", " 'asks': {'in': 130175496.26363115, 'out': 128491307.72972757}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.018525,\n", " 'depth': 60,\n", " 'bids': {'in': 150215802.09114507, 'out': 149737993.36863872},\n", " 'asks': {'in': 130359476.95439345, 'out': 128765711.22752276}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.018813,\n", " 'depth': 60,\n", " 'bids': {'in': 150435018.49809346, 'out': 149826183.22339132},\n", " 'asks': {'in': 130470677.97554645, 'out': 129456996.23252577}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.019109,\n", " 'depth': 60,\n", " 'bids': {'in': 150546189.33330816, 'out': 150006496.74516952},\n", " 'asks': {'in': 130641475.47449444, 'out': 129641608.88164397}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.019398,\n", " 'depth': 60,\n", " 'bids': {'in': 150702037.46143457, 'out': 150125981.9992808},\n", " 'asks': {'in': 130774516.75787094, 'out': 129831828.38399516}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.019682,\n", " 'depth': 60,\n", " 'bids': {'in': 150788576.87940568, 'out': 150219896.7327752},\n", " 'asks': {'in': 130784105.58095205, 'out': 129841417.29613826}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.019973,\n", " 'depth': 60,\n", " 'bids': {'in': 150863795.31409737, 'out': 150425270.07486072},\n", " 'asks': {'in': 131653464.09133455, 'out': 130104526.65309216}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.020266,\n", " 'depth': 60,\n", " 'bids': {'in': 151280768.97679886, 'out': 150958252.53012803},\n", " 'asks': {'in': 131858627.28580154, 'out': 130913762.55929346}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.020566,\n", " 'depth': 60,\n", " 'bids': {'in': 151705237.25211027, 'out': 151244662.90704542},\n", " 'asks': {'in': 131924102.83033854, 'out': 131760190.88708957}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.020855,\n", " 'depth': 60,\n", " 'bids': {'in': 151786988.00572968, 'out': 151320417.5303538},\n", " 'asks': {'in': 132129622.27074844, 'out': 131965706.42291257}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.0211442,\n", " 'depth': 60,\n", " 'bids': {'in': 151867312.19674876, 'out': 151401066.73715383},\n", " 'asks': {'in': 132271829.34797794, 'out': 132040862.36546777}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.021433,\n", " 'depth': 60,\n", " 'bids': {'in': 151951087.97195345, 'out': 151532247.41011462},\n", " 'asks': {'in': 132519401.90956484, 'out': 132358741.43001477}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.021722,\n", " 'depth': 60,\n", " 'bids': {'in': 152074042.97341454, 'out': 151617866.475504},\n", " 'asks': {'in': 132539313.35184984, 'out': 132375402.08493817}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.0220091,\n", " 'depth': 60,\n", " 'bids': {'in': 152194902.54202864, 'out': 151698406.8361651},\n", " 'asks': {'in': 133279238.12362725, 'out': 132420550.12862557}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.022305,\n", " 'depth': 60,\n", " 'bids': {'in': 152252791.55097044, 'out': 151753295.3899155},\n", " 'asks': {'in': 133423141.88158615, 'out': 133161679.41953117}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.0225978,\n", " 'depth': 60,\n", " 'bids': {'in': 152544853.46015525, 'out': 152147943.68419018},\n", " 'asks': {'in': 133639652.36161925, 'out': 133475751.64195687}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.0228941,\n", " 'depth': 60,\n", " 'bids': {'in': 152681048.46625984, 'out': 152236672.44053578},\n", " 'asks': {'in': 134466080.76054874, 'out': 133510344.20740896}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.023199,\n", " 'depth': 60,\n", " 'bids': {'in': 152710035.41759464, 'out': 152265984.407639},\n", " 'asks': {'in': 134495542.35274163, 'out': 134234089.74242026}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.023492,\n", " 'depth': 60,\n", " 'bids': {'in': 152847045.74612775, 'out': 152366984.7985967},\n", " 'asks': {'in': 135295687.46989784, 'out': 134377359.61497396}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.023788,\n", " 'depth': 60,\n", " 'bids': {'in': 153118861.80091676, 'out': 152639129.7605707},\n", " 'asks': {'in': 135500701.29651582, 'out': 134643602.77849966}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.024086,\n", " 'depth': 60,\n", " 'bids': {'in': 153415490.66000625, 'out': 153015591.4894092},\n", " 'asks': {'in': 135644605.25050563, 'out': 134816740.78340566}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.024377,\n", " 'depth': 60,\n", " 'bids': {'in': 153577452.95688957, 'out': 153084143.51760942},\n", " 'asks': {'in': 135971405.9714856, 'out': 135017258.10636967}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.0246599,\n", " 'depth': 60,\n", " 'bids': {'in': 153883031.02570897, 'out': 153342979.1119705},\n", " 'asks': {'in': 136171227.5515842, 'out': 135911857.81414598}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.024956,\n", " 'depth': 60,\n", " 'bids': {'in': 154206155.1533335, 'out': 153729603.89244372},\n", " 'asks': {'in': 136973201.38734522, 'out': 136079225.21838778}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.0252569,\n", " 'depth': 60,\n", " 'bids': {'in': 154484997.6249379, 'out': 154005812.5287213},\n", " 'asks': {'in': 137077790.21365213, 'out': 136843802.884603}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.0255518,\n", " 'depth': 60,\n", " 'bids': {'in': 154628957.6715833, 'out': 154131938.2754231},\n", " 'asks': {'in': 137782654.90064442, 'out': 136853891.5000474}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.025841,\n", " 'depth': 60,\n", " 'bids': {'in': 154695660.52084228, 'out': 154353661.2218045},\n", " 'asks': {'in': 137886721.29591373, 'out': 136957958.9832894}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.0261319,\n", " 'depth': 60,\n", " 'bids': {'in': 155040961.9865448, 'out': 154601491.4567143},\n", " 'asks': {'in': 138628478.25151694, 'out': 137062955.9225517}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.0264142,\n", " 'depth': 60,\n", " 'bids': {'in': 155341029.338247, 'out': 154873319.93500382},\n", " 'asks': {'in': 138739106.96365535, 'out': 137809693.2018874}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.0267,\n", " 'depth': 60,\n", " 'bids': {'in': 155403753.9748896, 'out': 154936044.41248822},\n", " 'asks': {'in': 138750961.87951365, 'out': 137820931.9877496}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.0269911,\n", " 'depth': 60,\n", " 'bids': {'in': 155591469.11675072, 'out': 155073741.37807083},\n", " 'asks': {'in': 138785554.47668225, 'out': 138550484.93849802}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.027282,\n", " 'depth': 60,\n", " 'bids': {'in': 155637961.7193655, 'out': 155120233.98039842},\n", " 'asks': {'in': 138814516.20995346, 'out': 138579446.74289733}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.027575,\n", " 'depth': 60,\n", " 'bids': {'in': 155716243.6267428, 'out': 155185545.86819452},\n", " 'asks': {'in': 140382962.57477465, 'out': 138746722.68773612}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.027893,\n", " 'depth': 60,\n", " 'bids': {'in': 155879041.9548357, 'out': 155428887.49142992},\n", " 'asks': {'in': 140691032.97400665, 'out': 139171452.06848633}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.0282052,\n", " 'depth': 60,\n", " 'bids': {'in': 156081316.1074672, 'out': 155727117.23826784},\n", " 'asks': {'in': 140877415.89738035, 'out': 139419921.77930292}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.028516,\n", " 'depth': 60,\n", " 'bids': {'in': 156580443.4279563, 'out': 156177089.97218123},\n", " 'asks': {'in': 141177762.95019406, 'out': 140357419.26837704}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.028824,\n", " 'depth': 60,\n", " 'bids': {'in': 156970967.3467358, 'out': 156546361.40225023},\n", " 'asks': {'in': 142135030.67461535, 'out': 140558955.62106544}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.0291169,\n", " 'depth': 60,\n", " 'bids': {'in': 157245256.0632851, 'out': 156820635.68470833},\n", " 'asks': {'in': 142147599.93705365, 'out': 141350849.87401515}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.0294132,\n", " 'depth': 60,\n", " 'bids': {'in': 157586329.25171322, 'out': 157036140.11469862},\n", " 'asks': {'in': 143006330.41196755, 'out': 141365766.40701947}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.029715,\n", " 'depth': 60,\n", " 'bids': {'in': 157972244.13187662, 'out': 157411909.88494563},\n", " 'asks': {'in': 143259468.40076494, 'out': 141654825.26837087}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.0300171,\n", " 'depth': 60,\n", " 'bids': {'in': 158143430.4916141, 'out': 157584563.48959354},\n", " 'asks': {'in': 143577142.46647134, 'out': 141870375.55690926}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.030317,\n", " 'depth': 60,\n", " 'bids': {'in': 158217150.9927588, 'out': 157766786.32288703},\n", " 'asks': {'in': 143629667.63238615, 'out': 141918005.30074736}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.0306208,\n", " 'depth': 60,\n", " 'bids': {'in': 158406511.23182312, 'out': 157881578.75401154},\n", " 'asks': {'in': 143960153.13969156, 'out': 142306437.19877076}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.0309272,\n", " 'depth': 60,\n", " 'bids': {'in': 158571363.52021483, 'out': 157975102.85517395},\n", " 'asks': {'in': 144216201.76233315, 'out': 142518129.68945056}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.031223,\n", " 'depth': 60,\n", " 'bids': {'in': 158636162.52363244, 'out': 158037827.66499475},\n", " 'asks': {'in': 144416041.47797334, 'out': 142719601.83248597}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.0315142,\n", " 'depth': 60,\n", " 'bids': {'in': 158716400.60031652, 'out': 158219106.80677834},\n", " 'asks': {'in': 144501026.75543693, 'out': 142807609.70503357}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.03181,\n", " 'depth': 60,\n", " 'bids': {'in': 158870108.64281783, 'out': 158276950.89716464},\n", " 'asks': {'in': 144534785.31545553, 'out': 142842829.92189366}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.032096,\n", " 'depth': 60,\n", " 'bids': {'in': 159049309.69719854, 'out': 158462645.68855703},\n", " 'asks': {'in': 144570005.62142864, 'out': 142886889.45785686}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.032385,\n", " 'depth': 60,\n", " 'bids': {'in': 159242369.28927585, 'out': 158596420.0136569},\n", " 'asks': {'in': 144598966.92386284, 'out': 142915861.62090465}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.032701,\n", " 'depth': 60,\n", " 'bids': {'in': 159650465.06134066, 'out': 159335471.67054832},\n", " 'asks': {'in': 144853631.86291313, 'out': 143170921.58570945}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.0330539,\n", " 'depth': 60,\n", " 'bids': {'in': 159966377.93216035, 'out': 159592294.98540992},\n", " 'asks': {'in': 145197879.17445055, 'out': 143606817.18688354}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.033362,\n", " 'depth': 60,\n", " 'bids': {'in': 160045952.32260716, 'out': 159691255.05383712},\n", " 'asks': {'in': 145527868.66863325, 'out': 143886901.58786184}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.0336661,\n", " 'depth': 60,\n", " 'bids': {'in': 160392458.60058996, 'out': 160023460.34669292},\n", " 'asks': {'in': 145581992.18577084, 'out': 144622018.39219624}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.033972,\n", " 'depth': 60,\n", " 'bids': {'in': 160552060.74468017, 'out': 160256405.59443483},\n", " 'asks': {'in': 146297504.69865483, 'out': 144660444.61030534}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.034276,\n", " 'depth': 60,\n", " 'bids': {'in': 160938887.97680697, 'out': 160672880.73671883},\n", " 'asks': {'in': 146332096.16409644, 'out': 145414578.77458674}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.034603,\n", " 'depth': 60,\n", " 'bids': {'in': 161343885.42407426, 'out': 161227294.22177023},\n", " 'asks': {'in': 147011169.35598233, 'out': 146753046.27194014}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.034949,\n", " 'depth': 60,\n", " 'bids': {'in': 161828834.91975686, 'out': 161464192.31298694},\n", " 'asks': {'in': 147640332.29791763, 'out': 147430406.27079135}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.035273,\n", " 'depth': 60,\n", " 'bids': {'in': 162270100.86207625, 'out': 161956132.99735445},\n", " 'asks': {'in': 147977682.94075534, 'out': 147804841.50498155}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.035584,\n", " 'depth': 60,\n", " 'bids': {'in': 162606390.03139827, 'out': 162267859.17388543},\n", " 'asks': {'in': 148076620.38619062, 'out': 147845716.77550504}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.035879,\n", " 'depth': 60,\n", " 'bids': {'in': 162686642.08227065, 'out': 162403305.90035525},\n", " 'asks': {'in': 148106315.24341413, 'out': 147938800.66988045}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.036196,\n", " 'depth': 60,\n", " 'bids': {'in': 163393463.47680825, 'out': 163104017.11307225},\n", " 'asks': {'in': 148397191.38567564, 'out': 148218364.11124274}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.036528,\n", " 'depth': 60,\n", " 'bids': {'in': 163914338.14412394, 'out': 163476787.52594915},\n", " 'asks': {'in': 148587391.66037163, 'out': 148414864.74107105}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.0368419,\n", " 'depth': 60,\n", " 'bids': {'in': 163980801.66155663, 'out': 163614753.82567716},\n", " 'asks': {'in': 148622033.39386183, 'out': 148449962.49989906}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.037142,\n", " 'depth': 60,\n", " 'bids': {'in': 164162275.81675792, 'out': 163801301.58600944},\n", " 'asks': {'in': 148798174.66405064, 'out': 148635570.29411295}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.037437,\n", " 'depth': 60,\n", " 'bids': {'in': 164256790.45556682, 'out': 163877114.67421034},\n", " 'asks': {'in': 148807851.21307483, 'out': 148645337.45901734}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.0377312,\n", " 'depth': 60,\n", " 'bids': {'in': 164332603.68204042, 'out': 164089954.55036473},\n", " 'asks': {'in': 148953724.06680593, 'out': 148794207.23438025}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.038025,\n", " 'depth': 60,\n", " 'bids': {'in': 164735455.2909831, 'out': 164374923.83921233},\n", " 'asks': {'in': 148959795.86893383, 'out': 148799477.53242636}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.038333,\n", " 'depth': 60,\n", " 'bids': {'in': 164866901.9503532, 'out': 164441812.01972812},\n", " 'asks': {'in': 149104972.6325302, 'out': 149024727.65616977}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.0386581,\n", " 'depth': 60,\n", " 'bids': {'in': 165316757.9156666, 'out': 164884917.62896112},\n", " 'asks': {'in': 150130680.83152252, 'out': 149407333.46392098}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.038987,\n", " 'depth': 60,\n", " 'bids': {'in': 165750391.6343475, 'out': 165269144.74246982},\n", " 'asks': {'in': 150409442.5284953, 'out': 149537855.90036857}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.039298,\n", " 'depth': 60,\n", " 'bids': {'in': 165819893.9399233, 'out': 165300804.5925238},\n", " 'asks': {'in': 151116739.5848039, 'out': 149567424.88257787}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.039594,\n", " 'depth': 60,\n", " 'bids': {'in': 166022567.1416272, 'out': 165478541.4069249},\n", " 'asks': {'in': 151248002.2962281, 'out': 150278104.07692558}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.039967,\n", " 'depth': 60,\n", " 'bids': {'in': 166761802.5966011, 'out': 166469114.7724412},\n", " 'asks': {'in': 152743816.8137438, 'out': 151515043.28809017}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.040361,\n", " 'depth': 60,\n", " 'bids': {'in': 167086750.3323765, 'out': 166777855.4303917},\n", " 'asks': {'in': 153122206.2252967, 'out': 151705346.92987368}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.040698,\n", " 'depth': 60,\n", " 'bids': {'in': 167340678.951267, 'out': 166870352.7027374},\n", " 'asks': {'in': 153375973.5243194, 'out': 152141390.32173768}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.0410292,\n", " 'depth': 60,\n", " 'bids': {'in': 167647992.1958175, 'out': 167296262.24497378},\n", " 'asks': {'in': 153879347.4515182, 'out': 152378168.58350617}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.041357,\n", " 'depth': 60,\n", " 'bids': {'in': 167741874.9602757, 'out': 167343795.8911979},\n", " 'asks': {'in': 154213513.9637453, 'out': 152692452.06249598}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.041674,\n", " 'depth': 60,\n", " 'bids': {'in': 167878722.5876637, 'out': 167426733.5404571},\n", " 'asks': {'in': 154455917.3382592, 'out': 152908017.17589107}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.0420291,\n", " 'depth': 60,\n", " 'bids': {'in': 168510230.51848462, 'out': 168565885.9319352},\n", " 'asks': {'in': 154874870.2824823, 'out': 154857473.81147116}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.042389,\n", " 'depth': 60,\n", " 'bids': {'in': 169109570.78105852, 'out': 168906564.7019822},\n", " 'asks': {'in': 155410284.4002632, 'out': 155183950.29444808}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.0428212,\n", " 'depth': 60,\n", " 'bids': {'in': 172040477.9069901, 'out': 170154986.3055665},\n", " 'asks': {'in': 156730215.9097285, 'out': 156560817.5335509}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.043274,\n", " 'depth': 60,\n", " 'bids': {'in': 172892340.15935442, 'out': 170866516.932531},\n", " 'asks': {'in': 157693892.1262238, 'out': 157613630.48951077}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.043663,\n", " 'depth': 60,\n", " 'bids': {'in': 173307105.3560661, 'out': 171238944.4009883},\n", " 'asks': {'in': 158166489.3790332, 'out': 157792659.53716996}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.0440068,\n", " 'depth': 60,\n", " 'bids': {'in': 173597200.5371085, 'out': 171616525.71597522},\n", " 'asks': {'in': 158423290.2205581, 'out': 158058314.12520757}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.044342,\n", " 'depth': 60,\n", " 'bids': {'in': 174035463.30954012, 'out': 171857680.37825593},\n", " 'asks': {'in': 158503430.9939442, 'out': 158223823.99931806}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.044665,\n", " 'depth': 60,\n", " 'bids': {'in': 174121960.71116003, 'out': 171978970.83702412},\n", " 'asks': {'in': 158680025.2030472, 'out': 158418322.35129446}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.0450351,\n", " 'depth': 60,\n", " 'bids': {'in': 174946874.12950805, 'out': 172864905.47866103},\n", " 'asks': {'in': 159600552.14643738, 'out': 159378787.80445975}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.0454311,\n", " 'depth': 60,\n", " 'bids': {'in': 175422643.03659764, 'out': 173318014.52082354},\n", " 'asks': {'in': 160087083.68492138, 'out': 159768121.14600974}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.045782,\n", " 'depth': 60,\n", " 'bids': {'in': 175877653.46265525, 'out': 173719139.61188814},\n", " 'asks': {'in': 160599218.978954, 'out': 160096078.32563776}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.0461068,\n", " 'depth': 60,\n", " 'bids': {'in': 175951910.18922785, 'out': 173794376.50544053},\n", " 'asks': {'in': 160717960.6181981, 'out': 160224511.88264894}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.046417,\n", " 'depth': 60,\n", " 'bids': {'in': 175988432.06157663, 'out': 173830447.29115933},\n", " 'asks': {'in': 160737839.3487491, 'out': 160349132.92295265}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.046722,\n", " 'depth': 60,\n", " 'bids': {'in': 176020600.98824614, 'out': 173862155.46080774},\n", " 'asks': {'in': 160768425.4012823, 'out': 160392249.09092686}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.0470212,\n", " 'depth': 60,\n", " 'bids': {'in': 176052319.09210035, 'out': 173906746.34103355},\n", " 'asks': {'in': 160794601.8040494, 'out': 160419511.69690555}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.047321,\n", " 'depth': 60,\n", " 'bids': {'in': 176081737.81367546, 'out': 173936490.14177194},\n", " 'asks': {'in': 160805554.0782345, 'out': 160478812.04416576}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.047621,\n", " 'depth': 60,\n", " 'bids': {'in': 176224553.15486336, 'out': 174001022.38008675},\n", " 'asks': {'in': 160821367.1389103, 'out': 160483768.97130257}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.047922,\n", " 'depth': 60,\n", " 'bids': {'in': 176253863.58619174, 'out': 174047755.20258346},\n", " 'asks': {'in': 160826324.0248847, 'out': 160488737.04585046}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.048214,\n", " 'depth': 60,\n", " 'bids': {'in': 176284902.78871486, 'out': 174077150.28061646},\n", " 'asks': {'in': 160838870.6054175, 'out': 160494139.88490716}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.048504,\n", " 'depth': 60,\n", " 'bids': {'in': 176290759.40615085, 'out': 174086689.13457507},\n", " 'asks': {'in': 160886443.19565248, 'out': 160506686.46543995}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.048801,\n", " 'depth': 60,\n", " 'bids': {'in': 176316811.28834245, 'out': 174309187.42163798},\n", " 'asks': {'in': 160901156.0900541, 'out': 160514062.42135555}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.049098,\n", " 'depth': 60,\n", " 'bids': {'in': 176427400.31561905, 'out': 174348803.07369348},\n", " 'asks': {'in': 160921516.0234777, 'out': 160518367.91669634}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.0493891,\n", " 'depth': 60,\n", " 'bids': {'in': 176583633.16009995, 'out': 174492580.5417106},\n", " 'asks': {'in': 160926471.9855849, 'out': 160523323.89709795}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.049686,\n", " 'depth': 60,\n", " 'bids': {'in': 176601786.48200446, 'out': 174526331.4817207},\n", " 'asks': {'in': 160936248.4317856, 'out': 160549139.70835024}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.0499861,\n", " 'depth': 60,\n", " 'bids': {'in': 176708266.62318966, 'out': 174612840.81515718},\n", " 'asks': {'in': 160992086.8455308, 'out': 160583501.84449494}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.050344,\n", " 'depth': 60,\n", " 'bids': {'in': 177505458.55536157, 'out': 175209789.3311048},\n", " 'asks': {'in': 161481706.7120814, 'out': 161259529.47244945}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.0507069,\n", " 'depth': 60,\n", " 'bids': {'in': 177858553.80255038, 'out': 175638296.28013217},\n", " 'asks': {'in': 161647382.9114426, 'out': 161451381.43848395}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.051028,\n", " 'depth': 60,\n", " 'bids': {'in': 178055526.85648838, 'out': 175856843.96148247},\n", " 'asks': {'in': 161709161.7565073, 'out': 161571976.78777397}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.051348,\n", " 'depth': 60,\n", " 'bids': {'in': 178125011.06106278, 'out': 175899288.01557186},\n", " 'asks': {'in': 161959645.2715958, 'out': 161821822.47002116}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.051659,\n", " 'depth': 60,\n", " 'bids': {'in': 178178144.7597023, 'out': 175952422.31783336},\n", " 'asks': {'in': 161992882.80896622, 'out': 161855108.26979756}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.0519638,\n", " 'depth': 60,\n", " 'bids': {'in': 178216807.3692866, 'out': 176024326.90197468},\n", " 'asks': {'in': 162060236.61003453, 'out': 161921974.83604497}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.0522728,\n", " 'depth': 60,\n", " 'bids': {'in': 178470891.1485684, 'out': 176222869.92232338},\n", " 'asks': {'in': 162085480.92085013, 'out': 162028740.66957328}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.0525792,\n", " 'depth': 60,\n", " 'bids': {'in': 178633248.2135013, 'out': 176568747.03904897},\n", " 'asks': {'in': 162246305.84889933, 'out': 162045833.1371061}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.052889,\n", " 'depth': 60,\n", " 'bids': {'in': 178868772.3392027, 'out': 176706138.91359296},\n", " 'asks': {'in': 162379754.45425412, 'out': 162224009.6144853}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.053199,\n", " 'depth': 60,\n", " 'bids': {'in': 178952611.1698973, 'out': 176774195.48083687},\n", " 'asks': {'in': 162395763.6904917, 'out': 162240018.9710181}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.053511,\n", " 'depth': 60,\n", " 'bids': {'in': 179049642.5908633, 'out': 176887953.14519876},\n", " 'asks': {'in': 162429055.3236747, 'out': 162273311.2069477}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.053835,\n", " 'depth': 60,\n", " 'bids': {'in': 179602383.44693708, 'out': 177293802.85661715},\n", " 'asks': {'in': 162489294.5868195, 'out': 162519470.74075583}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.0541608,\n", " 'depth': 60,\n", " 'bids': {'in': 179799797.1835489, 'out': 177483634.61528876},\n", " 'asks': {'in': 162677921.7052917, 'out': 162625353.94764793}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.054476,\n", " 'depth': 60,\n", " 'bids': {'in': 179875697.577763, 'out': 177574165.51640266},\n", " 'asks': {'in': 162911513.6463351, 'out': 162839929.91234183}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.054788,\n", " 'depth': 60,\n", " 'bids': {'in': 180114401.1566229, 'out': 177644697.07217816},\n", " 'asks': {'in': 163111795.07281348, 'out': 163056218.99185383}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.0551,\n", " 'depth': 60,\n", " 'bids': {'in': 180157207.1526368, 'out': 177762860.79478824},\n", " 'asks': {'in': 163116751.0595415, 'out': 163061174.94199142}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.055402,\n", " 'depth': 60,\n", " 'bids': {'in': 180309159.7086644, 'out': 177846928.62591743},\n", " 'asks': {'in': 163138555.7627253, 'out': 163066630.89414182}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.055716,\n", " 'depth': 60,\n", " 'bids': {'in': 180386786.368868, 'out': 178026849.31847852},\n", " 'asks': {'in': 163151101.5633597, 'out': 163087595.88239062}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.056022,\n", " 'depth': 60,\n", " 'bids': {'in': 180462688.1841323, 'out': 178102743.41988212},\n", " 'asks': {'in': 163321927.0432899, 'out': 163258418.5870276}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.056329,\n", " 'depth': 60,\n", " 'bids': {'in': 180519016.0447938, 'out': 178154647.9217854},\n", " 'asks': {'in': 163428690.2411811, 'out': 163365947.50758442}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.0566568,\n", " 'depth': 60,\n", " 'bids': {'in': 180584039.53652743, 'out': 178176194.31853732},\n", " 'asks': {'in': 163470359.1806143, 'out': 163399179.1622838}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.056962,\n", " 'depth': 60,\n", " 'bids': {'in': 180723605.74143943, 'out': 178286800.31066394},\n", " 'asks': {'in': 163585066.2394613, 'out': 163501669.7507166}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.0572648,\n", " 'depth': 60,\n", " 'bids': {'in': 180742097.21892494, 'out': 178441217.01563975},\n", " 'asks': {'in': 163687564.1984423, 'out': 163732652.8814976}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.05757,\n", " 'depth': 60,\n", " 'bids': {'in': 180934152.00918674, 'out': 178588472.66613016},\n", " 'asks': {'in': 163844463.22642872, 'out': 163778198.49688268}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.057885,\n", " 'depth': 60,\n", " 'bids': {'in': 180998307.26043114, 'out': 178771903.85269326},\n", " 'asks': {'in': 163954662.59740102, 'out': 163836427.35971758}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.058198,\n", " 'depth': 60,\n", " 'bids': {'in': 181129837.95609194, 'out': 178849343.30755666},\n", " 'asks': {'in': 163964453.65318003, 'out': 163844050.438956}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.058508,\n", " 'depth': 60,\n", " 'bids': {'in': 181317920.45008153, 'out': 178955694.33973145},\n", " 'asks': {'in': 163969408.86693582, 'out': 163849258.028647}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.058812,\n", " 'depth': 60,\n", " 'bids': {'in': 181381102.27770084, 'out': 179021284.22720027},\n", " 'asks': {'in': 163998366.5029852, 'out': 163878215.61510882}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.059117,\n", " 'depth': 60,\n", " 'bids': {'in': 181444967.41116375, 'out': 179084141.17521957},\n", " 'asks': {'in': 164201399.4886966, 'out': 164079073.65538162}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.059422,\n", " 'depth': 60,\n", " 'bids': {'in': 181518386.79597226, 'out': 179147506.26225787},\n", " 'asks': {'in': 164206354.665862, 'out': 164085537.40357673}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.0597382,\n", " 'depth': 60,\n", " 'bids': {'in': 181594010.71464217, 'out': 179223286.1996399},\n", " 'asks': {'in': 164246365.8183773, 'out': 164132326.24384773}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.06005,\n", " 'depth': 60,\n", " 'bids': {'in': 181799743.27155387, 'out': 179469769.81122598},\n", " 'asks': {'in': 164276831.1955404, 'out': 164161284.00826302}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.060375,\n", " 'depth': 60,\n", " 'bids': {'in': 182132599.04322946, 'out': 179746925.79889977},\n", " 'asks': {'in': 164306288.7205162, 'out': 164194001.8116286}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.060684,\n", " 'depth': 60,\n", " 'bids': {'in': 182182875.10134137, 'out': 179797195.19051158},\n", " 'asks': {'in': 164322797.1281656, 'out': 164210510.3176684}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.060989,\n", " 'depth': 60,\n", " 'bids': {'in': 182263849.70678335, 'out': 179878828.97452828},\n", " 'asks': {'in': 164498569.3401282, 'out': 164386288.2452088}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.061294,\n", " 'depth': 60,\n", " 'bids': {'in': 182303367.29218286, 'out': 179976759.6544501},\n", " 'asks': {'in': 164674347.235652, 'out': 164562060.4571714}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.061607,\n", " 'depth': 60,\n", " 'bids': {'in': 182426585.58871666, 'out': 180167390.81297758},\n", " 'asks': {'in': 164746043.0521766, 'out': 164567515.5467042}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.0619252,\n", " 'depth': 60,\n", " 'bids': {'in': 182631465.50485775, 'out': 180335071.90990278},\n", " 'asks': {'in': 165186760.8673684, 'out': 165071327.060045}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.06224,\n", " 'depth': 60,\n", " 'bids': {'in': 182670202.20931694, 'out': 180372725.51845378},\n", " 'asks': {'in': 165199577.7538175, 'out': 165084630.6366836}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.0625489,\n", " 'depth': 60,\n", " 'bids': {'in': 182728386.01613775, 'out': 180483667.69372657},\n", " 'asks': {'in': 165238383.529846, 'out': 165115088.483137}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.062861,\n", " 'depth': 60,\n", " 'bids': {'in': 182806721.39449716, 'out': 180561035.99622816},\n", " 'asks': {'in': 165314079.3727459, 'out': 165148381.8433735}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.063169,\n", " 'depth': 60,\n", " 'bids': {'in': 182845240.52394167, 'out': 180597599.21155396},\n", " 'asks': {'in': 165513859.8393527, 'out': 165390558.85849681}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.063477,\n", " 'depth': 60,\n", " 'bids': {'in': 182943438.95014825, 'out': 180663703.33733997},\n", " 'asks': {'in': 165756289.3710684, 'out': 165590339.3251036}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.063783,\n", " 'depth': 60,\n", " 'bids': {'in': 183006296.24667805, 'out': 180726560.67734686},\n", " 'asks': {'in': 165785246.86187878, 'out': 165619296.88695592}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.064086,\n", " 'depth': 60,\n", " 'bids': {'in': 183070212.79713544, 'out': 180790476.74700105},\n", " 'asks': {'in': 165814204.42830497, 'out': 165690656.95976633}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.06439,\n", " 'depth': 60,\n", " 'bids': {'in': 183133070.27708304, 'out': 180853334.53853485},\n", " 'asks': {'in': 165885564.23982477, 'out': 165719614.52619252}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.064694,\n", " 'depth': 60,\n", " 'bids': {'in': 183206938.85255653, 'out': 180923201.76382715},\n", " 'asks': {'in': 166085344.24430248, 'out': 165919388.78593573}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.0650089,\n", " 'depth': 60,\n", " 'bids': {'in': 183303228.78507653, 'out': 180987576.95099834},\n", " 'asks': {'in': 166285116.17815638, 'out': 166119168.79041344}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.065314,\n", " 'depth': 60,\n", " 'bids': {'in': 183372346.08357972, 'out': 181051385.59881714},\n", " 'asks': {'in': 166375358.97726837, 'out': 166185825.96737745}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.065613,\n", " 'depth': 60,\n", " 'bids': {'in': 183435528.50444922, 'out': 181117385.75982434},\n", " 'asks': {'in': 166446718.80108356, 'out': 166215866.66181755}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.065918,\n", " 'depth': 60,\n", " 'bids': {'in': 183474914.69582322, 'out': 181156772.16501543},\n", " 'asks': {'in': 166451674.06371775, 'out': 166220823.79342476}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.066221,\n", " 'depth': 60,\n", " 'bids': {'in': 183513782.86491492, 'out': 181203215.33562803},\n", " 'asks': {'in': 166498618.97116116, 'out': 166338641.27304295}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.066529,\n", " 'depth': 60,\n", " 'bids': {'in': 183703230.78215092, 'out': 181373091.54203144},\n", " 'asks': {'in': 166535924.61702356, 'out': 166499454.16338995}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.0668569,\n", " 'depth': 60,\n", " 'bids': {'in': 184079692.5303313, 'out': 181740168.99242374},\n", " 'asks': {'in': 166774294.35274285, 'out': 166586264.94457564}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.067202,\n", " 'depth': 60,\n", " 'bids': {'in': 184214080.25076512, 'out': 181815614.32430133},\n", " 'asks': {'in': 166916596.32250586, 'out': 166804431.36175135}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.067564,\n", " 'depth': 60,\n", " 'bids': {'in': 184492246.83252412, 'out': 182093898.50211513},\n", " 'asks': {'in': 167230146.50424075, 'out': 167062189.80591345}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.0679,\n", " 'depth': 60,\n", " 'bids': {'in': 184573603.31337973, 'out': 182156853.66560403},\n", " 'asks': {'in': 167350463.91436094, 'out': 167223669.25360605}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.068226,\n", " 'depth': 60,\n", " 'bids': {'in': 184786250.88917783, 'out': 182318540.4171633},\n", " 'asks': {'in': 167444222.42388085, 'out': 167257377.96523535}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.068544,\n", " 'depth': 60,\n", " 'bids': {'in': 184826237.29659662, 'out': 182358519.946601},\n", " 'asks': {'in': 167520462.35388684, 'out': 167301647.29938716}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.068863,\n", " 'depth': 60,\n", " 'bids': {'in': 184860885.17633963, 'out': 182502888.778928},\n", " 'asks': {'in': 167531253.26465124, 'out': 167385942.77182245}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.069175,\n", " 'depth': 60,\n", " 'bids': {'in': 184865883.67072484, 'out': 182508536.93934003},\n", " 'asks': {'in': 167536708.60561582, 'out': 167391940.12784946}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.069482,\n", " 'depth': 60,\n", " 'bids': {'in': 184898013.84567603, 'out': 182537776.91210422},\n", " 'asks': {'in': 167577761.2229649, 'out': 167474853.22576424}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.069796,\n", " 'depth': 60,\n", " 'bids': {'in': 184939069.01424444, 'out': 182581649.44274092},\n", " 'asks': {'in': 167677490.37564832, 'out': 167505017.60665554}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.070113,\n", " 'depth': 60,\n", " 'bids': {'in': 185001794.81930295, 'out': 182644375.08915251},\n", " 'asks': {'in': 167708612.85353103, 'out': 167535742.46557724}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.0704489,\n", " 'depth': 60,\n", " 'bids': {'in': 185353861.25927255, 'out': 183074087.8728856},\n", " 'asks': {'in': 167844453.51821804, 'out': 167684099.10189614}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.0708869,\n", " 'depth': 60,\n", " 'bids': {'in': 186700369.35386124, 'out': 184800961.1415328},\n", " 'asks': {'in': 168762461.50185615, 'out': 168853068.63312775}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.071403,\n", " 'depth': 60,\n", " 'bids': {'in': 188157531.25784034, 'out': 186133662.41030732},\n", " 'asks': {'in': 169612620.14800486, 'out': 169567366.32036376}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.071863,\n", " 'depth': 60,\n", " 'bids': {'in': 189118724.48047164, 'out': 187063668.3936136},\n", " 'asks': {'in': 170709879.78011426, 'out': 170128192.90220416}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.072246,\n", " 'depth': 60,\n", " 'bids': {'in': 189560169.20156935, 'out': 187417960.028744},\n", " 'asks': {'in': 171267055.99927238, 'out': 171020660.52183837}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.072595,\n", " 'depth': 60,\n", " 'bids': {'in': 189758633.57567695, 'out': 187482086.23941642},\n", " 'asks': {'in': 171538214.89053, 'out': 171257410.30254787}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.072937,\n", " 'depth': 60,\n", " 'bids': {'in': 189942760.92309776, 'out': 187674851.83846954},\n", " 'asks': {'in': 171596730.3567504, 'out': 171323025.64347357}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.073272,\n", " 'depth': 60,\n", " 'bids': {'in': 190116291.20024967, 'out': 187736514.06015962},\n", " 'asks': {'in': 171632189.9830678, 'out': 171358029.84733838}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.073588,\n", " 'depth': 60,\n", " 'bids': {'in': 190212125.31201708, 'out': 187823911.33759862},\n", " 'asks': {'in': 171662727.5173903, 'out': 171386088.16075197}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.073901,\n", " 'depth': 60,\n", " 'bids': {'in': 190255797.92773628, 'out': 187867583.77375382},\n", " 'asks': {'in': 171691684.140717, 'out': 171422161.61977306}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.074226,\n", " 'depth': 60,\n", " 'bids': {'in': 190643164.91311347, 'out': 188260331.3474664},\n", " 'asks': {'in': 171731048.5078425, 'out': 171452302.31510255}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.0745542,\n", " 'depth': 60,\n", " 'bids': {'in': 190765153.5857418, 'out': 188401956.9228611},\n", " 'asks': {'in': 171774051.18299922, 'out': 171487382.66721424}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.074881,\n", " 'depth': 60,\n", " 'bids': {'in': 190911318.8114431, 'out': 188490823.5912533},\n", " 'asks': {'in': 171844651.47835323, 'out': 171601911.86301234}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.075205,\n", " 'depth': 60,\n", " 'bids': {'in': 190948162.6884232, 'out': 188510494.90102282},\n", " 'asks': {'in': 171852107.74422184, 'out': 171607955.31319416}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.075518,\n", " 'depth': 60,\n", " 'bids': {'in': 190966342.8003243, 'out': 188528675.02342263},\n", " 'asks': {'in': 171857142.75051445, 'out': 171613589.30192775}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.075835,\n", " 'depth': 60,\n", " 'bids': {'in': 191042578.02993768, 'out': 188663647.93306082},\n", " 'asks': {'in': 171893205.02136344, 'out': 171687556.76396933}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.07616,\n", " 'depth': 60,\n", " 'bids': {'in': 191191175.9828325, 'out': 188751827.5146323},\n", " 'asks': {'in': 171986040.28307775, 'out': 171727376.17454922}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.0764852,\n", " 'depth': 60,\n", " 'bids': {'in': 191275946.256657, 'out': 188887449.14335743},\n", " 'asks': {'in': 172018111.47190425, 'out': 171812776.71307883}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.07681,\n", " 'depth': 60,\n", " 'bids': {'in': 191603505.845489, 'out': 189499215.17466363},\n", " 'asks': {'in': 172048568.11454046, 'out': 171847632.83730093}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.077135,\n", " 'depth': 60,\n", " 'bids': {'in': 191693624.3142358, 'out': 189606124.67564005},\n", " 'asks': {'in': 172205986.90718946, 'out': 171999991.54004693}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.077465,\n", " 'depth': 60,\n", " 'bids': {'in': 192091382.7577107, 'out': 189867676.53248414},\n", " 'asks': {'in': 172329798.32276747, 'out': 172175869.49440733}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.077806,\n", " 'depth': 60,\n", " 'bids': {'in': 192397876.0620469, 'out': 190170888.79463384},\n", " 'asks': {'in': 172371328.76281017, 'out': 172226452.18969402}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.0781372,\n", " 'depth': 60,\n", " 'bids': {'in': 192678569.2959394, 'out': 190517644.95337963},\n", " 'asks': {'in': 172681399.01585937, 'out': 172654009.263031}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.0784729,\n", " 'depth': 60,\n", " 'bids': {'in': 193373477.5348045, 'out': 190933965.44997242},\n", " 'asks': {'in': 172920493.51348555, 'out': 172734249.82513142}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.078803,\n", " 'depth': 60,\n", " 'bids': {'in': 193496326.2380654, 'out': 191094516.474512},\n", " 'asks': {'in': 172980292.62107575, 'out': 172809794.09207073}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.0791261,\n", " 'depth': 60,\n", " 'bids': {'in': 193893019.3971371, 'out': 191616964.5036674},\n", " 'asks': {'in': 173011070.74014884, 'out': 172840232.30737624}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.079442,\n", " 'depth': 60,\n", " 'bids': {'in': 193931698.3188539, 'out': 191635143.80118752},\n", " 'asks': {'in': 173059418.43397525, 'out': 172888508.26962954}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.0797598,\n", " 'depth': 60,\n", " 'bids': {'in': 193960689.1707189, 'out': 191664134.89837262},\n", " 'asks': {'in': 173264733.96550164, 'out': 173092203.60511294}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.080072,\n", " 'depth': 60,\n", " 'bids': {'in': 194303071.0501784, 'out': 191824272.31125072},\n", " 'asks': {'in': 173293691.68284684, 'out': 173122787.13262913}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.080395,\n", " 'depth': 60,\n", " 'bids': {'in': 194415073.6804995, 'out': 192170584.96739933},\n", " 'asks': {'in': 173349824.97570315, 'out': 173212149.91282612}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.080747,\n", " 'depth': 60,\n", " 'bids': {'in': 194746446.1874283, 'out': 192496219.81535232},\n", " 'asks': {'in': 173547320.63734335, 'out': 173564430.08429962}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.08109,\n", " 'depth': 60,\n", " 'bids': {'in': 195183227.3080461, 'out': 192974108.12930053},\n", " 'asks': {'in': 174590218.76143324, 'out': 173969918.36228532}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.08142,\n", " 'depth': 60,\n", " 'bids': {'in': 195345528.6271961, 'out': 193129922.46304724},\n", " 'asks': {'in': 174658857.99603593, 'out': 174695051.7605285}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.0817459,\n", " 'depth': 60,\n", " 'bids': {'in': 195532322.61168352, 'out': 193458928.38410804},\n", " 'asks': {'in': 174819135.11964443, 'out': 175029040.42060772}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.082071,\n", " 'depth': 60,\n", " 'bids': {'in': 195773811.96769062, 'out': 193573604.68085542},\n", " 'asks': {'in': 174971663.40549713, 'out': 175039439.7326073}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.082388,\n", " 'depth': 60,\n", " 'bids': {'in': 196034001.99410212, 'out': 193599323.7158552},\n", " 'asks': {'in': 175042565.84482533, 'out': 175085878.1377603}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.082701,\n", " 'depth': 60,\n", " 'bids': {'in': 196041375.12683132, 'out': 193606486.02559772},\n", " 'asks': {'in': 175056360.51681063, 'out': 175093540.82938153}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.083025,\n", " 'depth': 60,\n", " 'bids': {'in': 196116810.64862442, 'out': 193864163.45941913},\n", " 'asks': {'in': 175138679.78109774, 'out': 175140085.33776703}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.083358,\n", " 'depth': 60,\n", " 'bids': {'in': 196483584.0690036, 'out': 194048694.80943164},\n", " 'asks': {'in': 175282161.53903443, 'out': 175312250.65331754}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.0836842,\n", " 'depth': 60,\n", " 'bids': {'in': 196546422.679679, 'out': 194113033.18202356},\n", " 'asks': {'in': 175291575.36928523, 'out': 175321664.60368383}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.08401,\n", " 'depth': 60,\n", " 'bids': {'in': 196662080.1312116, 'out': 194192447.48043627},\n", " 'asks': {'in': 175527499.46628603, 'out': 175536901.55405182}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.084343,\n", " 'depth': 60,\n", " 'bids': {'in': 196736014.29422972, 'out': 194266381.54936436},\n", " 'asks': {'in': 175571965.42363864, 'out': 175582994.3824253}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.084675,\n", " 'depth': 60,\n", " 'bids': {'in': 196801935.16524953, 'out': 194330153.57435974},\n", " 'asks': {'in': 175596315.51519495, 'out': 175730210.7999259}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.085008,\n", " 'depth': 60,\n", " 'bids': {'in': 196929646.91408342, 'out': 194394382.74812374},\n", " 'asks': {'in': 175797753.78914297, 'out': 175767511.79890698}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.08533,\n", " 'depth': 60,\n", " 'bids': {'in': 196992375.76879543, 'out': 194466640.06793204},\n", " 'asks': {'in': 175806772.38449886, 'out': 175840168.8747871}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.085655,\n", " 'depth': 60,\n", " 'bids': {'in': 197094518.13758063, 'out': 194599636.52499655},\n", " 'asks': {'in': 175822779.12712845, 'out': 175862679.4342671}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.086001,\n", " 'depth': 60,\n", " 'bids': {'in': 197492122.80353463, 'out': 195095175.28890085},\n", " 'asks': {'in': 176184314.28811646, 'out': 176107419.5455654}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.0863528,\n", " 'depth': 60,\n", " 'bids': {'in': 197712433.15580404, 'out': 195306013.51453754},\n", " 'asks': {'in': 176541756.64857027, 'out': 176472694.9171746}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.086693,\n", " 'depth': 60,\n", " 'bids': {'in': 198104294.85452023, 'out': 195726660.08112144},\n", " 'asks': {'in': 176744512.46984786, 'out': 176730417.11590362}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.08703,\n", " 'depth': 60,\n", " 'bids': {'in': 198255916.99796483, 'out': 195864185.21229655},\n", " 'asks': {'in': 176758997.45760256, 'out': 176794918.6807031}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.087363,\n", " 'depth': 60,\n", " 'bids': {'in': 198649244.43395624, 'out': 196429403.48040396},\n", " 'asks': {'in': 176847831.87179407, 'out': 176834914.9049067}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.0877042,\n", " 'depth': 60,\n", " 'bids': {'in': 199007337.79546764, 'out': 196605242.22587526},\n", " 'asks': {'in': 177141012.34477347, 'out': 177190007.26477548}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.088046,\n", " 'depth': 60,\n", " 'bids': {'in': 199251485.52466995, 'out': 196778906.88035366},\n", " 'asks': {'in': 177216586.86368778, 'out': 177290150.52741098}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.088376,\n", " 'depth': 60,\n", " 'bids': {'in': 199299924.73760563, 'out': 196880158.67656377},\n", " 'asks': {'in': 177283810.13302067, 'out': 177343066.32365128}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.088704,\n", " 'depth': 60,\n", " 'bids': {'in': 199320599.17253262, 'out': 196900832.35508728},\n", " 'asks': {'in': 177591942.57805017, 'out': 177605770.61342597}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.089029,\n", " 'depth': 60,\n", " 'bids': {'in': 199402256.5987381, 'out': 196905829.7988633},\n", " 'asks': {'in': 177637949.70130417, 'out': 177643813.30126676}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.089358,\n", " 'depth': 60,\n", " 'bids': {'in': 199632589.3983196, 'out': 197168261.67767859},\n", " 'asks': {'in': 177655644.92557138, 'out': 177659862.21248096}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.089689,\n", " 'depth': 60,\n", " 'bids': {'in': 199685983.444773, 'out': 197208458.7921981},\n", " 'asks': {'in': 177695779.86188728, 'out': 177763245.43092197}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.090011,\n", " 'depth': 60,\n", " 'bids': {'in': 199704179.342825, 'out': 197227864.5745048},\n", " 'asks': {'in': 177700736.36032528, 'out': 177768201.92021036}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.090338,\n", " 'depth': 60,\n", " 'bids': {'in': 199787813.64929968, 'out': 197379944.21717},\n", " 'asks': {'in': 177935312.41289818, 'out': 177983432.31905147}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.09067,\n", " 'depth': 60,\n", " 'bids': {'in': 200129215.39016607, 'out': 197641047.5535063},\n", " 'asks': {'in': 178115479.1619883, 'out': 178163604.89477357}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.091,\n", " 'depth': 60,\n", " 'bids': {'in': 200289912.83787316, 'out': 197800530.1466287},\n", " 'asks': {'in': 178152613.3930466, 'out': 178207244.92227608}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.091331,\n", " 'depth': 60,\n", " 'bids': {'in': 200365996.36619845, 'out': 197876612.9652327},\n", " 'asks': {'in': 178186028.93371108, 'out': 178248247.92339018}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.091669,\n", " 'depth': 60,\n", " 'bids': {'in': 200456316.88139457, 'out': 198092585.9019273},\n", " 'asks': {'in': 178228516.48184907, 'out': 178424578.40833977}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.092001,\n", " 'depth': 60,\n", " 'bids': {'in': 200672819.66271397, 'out': 198448949.4764422},\n", " 'asks': {'in': 178372713.37210897, 'out': 178474949.12319118}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.09234,\n", " 'depth': 60,\n", " 'bids': {'in': 200765886.20494148, 'out': 198503362.15822068},\n", " 'asks': {'in': 178599087.42119887, 'out': 178699266.19535357}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.092675,\n", " 'depth': 60,\n", " 'bids': {'in': 200788842.94303927, 'out': 198525236.2267728},\n", " 'asks': {'in': 178628800.05681866, 'out': 178736566.82888797}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.09303,\n", " 'depth': 60,\n", " 'bids': {'in': 200807268.32515076, 'out': 198641075.51140988},\n", " 'asks': {'in': 178851606.18181565, 'out': 178951790.85015827}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.0933602,\n", " 'depth': 60,\n", " 'bids': {'in': 200972208.64776754, 'out': 198794559.49231747},\n", " 'asks': {'in': 178862999.66807574, 'out': 178970771.64503118}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.093688,\n", " 'depth': 60,\n", " 'bids': {'in': 201279349.37308615, 'out': 198846507.80647656},\n", " 'asks': {'in': 178904002.25566533, 'out': 179004186.950806}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.094018,\n", " 'depth': 60,\n", " 'bids': {'in': 201332849.78858846, 'out': 198886199.48420876},\n", " 'asks': {'in': 179126115.42764413, 'out': 179186333.2797522}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.0943491,\n", " 'depth': 60,\n", " 'bids': {'in': 201379800.73829767, 'out': 199188342.83600506},\n", " 'asks': {'in': 179132552.42182744, 'out': 179191290.997035}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.0946748,\n", " 'depth': 60,\n", " 'bids': {'in': 201690184.08789548, 'out': 199243858.42507356},\n", " 'asks': {'in': 179137508.90196624, 'out': 179197247.468001}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.094999,\n", " 'depth': 60,\n", " 'bids': {'in': 201748267.53458488, 'out': 199557490.57925695},\n", " 'asks': {'in': 179146423.04099575, 'out': 179206161.6417301}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.095329,\n", " 'depth': 60,\n", " 'bids': {'in': 201819834.86190668, 'out': 199618889.23842725},\n", " 'asks': {'in': 179161259.08459085, 'out': 179222663.1857596}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.095665,\n", " 'depth': 60,\n", " 'bids': {'in': 201886392.67889577, 'out': 199708214.80203554},\n", " 'asks': {'in': 179381427.54665014, 'out': 179429321.7286335}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.095995,\n", " 'depth': 60,\n", " 'bids': {'in': 201919060.23097026, 'out': 199751024.84752765},\n", " 'asks': {'in': 179414842.47660413, 'out': 179506254.7509955}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.096321,\n", " 'depth': 60,\n", " 'bids': {'in': 201983632.95423317, 'out': 199905363.15302736},\n", " 'asks': {'in': 179460578.37869123, 'out': 179668312.3143735}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.096661,\n", " 'depth': 60,\n", " 'bids': {'in': 202402340.88844106, 'out': 200229114.79703546},\n", " 'asks': {'in': 179627271.24020514, 'out': 179732316.94009578}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.0969942,\n", " 'depth': 60,\n", " 'bids': {'in': 202674229.27164686, 'out': 200501020.01684096},\n", " 'asks': {'in': 179655162.29671815, 'out': 179744710.20916787}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.097339,\n", " 'depth': 60,\n", " 'bids': {'in': 203283400.62107575, 'out': 200924397.41833416},\n", " 'asks': {'in': 179774805.31872985, 'out': 179809856.99204937}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.097687,\n", " 'depth': 60,\n", " 'bids': {'in': 203665411.89372584, 'out': 201338335.94581026},\n", " 'asks': {'in': 179809971.26049146, 'out': 179821515.85179436}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.0980248,\n", " 'depth': 60,\n", " 'bids': {'in': 203815096.29691365, 'out': 201531245.87139967},\n", " 'asks': {'in': 179920434.53008765, 'out': 179854704.18300638}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.098358,\n", " 'depth': 60,\n", " 'bids': {'in': 203891036.64583814, 'out': 201607186.24381626},\n", " 'asks': {'in': 179980169.51110765, 'out': 179887618.56279936}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.098687,\n", " 'depth': 60,\n", " 'bids': {'in': 204150719.44753695, 'out': 201684626.52608636},\n", " 'asks': {'in': 180012105.78744316, 'out': 179967097.58327818}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.099015,\n", " 'depth': 60,\n", " 'bids': {'in': 204214096.64562505, 'out': 201929596.73565817},\n", " 'asks': {'in': 180020041.85203296, 'out': 179975033.6003081}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.099346,\n", " 'depth': 60,\n", " 'bids': {'in': 204575241.07874545, 'out': 202032913.97938067},\n", " 'asks': {'in': 180026081.65576187, 'out': 180077503.80518678}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.09968,\n", " 'depth': 60,\n", " 'bids': {'in': 204637983.09234616, 'out': 202095641.73921105},\n", " 'asks': {'in': 180156509.96772715, 'out': 180178561.99178737}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.100011,\n", " 'depth': 60,\n", " 'bids': {'in': 204791701.67546967, 'out': 202247974.18366906},\n", " 'asks': {'in': 180214906.27902666, 'out': 180222531.58440286}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.1003451,\n", " 'depth': 60,\n", " 'bids': {'in': 204816102.48826006, 'out': 202298989.99747026},\n", " 'asks': {'in': 180245912.06821746, 'out': 180237539.73745865}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.100676,\n", " 'depth': 60,\n", " 'bids': {'in': 204865989.74549997, 'out': 202400377.14424115},\n", " 'asks': {'in': 180265880.96395427, 'out': 180275981.56900674}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.101012,\n", " 'depth': 60,\n", " 'bids': {'in': 204953401.18224418, 'out': 202469639.35414705},\n", " 'asks': {'in': 180301274.97384417, 'out': 180444917.04020905}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.101355,\n", " 'depth': 60,\n", " 'bids': {'in': 205085937.05999687, 'out': 202630956.73786804},\n", " 'asks': {'in': 180513846.35492876, 'out': 180566308.62163895}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.101704,\n", " 'depth': 60,\n", " 'bids': {'in': 205152954.64155117, 'out': 202941079.08036184},\n", " 'asks': {'in': 180540240.16712347, 'out': 180587312.64462745}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.102039,\n", " 'depth': 60,\n", " 'bids': {'in': 205215902.24692878, 'out': 203013550.49479786},\n", " 'asks': {'in': 180654634.26323068, 'out': 180638976.69127905}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.102377,\n", " 'depth': 60,\n", " 'bids': {'in': 205315628.9278862, 'out': 203110240.72781545},\n", " 'asks': {'in': 180744278.60149667, 'out': 180753905.32532135}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.102719,\n", " 'depth': 60,\n", " 'bids': {'in': 205427148.00726157, 'out': 203177298.14568505},\n", " 'asks': {'in': 180846677.53663227, 'out': 180790758.58312744}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.103053,\n", " 'depth': 60,\n", " 'bids': {'in': 205506357.08673286, 'out': 203263000.51709646},\n", " 'asks': {'in': 180860424.85332447, 'out': 180800178.17509693}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.103385,\n", " 'depth': 60,\n", " 'bids': {'in': 205536846.19682527, 'out': 203291991.05315965},\n", " 'asks': {'in': 180889887.81297767, 'out': 180832115.17609093}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.103712,\n", " 'depth': 60,\n", " 'bids': {'in': 205808736.51525918, 'out': 203564964.60342965},\n", " 'asks': {'in': 181071972.86486956, 'out': 181011787.47138533}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.104044,\n", " 'depth': 60,\n", " 'bids': {'in': 205981623.90977287, 'out': 203648787.52739954},\n", " 'asks': {'in': 181080814.51883838, 'out': 181057347.81531224}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.104373,\n", " 'depth': 60,\n", " 'bids': {'in': 206048966.88556507, 'out': 203787466.76638725},\n", " 'asks': {'in': 181111402.03184697, 'out': 181061232.79387602}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.104701,\n", " 'depth': 60,\n", " 'bids': {'in': 206091205.07762626, 'out': 203830347.10114875},\n", " 'asks': {'in': 181140864.75678957, 'out': 181093169.9595946}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.1050282,\n", " 'depth': 60,\n", " 'bids': {'in': 206330919.70568606, 'out': 204070022.45942256},\n", " 'asks': {'in': 181173707.81763446, 'out': 181178092.2637287}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.105437,\n", " 'depth': 60,\n", " 'bids': {'in': 208000075.39353487, 'out': 206427362.16875097},\n", " 'asks': {'in': 181711692.34985626, 'out': 181713235.614006}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.105912,\n", " 'depth': 60,\n", " 'bids': {'in': 209754899.04136696, 'out': 208187026.97161606},\n", " 'asks': {'in': 182527874.45545214, 'out': 182528031.7230727}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.106364,\n", " 'depth': 60,\n", " 'bids': {'in': 210159028.75260505, 'out': 208730377.79868025},\n", " 'asks': {'in': 183014654.33290815, 'out': 182680279.6075483}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.1067781,\n", " 'depth': 60,\n", " 'bids': {'in': 210833780.88681456, 'out': 209204426.12292245},\n", " 'asks': {'in': 183391543.66395256, 'out': 183504056.5354265}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.107158,\n", " 'depth': 60,\n", " 'bids': {'in': 211002263.64614928, 'out': 210120464.82121426},\n", " 'asks': {'in': 183683643.62206727, 'out': 183678781.3448935}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.107501,\n", " 'depth': 60,\n", " 'bids': {'in': 211168521.2789431, 'out': 210259099.39114177},\n", " 'asks': {'in': 183683643.62206727, 'out': 183678781.3448935}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.107842,\n", " 'depth': 60,\n", " 'bids': {'in': 211266648.86073518, 'out': 210333533.29533738},\n", " 'asks': {'in': 183867380.94144338, 'out': 183870085.2644704}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.1081998,\n", " 'depth': 60,\n", " 'bids': {'in': 211565957.156424, 'out': 210712770.662969},\n", " 'asks': {'in': 184031358.7275377, 'out': 184027925.1623165}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.108567,\n", " 'depth': 60,\n", " 'bids': {'in': 211766549.91209897, 'out': 210968879.7685022},\n", " 'asks': {'in': 184371410.0889547, 'out': 184289248.7768223}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.1089249,\n", " 'depth': 60,\n", " 'bids': {'in': 212138701.6560183, 'out': 211330066.2270954},\n", " 'asks': {'in': 184382203.5891192, 'out': 184300037.3610268}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.109268,\n", " 'depth': 60,\n", " 'bids': {'in': 212359290.222863, 'out': 211505882.9842279},\n", " 'asks': {'in': 184432622.9555391, 'out': 184344064.13769498}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.109616,\n", " 'depth': 60,\n", " 'bids': {'in': 212533664.2585992, 'out': 211686453.5162257},\n", " 'asks': {'in': 184484728.158241, 'out': 184588636.9605007}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.1099598,\n", " 'depth': 60,\n", " 'bids': {'in': 212807404.9329413, 'out': 212012637.4210705},\n", " 'asks': {'in': 184688749.0744714, 'out': 184621917.0027979}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.1103091,\n", " 'depth': 60,\n", " 'bids': {'in': 213700141.65053448, 'out': 212141264.85482767},\n", " 'asks': {'in': 184865032.0864253, 'out': 184833440.9799479}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.110653,\n", " 'depth': 60,\n", " 'bids': {'in': 213893119.03092268, 'out': 212292974.00873718},\n", " 'asks': {'in': 185061568.91331202, 'out': 185004362.8543384}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.111,\n", " 'depth': 60,\n", " 'bids': {'in': 214046013.6196043, 'out': 212393262.6641321},\n", " 'asks': {'in': 185277686.52980512, 'out': 185241350.1484769}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.1113448,\n", " 'depth': 60,\n", " 'bids': {'in': 214307366.13211098, 'out': 212642658.9854566},\n", " 'asks': {'in': 185325967.66595003, 'out': 185277952.4342862}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.11169,\n", " 'depth': 60,\n", " 'bids': {'in': 214567729.239204, 'out': 212789212.72282428},\n", " 'asks': {'in': 185364247.96992654, 'out': 185314482.1041283}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.112032,\n", " 'depth': 60,\n", " 'bids': {'in': 215069936.4544426, 'out': 213992000.79480937},\n", " 'asks': {'in': 185389725.26863945, 'out': 185387451.2602177}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.1123788,\n", " 'depth': 60,\n", " 'bids': {'in': 215112287.30063868, 'out': 214034231.98978978},\n", " 'asks': {'in': 185430065.84282926, 'out': 185459552.8562878}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.11273,\n", " 'depth': 60,\n", " 'bids': {'in': 215406632.57421696, 'out': 214640900.62494567},\n", " 'asks': {'in': 185584472.66567814, 'out': 185503890.7311028}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.11309,\n", " 'depth': 60,\n", " 'bids': {'in': 215565486.99721345, 'out': 214671534.46998316},\n", " 'asks': {'in': 185643310.58069655, 'out': 185598098.3722981}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.113434,\n", " 'depth': 60,\n", " 'bids': {'in': 215793298.01817015, 'out': 214898922.27386457},\n", " 'asks': {'in': 185698762.79038006, 'out': 185648110.8343449}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.113781,\n", " 'depth': 60,\n", " 'bids': {'in': 215884802.79707325, 'out': 215056473.37153876},\n", " 'asks': {'in': 185740944.89942035, 'out': 185724188.17262578}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.114124,\n", " 'depth': 60,\n", " 'bids': {'in': 216193348.77902624, 'out': 215297876.62375477},\n", " 'asks': {'in': 186021595.72039706, 'out': 185973888.68812767}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.114489,\n", " 'depth': 60,\n", " 'bids': {'in': 217681686.30154344, 'out': 216190391.94293186},\n", " 'asks': {'in': 186329354.96853235, 'out': 186250410.23875046}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.1148841,\n", " 'depth': 60,\n", " 'bids': {'in': 218408095.51863325, 'out': 217692414.94063216},\n", " 'asks': {'in': 186416186.36505595, 'out': 186365292.33417785}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.115256,\n", " 'depth': 60,\n", " 'bids': {'in': 218848330.22205356, 'out': 217995350.70292276},\n", " 'asks': {'in': 186472709.22185615, 'out': 186447011.25693595}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.1156092,\n", " 'depth': 60,\n", " 'bids': {'in': 219007373.60920596, 'out': 218207426.70376247},\n", " 'asks': {'in': 186492562.59216696, 'out': 186466847.35724446}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.115961,\n", " 'depth': 60,\n", " 'bids': {'in': 219101010.44164518, 'out': 218236868.41088328},\n", " 'asks': {'in': 186683645.10229546, 'out': 186657941.72746545}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.11632,\n", " 'depth': 60,\n", " 'bids': {'in': 219419808.83079636, 'out': 218685257.01218998},\n", " 'asks': {'in': 186921028.26615214, 'out': 186935274.10284066}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.116777,\n", " 'depth': 60,\n", " 'bids': {'in': 221543489.06465676, 'out': 219733120.1391011},\n", " 'asks': {'in': 187684442.53124154, 'out': 187701507.22863457}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.11728,\n", " 'depth': 60,\n", " 'bids': {'in': 222597482.26079255, 'out': 220828743.43762338},\n", " 'asks': {'in': 188496748.14269865, 'out': 188679679.73893377}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.1177459,\n", " 'depth': 60,\n", " 'bids': {'in': 223155713.37511936, 'out': 221330217.3257025},\n", " 'asks': {'in': 189108905.93085083, 'out': 188886961.20112088}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.118145,\n", " 'depth': 60,\n", " 'bids': {'in': 223553318.92860815, 'out': 221624297.95876098},\n", " 'asks': {'in': 189387289.75953475, 'out': 189195151.2389373}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.118518,\n", " 'depth': 60,\n", " 'bids': {'in': 224017380.97137964, 'out': 221792602.03741348},\n", " 'asks': {'in': 189772291.44414854, 'out': 189578223.04012668}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.11889,\n", " 'depth': 60,\n", " 'bids': {'in': 224421197.46480265, 'out': 222104961.57177848},\n", " 'asks': {'in': 189877483.14570183, 'out': 189663117.95940068}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.119255,\n", " 'depth': 60,\n", " 'bids': {'in': 224629880.74943116, 'out': 222207228.03141788},\n", " 'asks': {'in': 189920531.9991083, 'out': 189701133.27762538}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.1196291,\n", " 'depth': 60,\n", " 'bids': {'in': 225162135.47071755, 'out': 222933558.30895248},\n", " 'asks': {'in': 189978761.66330132, 'out': 189852099.0965767}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.1199949,\n", " 'depth': 60,\n", " 'bids': {'in': 225245356.00317994, 'out': 222964545.77011138},\n", " 'asks': {'in': 190088204.60022023, 'out': 189862432.59517428}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.120349,\n", " 'depth': 60,\n", " 'bids': {'in': 225305825.71539512, 'out': 223148205.4412799},\n", " 'asks': {'in': 190176725.13216254, 'out': 189902802.6158141}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.120756,\n", " 'depth': 60,\n", " 'bids': {'in': 225482493.46811503, 'out': 223373799.98631078},\n", " 'asks': {'in': 190222107.72242513, 'out': 189942462.0859541}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.121121,\n", " 'depth': 60,\n", " 'bids': {'in': 225988173.99922425, 'out': 223948305.1233014},\n", " 'asks': {'in': 190304382.82106403, 'out': 190306724.2200891}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.121494,\n", " 'depth': 60,\n", " 'bids': {'in': 226381883.25851345, 'out': 224298378.1476963},\n", " 'asks': {'in': 190454082.03054103, 'out': 190392554.6261873}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.121856,\n", " 'depth': 60,\n", " 'bids': {'in': 226676582.26150265, 'out': 224604395.56388888},\n", " 'asks': {'in': 190498655.69685963, 'out': 190484711.6508401}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.1222022,\n", " 'depth': 60,\n", " 'bids': {'in': 226681588.10004786, 'out': 224609392.60607588},\n", " 'asks': {'in': 190626672.76796943, 'out': 190532802.7183593}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.1225758,\n", " 'depth': 60,\n", " 'bids': {'in': 227030353.53603217, 'out': 224920547.44430828},\n", " 'asks': {'in': 190770389.35147193, 'out': 190902239.9082604}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.122957,\n", " 'depth': 60,\n", " 'bids': {'in': 227156316.71614426, 'out': 225238070.33346048},\n", " 'asks': {'in': 190835212.23457864, 'out': 191098685.998485}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.123322,\n", " 'depth': 60,\n", " 'bids': {'in': 227573061.07477355, 'out': 225583543.0289414},\n", " 'asks': {'in': 191179753.19920024, 'out': 191286098.982317}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.1236842,\n", " 'depth': 60,\n", " 'bids': {'in': 227824481.25980434, 'out': 225838187.4209135},\n", " 'asks': {'in': 191431324.51997265, 'out': 191493641.5388103}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.124032,\n", " 'depth': 60,\n", " 'bids': {'in': 227876113.34951234, 'out': 225890225.89750507},\n", " 'asks': {'in': 191474118.26869515, 'out': 191560034.9646275}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.124384,\n", " 'depth': 60,\n", " 'bids': {'in': 228127526.47602075, 'out': 226141673.93721247},\n", " 'asks': {'in': 191660033.12232745, 'out': 191746230.51252872}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.124733,\n", " 'depth': 60,\n", " 'bids': {'in': 228146839.41858715, 'out': 226162652.06185666},\n", " 'asks': {'in': 191851242.74799505, 'out': 191945620.37982902}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.125091,\n", " 'depth': 60,\n", " 'bids': {'in': 228431031.79043475, 'out': 226416230.06213507},\n", " 'asks': {'in': 192043748.85970154, 'out': 192128687.04220632}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.1254358,\n", " 'depth': 60,\n", " 'bids': {'in': 228485706.31202325, 'out': 226461109.57440606},\n", " 'asks': {'in': 192251131.44822395, 'out': 192331751.1291145}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.1257842,\n", " 'depth': 60,\n", " 'bids': {'in': 228527950.76604775, 'out': 226503354.17516446},\n", " 'asks': {'in': 192327875.36169374, 'out': 192362509.5955661}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.1261241,\n", " 'depth': 60,\n", " 'bids': {'in': 228546201.79325894, 'out': 226521605.20398706},\n", " 'asks': {'in': 192357483.77819583, 'out': 192391468.26802048}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.126473,\n", " 'depth': 60,\n", " 'bids': {'in': 228594311.77652124, 'out': 226551677.68631056},\n", " 'asks': {'in': 192561308.94150734, 'out': 192628826.4112424}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.1268249,\n", " 'depth': 60,\n", " 'bids': {'in': 228917956.41158533, 'out': 226803490.52958155},\n", " 'asks': {'in': 192739278.52344224, 'out': 192822072.8782351}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.127178,\n", " 'depth': 60,\n", " 'bids': {'in': 228950100.87788883, 'out': 226914287.16508263},\n", " 'asks': {'in': 192939733.34070814, 'out': 193013465.0764846}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.127535,\n", " 'depth': 60,\n", " 'bids': {'in': 229005385.39413622, 'out': 226956531.80612624},\n", " 'asks': {'in': 192955938.33515725, 'out': 193039674.4819165}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.127885,\n", " 'depth': 60,\n", " 'bids': {'in': 229052952.408946, 'out': 227008813.57820323},\n", " 'asks': {'in': 193042780.46706703, 'out': 193072782.61493978}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.12824,\n", " 'depth': 60,\n", " 'bids': {'in': 229106988.60026142, 'out': 227184604.97313043},\n", " 'asks': {'in': 193076568.53973272, 'out': 193271047.27510837}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.128598,\n", " 'depth': 60,\n", " 'bids': {'in': 229509479.9645014, 'out': 227609914.33186793},\n", " 'asks': {'in': 193371800.65693423, 'out': 193403443.40908965}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.1289558,\n", " 'depth': 60,\n", " 'bids': {'in': 229683074.81511343, 'out': 227688350.20809343},\n", " 'asks': {'in': 193479963.92624304, 'out': 193439299.19892296}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.1293151,\n", " 'depth': 60,\n", " 'bids': {'in': 229954436.38442242, 'out': 227979272.33468634},\n", " 'asks': {'in': 193686818.15846205, 'out': 193635722.65383917}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.129673,\n", " 'depth': 60,\n", " 'bids': {'in': 230240718.2303278, 'out': 228281134.38397545},\n", " 'asks': {'in': 193698971.13907704, 'out': 193644827.92721757}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.130027,\n", " 'depth': 60,\n", " 'bids': {'in': 230541839.44653562, 'out': 228576503.54179475},\n", " 'asks': {'in': 193736303.70198435, 'out': 193716560.38160476}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.130383,\n", " 'depth': 60,\n", " 'bids': {'in': 230860908.8046171, 'out': 228864136.80130655},\n", " 'asks': {'in': 193773243.07266736, 'out': 193826045.09531066}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.1307468,\n", " 'depth': 60,\n", " 'bids': {'in': 230915514.74864322, 'out': 228912165.88416424},\n", " 'asks': {'in': 193831574.12326998, 'out': 193907813.74058327}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.1311,\n", " 'depth': 60,\n", " 'bids': {'in': 231021157.06741583, 'out': 229024354.05918583},\n", " 'asks': {'in': 193849086.59624296, 'out': 193917313.34527156}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.131447,\n", " 'depth': 60,\n", " 'bids': {'in': 231063741.58677244, 'out': 229066598.81021422},\n", " 'asks': {'in': 193929476.58962557, 'out': 193950420.28560436}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.131797,\n", " 'depth': 60,\n", " 'bids': {'in': 231127008.65911615, 'out': 229130220.2334341},\n", " 'asks': {'in': 194002905.18615648, 'out': 193997817.01770735}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.132287,\n", " 'depth': 60,\n", " 'bids': {'in': 231477463.15644464, 'out': 229668463.9550082},\n", " 'asks': {'in': 194152574.73215777, 'out': 194085879.28142345}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.132672,\n", " 'depth': 60,\n", " 'bids': {'in': 231771191.72741064, 'out': 229754082.0155938},\n", " 'asks': {'in': 194324394.31024396, 'out': 194256081.77868384}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.133039,\n", " 'depth': 60,\n", " 'bids': {'in': 231931528.42841384, 'out': 229964448.7572965},\n", " 'asks': {'in': 194375150.84996316, 'out': 194308697.47937685}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.133397,\n", " 'depth': 60,\n", " 'bids': {'in': 232082170.52572125, 'out': 230115397.518331},\n", " 'asks': {'in': 194461198.15684617, 'out': 194352891.65787956}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.133759,\n", " 'depth': 60,\n", " 'bids': {'in': 232158151.79603794, 'out': 230197886.0564083},\n", " 'asks': {'in': 194501871.67010286, 'out': 194393023.19013196}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.13412,\n", " 'depth': 60,\n", " 'bids': {'in': 232304437.03747696, 'out': 230388949.84461898},\n", " 'asks': {'in': 194776007.37571946, 'out': 194664626.84523025}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.1344798,\n", " 'depth': 60,\n", " 'bids': {'in': 232511014.63008717, 'out': 230545925.82180476},\n", " 'asks': {'in': 194808589.29400405, 'out': 194794684.37768754}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.134835,\n", " 'depth': 60,\n", " 'bids': {'in': 232569954.48972017, 'out': 230617698.23753437},\n", " 'asks': {'in': 194933877.74637645, 'out': 194824817.69674644}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.135187,\n", " 'depth': 60,\n", " 'bids': {'in': 232746903.23776436, 'out': 230791074.39287436},\n", " 'asks': {'in': 194976290.94042456, 'out': 194911830.99448013}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.135574,\n", " 'depth': 60,\n", " 'bids': {'in': 233097024.33587685, 'out': 231117989.75327617},\n", " 'asks': {'in': 195232709.50162756, 'out': 195433742.61508402}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.135966,\n", " 'depth': 60,\n", " 'bids': {'in': 233312872.16317084, 'out': 231380138.27662206},\n", " 'asks': {'in': 195582071.68973657, 'out': 195647290.61345112}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.136338,\n", " 'depth': 60,\n", " 'bids': {'in': 233433649.05350456, 'out': 231498959.30510926},\n", " 'asks': {'in': 195637154.14403027, 'out': 195819565.21368232}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.136721,\n", " 'depth': 60,\n", " 'bids': {'in': 233550079.11293575, 'out': 231622057.22842196},\n", " 'asks': {'in': 195830636.17566127, 'out': 195875491.67614093}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.137096,\n", " 'depth': 60,\n", " 'bids': {'in': 233795722.63243055, 'out': 231888407.02588347},\n", " 'asks': {'in': 195912018.17134845, 'out': 195910901.00874925}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.137454,\n", " 'depth': 60,\n", " 'bids': {'in': 233862501.94705725, 'out': 231936199.91458717},\n", " 'asks': {'in': 195947893.53531316, 'out': 195955405.23504436}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.13782,\n", " 'depth': 60,\n", " 'bids': {'in': 234199197.86045596, 'out': 232249496.35425317},\n", " 'asks': {'in': 195984011.22238156, 'out': 195975541.02295196}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.1381838,\n", " 'depth': 60,\n", " 'bids': {'in': 234469446.57897627, 'out': 232558957.32172966},\n", " 'asks': {'in': 196011996.66845927, 'out': 195995176.63548476}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.138538,\n", " 'depth': 60,\n", " 'bids': {'in': 234534079.90653047, 'out': 232623590.65045205},\n", " 'asks': {'in': 196020616.71806195, 'out': 196003796.70518777}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.138883,\n", " 'depth': 60,\n", " 'bids': {'in': 234586742.29981318, 'out': 232699586.65805346},\n", " 'asks': {'in': 196049574.91758177, 'out': 196032755.05601376}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.139233,\n", " 'depth': 60,\n", " 'bids': {'in': 234663521.85790977, 'out': 232738971.39270407},\n", " 'asks': {'in': 196082440.29036137, 'out': 196069092.04030135}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.1395898,\n", " 'depth': 60,\n", " 'bids': {'in': 234811889.32102087, 'out': 232813381.60065997},\n", " 'asks': {'in': 196118757.50753087, 'out': 196101666.96769536}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.139945,\n", " 'depth': 60,\n", " 'bids': {'in': 234841853.54770187, 'out': 232906737.02556217},\n", " 'asks': {'in': 196151832.03771415, 'out': 196137992.89638686}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.1403031,\n", " 'depth': 60,\n", " 'bids': {'in': 234969060.25142446, 'out': 233026697.79452506},\n", " 'asks': {'in': 196272924.52089036, 'out': 196172432.13137016}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.1406982,\n", " 'depth': 60,\n", " 'bids': {'in': 235361537.41624635, 'out': 233509571.88395047},\n", " 'asks': {'in': 196667624.10223255, 'out': 196584982.44909206}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.1410859,\n", " 'depth': 60,\n", " 'bids': {'in': 235580841.29601505, 'out': 233588088.90898237},\n", " 'asks': {'in': 196789791.01724035, 'out': 196695513.71775925}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.141458,\n", " 'depth': 60,\n", " 'bids': {'in': 235923720.07135504, 'out': 233876065.34886566},\n", " 'asks': {'in': 197012536.13085926, 'out': 196984516.26156464}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.141844,\n", " 'depth': 60,\n", " 'bids': {'in': 236159672.56956205, 'out': 234208380.21030086},\n", " 'asks': {'in': 197116600.53978145, 'out': 197168986.27761823}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.1422231,\n", " 'depth': 60,\n", " 'bids': {'in': 236464750.35900524, 'out': 234446524.96039495},\n", " 'asks': {'in': 197399725.56063244, 'out': 197381246.68978494}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.142693,\n", " 'depth': 60,\n", " 'bids': {'in': 237461763.97276226, 'out': 236296065.67433155},\n", " 'asks': {'in': 199714867.77334854, 'out': 198742302.11262625}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.143199,\n", " 'depth': 60,\n", " 'bids': {'in': 237983259.92823225, 'out': 237646286.24292153},\n", " 'asks': {'in': 200361020.46714643, 'out': 200826896.27681917}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.143635,\n", " 'depth': 60,\n", " 'bids': {'in': 238556392.99830845, 'out': 238190068.14827174},\n", " 'asks': {'in': 200682330.39785063, 'out': 200951190.15641266}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.144033,\n", " 'depth': 60,\n", " 'bids': {'in': 238866692.80601025, 'out': 238676940.85496303},\n", " 'asks': {'in': 200798078.37486103, 'out': 201005801.04052746}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.144436,\n", " 'depth': 60,\n", " 'bids': {'in': 239344202.95698816, 'out': 239080933.01553154},\n", " 'asks': {'in': 201107602.25407252, 'out': 201136061.39464226}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.144827,\n", " 'depth': 60,\n", " 'bids': {'in': 239831250.49914396, 'out': 239558274.05413654},\n", " 'asks': {'in': 201319351.2722786, 'out': 201439755.24770555}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.1452081,\n", " 'depth': 60,\n", " 'bids': {'in': 240011220.30429366, 'out': 239746147.17047036},\n", " 'asks': {'in': 201387969.67747492, 'out': 201493978.40172154}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.145587,\n", " 'depth': 60,\n", " 'bids': {'in': 240161116.38674188, 'out': 239845119.41595796},\n", " 'asks': {'in': 201431918.96245003, 'out': 201540888.19235983}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.146004,\n", " 'depth': 60,\n", " 'bids': {'in': 240921620.43834037, 'out': 240631567.85272425},\n", " 'asks': {'in': 202004554.52176753, 'out': 202282688.80116725}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.14643,\n", " 'depth': 60,\n", " 'bids': {'in': 241213156.31572777, 'out': 240883569.08122176},\n", " 'asks': {'in': 202104544.19829813, 'out': 202378073.29443675}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.146817,\n", " 'depth': 60,\n", " 'bids': {'in': 241443682.73674557, 'out': 241254949.40502086},\n", " 'asks': {'in': 202435447.88905352, 'out': 202704777.93301964}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.147205,\n", " 'depth': 60,\n", " 'bids': {'in': 241638151.61606705, 'out': 241341945.97733036},\n", " 'asks': {'in': 202794711.55979782, 'out': 203005632.50098303}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.147653,\n", " 'depth': 60,\n", " 'bids': {'in': 242557258.66141585, 'out': 242185725.48475477},\n", " 'asks': {'in': 204947542.56879362, 'out': 203911092.91553003}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.148138,\n", " 'depth': 60,\n", " 'bids': {'in': 243470555.80827993, 'out': 243016544.89020997},\n", " 'asks': {'in': 205558438.6287307, 'out': 204294700.86244032}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.1485639,\n", " 'depth': 60,\n", " 'bids': {'in': 243725429.71002614, 'out': 243199098.98445466},\n", " 'asks': {'in': 205965679.56778753, 'out': 204696649.09532693}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.148968,\n", " 'depth': 60,\n", " 'bids': {'in': 243931186.20264655, 'out': 243605701.64700055},\n", " 'asks': {'in': 206307604.75264314, 'out': 206293237.19106433}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.1493561,\n", " 'depth': 60,\n", " 'bids': {'in': 244144683.00866157, 'out': 243694064.65103346},\n", " 'asks': {'in': 206596997.59195563, 'out': 206571486.4797671}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.14973,\n", " 'depth': 60,\n", " 'bids': {'in': 244316463.78908578, 'out': 243865842.99601695},\n", " 'asks': {'in': 206662293.07351762, 'out': 206616073.3052425}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.1500921,\n", " 'depth': 60,\n", " 'bids': {'in': 244378250.9248649, 'out': 243905227.84844455},\n", " 'asks': {'in': 207346798.0359882, 'out': 206637007.0315733}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.1504629,\n", " 'depth': 60,\n", " 'bids': {'in': 244534551.6808253, 'out': 244046400.31998044},\n", " 'asks': {'in': 208260034.4181728, 'out': 207047815.8172184}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.1508439,\n", " 'depth': 60,\n", " 'bids': {'in': 244935378.7286161, 'out': 244428001.74789664},\n", " 'asks': {'in': 208304914.8736714, 'out': 207084143.15583718}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.15122,\n", " 'depth': 60,\n", " 'bids': {'in': 245365908.35703048, 'out': 244815791.06404775},\n", " 'asks': {'in': 208431408.48243892, 'out': 207942752.59728447}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.151614,\n", " 'depth': 60,\n", " 'bids': {'in': 245805191.25403738, 'out': 245467638.11139005},\n", " 'asks': {'in': 208695400.37645382, 'out': 208117952.80756387}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.1520221,\n", " 'depth': 60,\n", " 'bids': {'in': 245938559.96280158, 'out': 245715828.64458627},\n", " 'asks': {'in': 209027632.96814463, 'out': 209118474.48652846}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.152413,\n", " 'depth': 60,\n", " 'bids': {'in': 246163033.67047918, 'out': 245809723.36542726},\n", " 'asks': {'in': 209157059.92066732, 'out': 209125910.26716426}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.1528451,\n", " 'depth': 60,\n", " 'bids': {'in': 248724221.4529068, 'out': 246739076.98426464},\n", " 'asks': {'in': 210029290.8313533, 'out': 209907599.47915545}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.1533282,\n", " 'depth': 60,\n", " 'bids': {'in': 249431420.1309883, 'out': 248524514.64533865},\n", " 'asks': {'in': 210544422.4346644, 'out': 210368315.49566525}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.153762,\n", " 'depth': 60,\n", " 'bids': {'in': 249887618.3502528, 'out': 249843774.77689704},\n", " 'asks': {'in': 210967037.9121376, 'out': 210933497.08088845}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.15422,\n", " 'depth': 60,\n", " 'bids': {'in': 252875637.7890602, 'out': 250751897.38569745},\n", " 'asks': {'in': 212082754.8327315, 'out': 211939716.05734625}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.1546931,\n", " 'depth': 60,\n", " 'bids': {'in': 253428957.8252035, 'out': 251567213.20652425},\n", " 'asks': {'in': 212623084.99603608, 'out': 212367953.22780865}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.155105,\n", " 'depth': 60,\n", " 'bids': {'in': 253833691.73344612, 'out': 251917882.03452486},\n", " 'asks': {'in': 212981301.38853228, 'out': 212767838.68937054}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.155489,\n", " 'depth': 60,\n", " 'bids': {'in': 253997138.09402442, 'out': 252078018.81408685},\n", " 'asks': {'in': 213034076.4922154, 'out': 212813549.51017815}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.155871,\n", " 'depth': 60,\n", " 'bids': {'in': 254084894.65651822, 'out': 252191894.07044056},\n", " 'asks': {'in': 213249086.7835612, 'out': 213035030.25171906}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.156258,\n", " 'depth': 60,\n", " 'bids': {'in': 254142391.3046747, 'out': 252357631.04559106},\n", " 'asks': {'in': 213342678.853109, 'out': 213136078.65573567}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.156665,\n", " 'depth': 60,\n", " 'bids': {'in': 254691753.2805879, 'out': 252785176.96201837},\n", " 'asks': {'in': 213938108.99718902, 'out': 213679748.35782918}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.1570811,\n", " 'depth': 60,\n", " 'bids': {'in': 255185196.6438764, 'out': 253362197.83445418},\n", " 'asks': {'in': 214441191.8476681, 'out': 214281973.2225251}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.15749,\n", " 'depth': 60,\n", " 'bids': {'in': 255436397.3437053, 'out': 253706893.07911587},\n", " 'asks': {'in': 214550315.5781056, 'out': 214396969.8935934}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.157881,\n", " 'depth': 60,\n", " 'bids': {'in': 255757930.08774158, 'out': 253947179.74889678},\n", " 'asks': {'in': 214783567.7044288, 'out': 214604191.773616}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.1582642,\n", " 'depth': 60,\n", " 'bids': {'in': 255871404.83640838, 'out': 254089819.99840558},\n", " 'asks': {'in': 214930137.812589, 'out': 214643118.9281056}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.158634,\n", " 'depth': 60,\n", " 'bids': {'in': 256280326.8010631, 'out': 254459081.57801297},\n", " 'asks': {'in': 214973248.8223382, 'out': 214686127.7029991}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.159016,\n", " 'depth': 60,\n", " 'bids': {'in': 256556702.8505329, 'out': 254785270.7465588},\n", " 'asks': {'in': 215020139.8333963, 'out': 214846296.2357069}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.159408,\n", " 'depth': 60,\n", " 'bids': {'in': 256902282.57544088, 'out': 255084241.43546858},\n", " 'asks': {'in': 215161782.10906458, 'out': 214920730.6127195}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.1598122,\n", " 'depth': 60,\n", " 'bids': {'in': 256995355.0850381, 'out': 255242171.4684254},\n", " 'asks': {'in': 215241400.22851548, 'out': 214957695.5330769}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.160193,\n", " 'depth': 60,\n", " 'bids': {'in': 257296203.9071681, 'out': 255552123.0838228},\n", " 'asks': {'in': 215285606.46743947, 'out': 215001896.3449225}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.160574,\n", " 'depth': 60,\n", " 'bids': {'in': 257435837.3071326, 'out': 255628175.49121988},\n", " 'asks': {'in': 215507023.47854808, 'out': 215218299.01581392}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.1609511,\n", " 'depth': 60,\n", " 'bids': {'in': 257784133.5085176, 'out': 255920287.9262975},\n", " 'asks': {'in': 215747585.31049818, 'out': 215595755.7179264}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.1614048,\n", " 'depth': 60,\n", " 'bids': {'in': 258556968.11361688, 'out': 257667273.08993918},\n", " 'asks': {'in': 217878259.0223924, 'out': 216885553.3214926}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.1619022,\n", " 'depth': 60,\n", " 'bids': {'in': 259029673.2806272, 'out': 259020074.03893018},\n", " 'asks': {'in': 218704579.8277767, 'out': 218807971.31112522}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.162338,\n", " 'depth': 60,\n", " 'bids': {'in': 259537311.6335671, 'out': 259299087.96610487},\n", " 'asks': {'in': 219145670.1629385, 'out': 219127762.9377253}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.162726,\n", " 'depth': 60,\n", " 'bids': {'in': 259783901.2398513, 'out': 259547022.77151507},\n", " 'asks': {'in': 219184535.0951549, 'out': 219163404.3693726}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.1631029,\n", " 'depth': 60,\n", " 'bids': {'in': 259875371.4710857, 'out': 259634086.51266336},\n", " 'asks': {'in': 219302887.4872165, 'out': 219405783.8261483}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.1635032,\n", " 'depth': 60,\n", " 'bids': {'in': 260084985.898148, 'out': 259728439.65860957},\n", " 'asks': {'in': 219546581.3885373, 'out': 219716658.694373}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.163896,\n", " 'depth': 60,\n", " 'bids': {'in': 260402681.4676829, 'out': 260047474.41868606},\n", " 'asks': {'in': 220058175.1999541, 'out': 220180899.55488113}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.1643012,\n", " 'depth': 60,\n", " 'bids': {'in': 260982429.4759049, 'out': 260701874.99075657},\n", " 'asks': {'in': 220233468.8693394, 'out': 220512948.70599604}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.164741,\n", " 'depth': 60,\n", " 'bids': {'in': 261690114.8139845, 'out': 261659255.82183298},\n", " 'asks': {'in': 221584024.4840488, 'out': 221118212.11613825}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.1651819,\n", " 'depth': 60,\n", " 'bids': {'in': 262140640.0391659, 'out': 262080209.528541},\n", " 'asks': {'in': 222054577.66167933, 'out': 222031888.96085924}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.1655731,\n", " 'depth': 60,\n", " 'bids': {'in': 262193065.5910514, 'out': 262150683.9991575},\n", " 'asks': {'in': 222284658.01735014, 'out': 222304601.30309463}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.1659641,\n", " 'depth': 60,\n", " 'bids': {'in': 262575123.2892703, 'out': 262304141.5813897},\n", " 'asks': {'in': 222357962.89809734, 'out': 222338552.10869804}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.1663492,\n", " 'depth': 60,\n", " 'bids': {'in': 262596132.3949795, 'out': 262454284.43423238},\n", " 'asks': {'in': 222656642.39494914, 'out': 222636252.92084044}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.16672,\n", " 'depth': 60,\n", " 'bids': {'in': 262625623.88751242, 'out': 262525010.5228876},\n", " 'asks': {'in': 222690036.91226825, 'out': 222669537.91577685}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.167088,\n", " 'depth': 60,\n", " 'bids': {'in': 262645813.97264263, 'out': 262559531.2452868},\n", " 'asks': {'in': 222698928.78796616, 'out': 222678434.85359275}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.167469,\n", " 'depth': 60,\n", " 'bids': {'in': 262712586.66979593, 'out': 262670848.2224743},\n", " 'asks': {'in': 223007651.95503467, 'out': 222925046.99511015}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.167852,\n", " 'depth': 60,\n", " 'bids': {'in': 262759210.94006643, 'out': 262810944.6289779},\n", " 'asks': {'in': 223080928.52543348, 'out': 223156975.01357377}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.1682339,\n", " 'depth': 60,\n", " 'bids': {'in': 262908852.09089682, 'out': 262864214.4698541},\n", " 'asks': {'in': 223400326.3192396, 'out': 223390143.47333947}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.168627,\n", " 'depth': 60,\n", " 'bids': {'in': 263228597.6483896, 'out': 263454174.19372737},\n", " 'asks': {'in': 223705310.92471388, 'out': 223654044.81278875}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.169059,\n", " 'depth': 60,\n", " 'bids': {'in': 263981562.8284826, 'out': 264152313.31919017},\n", " 'asks': {'in': 224438887.87348908, 'out': 224308515.44085637}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.169485,\n", " 'depth': 60,\n", " 'bids': {'in': 264248799.11445048, 'out': 264353928.64712736},\n", " 'asks': {'in': 224704684.6405168, 'out': 224522038.49649265}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.169874,\n", " 'depth': 60,\n", " 'bids': {'in': 264441417.8817741, 'out': 264689798.47225598},\n", " 'asks': {'in': 224907805.19546458, 'out': 224856461.84546095}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.1702578,\n", " 'depth': 60,\n", " 'bids': {'in': 265073773.5063454, 'out': 265059940.63299596},\n", " 'asks': {'in': 225085237.9217876, 'out': 224921709.38339484}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.170639,\n", " 'depth': 60,\n", " 'bids': {'in': 265169611.0796411, 'out': 265268612.50565726},\n", " 'asks': {'in': 225264855.798403, 'out': 225101315.92643964}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.171015,\n", " 'depth': 60,\n", " 'bids': {'in': 265364547.0949076, 'out': 265453480.98741326},\n", " 'asks': {'in': 225475475.8565394, 'out': 225305436.35844234}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1760386604.171396,\n", " 'depth': 60,\n", " 'bids': {'in': 265770404.4342719, 'out': 265761053.46088704},\n", " 'asks': {'in': 225485367.3975672, 'out': 225314835.66742694}},\n", " ...]" ] }, "execution_count": 192, "metadata": {}, "output_type": "execute_result" } ], "source": [ "volumes" ] }, { "cell_type": "code", "execution_count": null, "id": "8b7cf470-2ff4-4d92-9abc-edb09c74b30c", "metadata": {}, "outputs": [], "source": [] }, { "cell_type": "code", "execution_count": null, "id": "5fa32656-7a5c-40a3-8e30-40afc61d4251", "metadata": {}, "outputs": [], "source": [] }, { "cell_type": "code", "execution_count": null, "id": "71418843-7c12-49a0-a877-5d49379ddfb4", "metadata": {}, "outputs": [], "source": [] }, { "cell_type": "code", "execution_count": 193, "id": "0e96f8c5-8cd7-4a20-9898-daedb189e9a5", "metadata": {}, "outputs": [ { "data": { "text/html": [ "
\n", "\n", "\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
pricesbids_inbids_outasks_inasks_out
1.760387e+09108241.80.000000e+000.000000e+000.000000e+000.000000e+00
1.760387e+09108241.82.678252e+051.443009e+051.628488e+051.932198e+05
1.760387e+09108241.84.340068e+053.537837e+054.039148e+052.773299e+05
1.760387e+09108241.87.076856e+051.136577e+066.577941e+056.133063e+05
1.760387e+09108241.81.087650e+061.401142e+069.346300e+058.995873e+05
..................
1.760387e+09108051.23.233035e+093.233369e+092.277799e+092.277480e+09
1.760387e+09108051.23.231694e+093.230802e+092.276732e+092.276959e+09
1.760387e+09108051.23.229242e+093.228448e+092.275218e+092.275055e+09
1.760387e+09108051.23.228506e+093.227429e+092.274817e+092.274877e+09
1.760387e+09108051.23.227490e+093.226601e+092.274270e+092.274377e+09
\n", "

20781 rows × 5 columns

\n", "
" ], "text/plain": [ " prices bids_in bids_out asks_in asks_out\n", "1.760387e+09 108241.8 0.000000e+00 0.000000e+00 0.000000e+00 0.000000e+00\n", "1.760387e+09 108241.8 2.678252e+05 1.443009e+05 1.628488e+05 1.932198e+05\n", "1.760387e+09 108241.8 4.340068e+05 3.537837e+05 4.039148e+05 2.773299e+05\n", "1.760387e+09 108241.8 7.076856e+05 1.136577e+06 6.577941e+05 6.133063e+05\n", "1.760387e+09 108241.8 1.087650e+06 1.401142e+06 9.346300e+05 8.995873e+05\n", "... ... ... ... ... ...\n", "1.760387e+09 108051.2 3.233035e+09 3.233369e+09 2.277799e+09 2.277480e+09\n", "1.760387e+09 108051.2 3.231694e+09 3.230802e+09 2.276732e+09 2.276959e+09\n", "1.760387e+09 108051.2 3.229242e+09 3.228448e+09 2.275218e+09 2.275055e+09\n", "1.760387e+09 108051.2 3.228506e+09 3.227429e+09 2.274817e+09 2.274877e+09\n", "1.760387e+09 108051.2 3.227490e+09 3.226601e+09 2.274270e+09 2.274377e+09\n", "\n", "[20781 rows x 5 columns]" ] }, "execution_count": 193, "metadata": {}, "output_type": "execute_result" } ], "source": [ "df" ] }, { "cell_type": "code", "execution_count": 194, "id": "ef3dd72e-cc94-4b53-83fe-cd57a7de14b5", "metadata": {}, "outputs": [ { "data": { "text/plain": [ "1760386604.171396" ] }, "execution_count": 194, "metadata": {}, "output_type": "execute_result" } ], "source": [ "x[999]" ] }, { "cell_type": "code", "execution_count": 195, "id": "276c646c-e56d-409e-a2b3-81263d105687", "metadata": {}, "outputs": [ { "data": { "application/vnd.plotly.v1+json": { "config": { "plotlyServerURL": "https://plot.ly" }, "data": [ { "mode": "lines+markers", "name": "Line", "type": "scatter", "x": [ 1760386624.4450471, 1760386624.449951, 1760386624.454238, 1760386624.4581409, 1760386624.461955, 1760386624.4657369, 1760386624.469784, 1760386624.473553, 1760386624.477213, 1760386624.480895, 1760386624.4843981, 1760386624.487838, 1760386624.491275, 1760386624.494703, 1760386624.4981482, 1760386624.501567, 1760386624.5050519, 1760386624.5084648, 1760386624.511908, 1760386624.5153332, 1760386624.518728, 1760386624.5221848, 1760386624.5256472, 1760386624.529084, 1760386624.532547, 1760386624.53599, 1760386624.539475, 1760386624.542921, 1760386624.547044, 1760386624.550441, 1760386624.5537999, 1760386624.5571241, 1760386624.5605052, 1760386624.563924, 1760386624.567326, 1760386624.570749, 1760386624.574186, 1760386624.577589, 1760386624.5810292, 1760386624.5844328, 1760386624.587842, 1760386624.59121, 1760386624.594608, 1760386624.598052, 1760386624.6014562, 1760386624.605231, 1760386624.608493, 1760386624.6117408, 1760386624.6150558, 1760386624.618253, 1760386624.6217191, 1760386624.62511, 1760386624.6284852, 1760386624.631943, 1760386624.635375, 1760386624.638762, 1760386624.642208, 1760386624.645592, 1760386624.649056, 1760386624.65241, 1760386624.655869, 1760386624.659274, 1760386624.662722, 1760386624.666189, 1760386624.669662, 1760386624.6732008, 1760386624.676661, 1760386624.680518, 1760386624.684134, 1760386624.6874151, 1760386624.690864, 1760386624.694259, 1760386624.697702, 1760386624.701215, 1760386624.7046568, 1760386624.708092, 1760386624.711513, 1760386624.714968, 1760386624.718407, 1760386624.721856, 1760386624.725339, 1760386624.728697, 1760386624.734358, 1760386624.737725, 1760386624.741172, 1760386624.744571, 1760386624.748, 1760386624.7513611, 1760386624.7548559, 1760386624.7583501, 1760386624.761903, 1760386624.76545, 1760386624.7688901, 1760386624.772485, 1760386624.7758138, 1760386624.7793221, 1760386624.7828, 1760386624.78622, 1760386624.78964, 1760386624.793018, 1760386624.796438, 1760386624.7998562, 1760386624.803408, 1760386624.806897, 1760386624.810364, 1760386624.8138108, 1760386624.817272, 1760386624.82098, 1760386624.824496, 1760386624.828026, 1760386624.831525, 1760386624.8350239, 1760386624.8385322, 1760386624.842026, 1760386624.845857, 1760386624.84918, 1760386624.85265, 1760386624.85611, 1760386624.8595378, 1760386624.8630002, 1760386624.866475, 1760386624.869953, 1760386624.8733902, 1760386624.8768241, 1760386624.880272, 1760386624.883734, 1760386624.8873038, 1760386624.890888, 1760386624.894418, 1760386624.898056, 1760386624.901581, 1760386624.905607, 1760386624.909333, 1760386624.9129229, 1760386624.916488, 1760386624.920013, 1760386624.923577, 1760386624.927145, 1760386624.930679, 1760386624.9342148, 1760386624.9377532, 1760386624.941225, 1760386624.944961, 1760386624.948614, 1760386624.952319, 1760386624.955796, 1760386624.959306, 1760386624.96294, 1760386624.96657, 1760386624.970099, 1760386624.973686, 1760386624.977211, 1760386624.980791, 1760386624.984354, 1760386624.987944, 1760386624.991408, 1760386624.99504, 1760386624.9984782, 1760386625.001917, 1760386625.0054588, 1760386625.0090082, 1760386625.012635, 1760386625.016274, 1760386625.01985, 1760386625.023349, 1760386625.026887, 1760386625.0303628, 1760386625.033813, 1760386625.0373309, 1760386625.040954, 1760386625.0449998, 1760386625.048664, 1760386625.052214, 1760386625.055706, 1760386625.0591412, 1760386625.06278, 1760386625.066389, 1760386625.069918, 1760386625.073452, 1760386625.076976, 1760386625.080395, 1760386625.083879, 1760386625.087436, 1760386625.090912, 1760386625.094461, 1760386625.098047, 1760386625.10145, 1760386625.10506, 1760386625.108675, 1760386625.112187, 1760386625.115802, 1760386625.119412, 1760386625.123039, 1760386625.1265862, 1760386625.1300411, 1760386625.1335838, 1760386625.137163, 1760386625.140768, 1760386625.144756, 1760386625.152229, 1760386625.15732, 1760386625.16133, 1760386625.165474, 1760386625.169811, 1760386625.173822, 1760386625.177702, 1760386625.181477, 1760386625.185191, 1760386625.189173, 1760386625.193488, 1760386625.19736, 1760386625.2012548, 1760386625.204757, 1760386625.20822, 1760386625.211678, 1760386625.215183, 1760386625.218741, 1760386625.222301, 1760386625.225824, 1760386625.229311, 1760386625.232834, 1760386625.2364511, 1760386625.240854, 1760386625.2459788, 1760386625.249714, 1760386625.253361, 1760386625.25689, 1760386625.2604039, 1760386625.263927, 1760386625.26754, 1760386625.2710989, 1760386625.274634, 1760386625.278163, 1760386625.282055, 1760386625.2857459, 1760386625.2892091, 1760386625.292706, 1760386625.2961652, 1760386625.299613, 1760386625.3031611, 1760386625.306664, 1760386625.310241, 1760386625.313707, 1760386625.317257, 1760386625.320777, 1760386625.3243399, 1760386625.328199, 1760386625.331723, 1760386625.3352199, 1760386625.338727, 1760386625.342247, 1760386625.34566, 1760386625.3491552, 1760386625.352701, 1760386625.356257, 1760386625.359791, 1760386625.363349, 1760386625.3669262, 1760386625.370921, 1760386625.374489, 1760386625.3780649, 1760386625.381663, 1760386625.3851929, 1760386625.388756, 1760386625.3923142, 1760386625.39585, 1760386625.399342, 1760386625.403014, 1760386625.406655, 1760386625.41023, 1760386625.4137511, 1760386625.417323, 1760386625.420948, 1760386625.4265249, 1760386625.434676, 1760386625.440732, 1760386625.445199, 1760386625.449526, 1760386625.4537349, 1760386625.457918, 1760386625.4617128, 1760386625.465572, 1760386625.469644, 1760386625.4734201, 1760386625.4771469, 1760386625.480651, 1760386625.4841979, 1760386625.4877388, 1760386625.4912581, 1760386625.494712, 1760386625.4981692, 1760386625.501685, 1760386625.505152, 1760386625.5087051, 1760386625.512267, 1760386625.515902, 1760386625.519535, 1760386625.523159, 1760386625.5268302, 1760386625.530467, 1760386625.5341299, 1760386625.537911, 1760386625.5414011, 1760386625.544893, 1760386625.548398, 1760386625.551954, 1760386625.5555499, 1760386625.559139, 1760386625.5627189, 1760386625.566339, 1760386625.569878, 1760386625.573366, 1760386625.576912, 1760386625.58048, 1760386625.584078, 1760386625.587608, 1760386625.5924249, 1760386625.595904, 1760386625.599394, 1760386625.602942, 1760386625.606403, 1760386625.610042, 1760386625.613591, 1760386625.6172009, 1760386625.6207821, 1760386625.624427, 1760386625.628133, 1760386625.6316679, 1760386625.635317, 1760386625.6388412, 1760386625.642435, 1760386625.645931, 1760386625.649512, 1760386625.653187, 1760386625.656729, 1760386625.660362, 1760386625.664039, 1760386625.667824, 1760386625.671489, 1760386625.6750479, 1760386625.678615, 1760386625.682605, 1760386625.6864388, 1760386625.690059, 1760386625.693687, 1760386625.697273, 1760386625.7008939, 1760386625.704522, 1760386625.708075, 1760386625.711731, 1760386625.715306, 1760386625.718941, 1760386625.722553, 1760386625.726228, 1760386625.729891, 1760386625.733561, 1760386625.737201, 1760386625.740777, 1760386625.744451, 1760386625.7481081, 1760386625.7518249, 1760386625.75546, 1760386625.759118, 1760386625.762756, 1760386625.7664168, 1760386625.7700381, 1760386625.77367, 1760386625.777287, 1760386625.780847, 1760386625.7845209, 1760386625.788123, 1760386625.791693, 1760386625.795368, 1760386625.799083, 1760386625.802795, 1760386625.806417, 1760386625.809997, 1760386625.813615, 1760386625.81727, 1760386625.820897, 1760386625.8245518, 1760386625.828265, 1760386625.832018, 1760386625.836044, 1760386625.839704, 1760386625.8434188, 1760386625.847046, 1760386625.8507788, 1760386625.854491, 1760386625.8581161, 1760386625.861742, 1760386625.8653471, 1760386625.8689668, 1760386625.872596, 1760386625.876234, 1760386625.879849, 1760386625.883563, 1760386625.887388, 1760386625.891128, 1760386625.895069, 1760386625.898973, 1760386625.9027221, 1760386625.9063811, 1760386625.910128, 1760386625.9138482, 1760386625.917587, 1760386625.921193, 1760386625.92481, 1760386625.928482, 1760386625.932162, 1760386625.935992, 1760386625.939592, 1760386625.94327, 1760386625.94687, 1760386625.950507, 1760386625.954476, 1760386625.958239, 1760386625.96191, 1760386625.965614, 1760386625.969408, 1760386625.9731042, 1760386625.976854, 1760386625.9805188, 1760386625.9842272, 1760386625.9878988, 1760386625.991644, 1760386625.995414, 1760386625.999135, 1760386626.002816, 1760386626.00644, 1760386626.0100632, 1760386626.013691, 1760386626.017375, 1760386626.021028, 1760386626.024676, 1760386626.028417, 1760386626.0321548, 1760386626.035933, 1760386626.039676, 1760386626.044485, 1760386626.0484312, 1760386626.052129, 1760386626.055913, 1760386626.0595882, 1760386626.063166, 1760386626.066818, 1760386626.07044, 1760386626.074037, 1760386626.077697, 1760386626.081293, 1760386626.085003, 1760386626.088635, 1760386626.092331, 1760386626.0959501, 1760386626.0995798, 1760386626.1032581, 1760386626.107119, 1760386626.1108632, 1760386626.1144981, 1760386626.1182132, 1760386626.121956, 1760386626.1259, 1760386626.129599, 1760386626.1333702, 1760386626.137126, 1760386626.140797, 1760386626.1444988, 1760386626.1481202, 1760386626.151825, 1760386626.155513, 1760386626.159321, 1760386626.163032, 1760386626.16676, 1760386626.170479, 1760386626.174186, 1760386626.1779351, 1760386626.1815538, 1760386626.185285, 1760386626.1889439, 1760386626.1926742, 1760386626.196625, 1760386626.200528, 1760386626.204414, 1760386626.208236, 1760386626.2120872, 1760386626.215936, 1760386626.219886, 1760386626.2238321, 1760386626.2276769, 1760386626.2314181, 1760386626.2353191, 1760386626.2394571, 1760386626.243496, 1760386626.247199, 1760386626.2510688, 1760386626.254836, 1760386626.258613, 1760386626.262389, 1760386626.2663429, 1760386626.270398 ], "xaxis": "x", "y": [ 107847.2, 107847.2, 107843.2, 107843.2, 107843.2, 107841.3, 107841.3, 107841.3, 107841.3, 107841.3, 107841.3, 107841.3, 107841.3, 107841.3, 107841.3, 107841.3, 107841.3, 107841.3, 107841.3, 107841.3, 107841.3, 107841.3, 107841.3, 107841.3, 107841.3, 107841.3, 107841.3, 107841.3, 107835.9, 107835.9, 107835.9, 107835.9, 107835.9, 107835.9, 107835.9, 107835.9, 107835.9, 107835.9, 107835.9, 107835.9, 107835.9, 107835.9, 107835.9, 107835.9, 107835.9, 107835.9, 107835.9, 107835.9, 107835.9, 107835.9, 107835.9, 107835.9, 107835.9, 107835.9, 107835.9, 107835.9, 107835.9, 107835.9, 107835.9, 107835.9, 107835.9, 107835.9, 107835.9, 107835.9, 107835.9, 107835.9, 107835.9, 107835.9, 107841.3, 107841.3, 107841.3, 107841.3, 107841.3, 107841.3, 107841.3, 107841.3, 107841.3, 107841.3, 107843.2, 107847.2, 107847.2, 107847.2, 107847.2, 107847.2, 107847.2, 107847.2, 107847.2, 107847.2, 107847.2, 107847.2, 107851.2, 107851.2, 107851.2, 107851.2, 107851.2, 107851.2, 107851.2, 107851.2, 107851.2, 107851.2, 107851.2, 107851.2, 107851.2, 107851.2, 107851.2, 107851.2, 107851.2, 107851.2, 107851.2, 107851.2, 107851.2, 107851.2, 107851.2, 107851.2, 107851.2, 107851.2, 107851.2, 107851.2, 107851.2, 107851.2, 107851.2, 107851.2, 107851.2, 107851.2, 107851.2, 107851.2, 107851.2, 107848.6, 107848.6, 107848.6, 107848.6, 107848.6, 107848.6, 107847.2, 107841.5, 107841.5, 107841.5, 107841.5, 107841.5, 107841.5, 107841.5, 107841.5, 107840.8, 107840.8, 107840.8, 107836.5, 107836.5, 107829.6, 107829.6, 107829.6, 107822.3, 107822.3, 107813, 107813, 107813, 107813, 107813, 107822.5, 107822.5, 107828.1, 107834.6, 107834.6, 107847.2, 107847.2, 107847.2, 107848.6, 107852.3, 107852.3, 107852.3, 107862.3, 107869, 107869, 107869, 107869, 107869, 107881.7, 107881.7, 107881.7, 107881.7, 107881.7, 107881.7, 107881.7, 107881.7, 107881.7, 107881.7, 107881.7, 107895.4, 107895.4, 107897.2, 107897.2, 107897.2, 107906.9, 107906.9, 107906.9, 107906.9, 107906.9, 107906.9, 107906.9, 107906.9, 107906.9, 107906.9, 107906.9, 107906.9, 107919.1, 107919.1, 107919.1, 107919.1, 107919.1, 107919.1, 107919.1, 107919.1, 107919.1, 107919.1, 107919.1, 107919.1, 107919.1, 107919.1, 107919.1, 107919.1, 107919.1, 107919.1, 107919.1, 107919.1, 107919.1, 107919.1, 107919.1, 107919.1, 107919.1, 107919.1, 107919.1, 107919.1, 107919.1, 107919.1, 107919.1, 107919.1, 107919.1, 107919.1, 107919.1, 107919.1, 107919.1, 107919.1, 107919.1, 107919.1, 107919.1, 107919.1, 107919.1, 107919.1, 107919.1, 107919.1, 107919.1, 107919.1, 107919.1, 107919.1, 107919.1, 107919.1, 107919.1, 107919.1, 107919.1, 107923.7, 107928.5, 107928.5, 107928.5, 107928.5, 107928.5, 107928.5, 107928.5, 107928.5, 107937.3, 107937.3, 107937.3, 107937.3, 107937.3, 107937.3, 107937.3, 107937.3, 107937.3, 107937.3, 107931.5, 107931.5, 107931.5, 107931.5, 107944.9, 107944.9, 107944.9, 107944.9, 107944.9, 107944.9, 107944.9, 107944.9, 107944.9, 107944.9, 107944.9, 107944.9, 107944.9, 107944.9, 107944.9, 107944.9, 107951.2, 107951.2, 107951.2, 107951.2, 107953.1, 107953.1, 107953.1, 107953.1, 107953.1, 107953.1, 107953.1, 107953.1, 107953.1, 107953.1, 107953.1, 107953.1, 107953.1, 107953.1, 107953.1, 107953.1, 107953.1, 107953.1, 107953.1, 107953.1, 107953.1, 107953.1, 107945.4, 107945.4, 107945.4, 107945.4, 107945.4, 107945.4, 107945.4, 107945.4, 107945.4, 107945.4, 107945.4, 107945.4, 107945.4, 107953.1, 107961.9, 107961.9, 107961.9, 107961.9, 107975, 107975, 107975, 107975, 107975, 107975, 107975, 107975, 107975, 107975, 107975, 107975, 107975, 107975, 107975, 107975, 107975, 107977.4, 107977.4, 107977.4, 107977.4, 107977.4, 107977.4, 107977.4, 107977.4, 107977.4, 107977.4, 107977.4, 107977.4, 107977.4, 107977.4, 107982.8, 107982.8, 107982.8, 107982.8, 107982.8, 107982.8, 107982.8, 107982.8, 107982.8, 107982.8, 107982.8, 107982.8, 107982.8, 107982.8, 107982.8, 107982.8, 107982.8, 107982.8, 107982.8, 107982.8, 107982.8, 107982.8, 107982.8, 107982.8, 107982.8, 107982.8, 107985.2, 107988.7, 107988.7, 107988.7, 107988.7, 107988.7, 107988.7, 107988.7, 107988.7, 107988.7, 107988.7, 107988.7, 107988.7, 107988.7, 107988.7, 107988.7, 107988.7, 107995, 107997, 107997, 108005.6, 108005.6, 108006.8, 108006.8, 108009.7, 108009.7, 108009.7, 108017.6, 108017.6, 108017.6, 108017.6, 108017.6, 108017.6, 108017.6, 108017.6, 108017.6, 108023.1, 108023.1, 108023.1, 108023.1, 108023.1, 108023.1, 108023.1, 108023.1, 108023.1, 108023.1, 108023.1, 108023.1, 108023.1, 108023.1, 108023.1, 108023.1, 108023.1, 108023.1, 108023.1, 108023.1, 108023.1, 108023.1, 108023.1, 108026.1, 108026.1, 108026.1, 108031.3, 108031.3, 108039.2, 108039.2, 108039.2, 108039.2, 108039.2, 108039.2, 108039.2, 108039.2, 108039.2, 108039.2, 108039.2, 108039.2, 108039.2, 108039.2, 108039.2, 108039.2, 108039.2, 108039.2, 108052.8, 108052.8, 108052.9, 108066.4, 108066.4, 108069.1, 108069.1, 108069.1, 108069.1, 108069.1, 108069.1, 108072.3, 108072.3, 108072.3, 108072.3, 108072.3, 108072.3, 108072.3, 108074.4, 108079.6 ], "yaxis": "y" }, { "marker": { "color": "red" }, "name": "Bar", "type": "bar", "x": [ 1760386624.4450471, 1760386624.449951, 1760386624.454238, 1760386624.4581409, 1760386624.461955, 1760386624.4657369, 1760386624.469784, 1760386624.473553, 1760386624.477213, 1760386624.480895, 1760386624.4843981, 1760386624.487838, 1760386624.491275, 1760386624.494703, 1760386624.4981482, 1760386624.501567, 1760386624.5050519, 1760386624.5084648, 1760386624.511908, 1760386624.5153332, 1760386624.518728, 1760386624.5221848, 1760386624.5256472, 1760386624.529084, 1760386624.532547, 1760386624.53599, 1760386624.539475, 1760386624.542921, 1760386624.547044, 1760386624.550441, 1760386624.5537999, 1760386624.5571241, 1760386624.5605052, 1760386624.563924, 1760386624.567326, 1760386624.570749, 1760386624.574186, 1760386624.577589, 1760386624.5810292, 1760386624.5844328, 1760386624.587842, 1760386624.59121, 1760386624.594608, 1760386624.598052, 1760386624.6014562, 1760386624.605231, 1760386624.608493, 1760386624.6117408, 1760386624.6150558, 1760386624.618253, 1760386624.6217191, 1760386624.62511, 1760386624.6284852, 1760386624.631943, 1760386624.635375, 1760386624.638762, 1760386624.642208, 1760386624.645592, 1760386624.649056, 1760386624.65241, 1760386624.655869, 1760386624.659274, 1760386624.662722, 1760386624.666189, 1760386624.669662, 1760386624.6732008, 1760386624.676661, 1760386624.680518, 1760386624.684134, 1760386624.6874151, 1760386624.690864, 1760386624.694259, 1760386624.697702, 1760386624.701215, 1760386624.7046568, 1760386624.708092, 1760386624.711513, 1760386624.714968, 1760386624.718407, 1760386624.721856, 1760386624.725339, 1760386624.728697, 1760386624.734358, 1760386624.737725, 1760386624.741172, 1760386624.744571, 1760386624.748, 1760386624.7513611, 1760386624.7548559, 1760386624.7583501, 1760386624.761903, 1760386624.76545, 1760386624.7688901, 1760386624.772485, 1760386624.7758138, 1760386624.7793221, 1760386624.7828, 1760386624.78622, 1760386624.78964, 1760386624.793018, 1760386624.796438, 1760386624.7998562, 1760386624.803408, 1760386624.806897, 1760386624.810364, 1760386624.8138108, 1760386624.817272, 1760386624.82098, 1760386624.824496, 1760386624.828026, 1760386624.831525, 1760386624.8350239, 1760386624.8385322, 1760386624.842026, 1760386624.845857, 1760386624.84918, 1760386624.85265, 1760386624.85611, 1760386624.8595378, 1760386624.8630002, 1760386624.866475, 1760386624.869953, 1760386624.8733902, 1760386624.8768241, 1760386624.880272, 1760386624.883734, 1760386624.8873038, 1760386624.890888, 1760386624.894418, 1760386624.898056, 1760386624.901581, 1760386624.905607, 1760386624.909333, 1760386624.9129229, 1760386624.916488, 1760386624.920013, 1760386624.923577, 1760386624.927145, 1760386624.930679, 1760386624.9342148, 1760386624.9377532, 1760386624.941225, 1760386624.944961, 1760386624.948614, 1760386624.952319, 1760386624.955796, 1760386624.959306, 1760386624.96294, 1760386624.96657, 1760386624.970099, 1760386624.973686, 1760386624.977211, 1760386624.980791, 1760386624.984354, 1760386624.987944, 1760386624.991408, 1760386624.99504, 1760386624.9984782, 1760386625.001917, 1760386625.0054588, 1760386625.0090082, 1760386625.012635, 1760386625.016274, 1760386625.01985, 1760386625.023349, 1760386625.026887, 1760386625.0303628, 1760386625.033813, 1760386625.0373309, 1760386625.040954, 1760386625.0449998, 1760386625.048664, 1760386625.052214, 1760386625.055706, 1760386625.0591412, 1760386625.06278, 1760386625.066389, 1760386625.069918, 1760386625.073452, 1760386625.076976, 1760386625.080395, 1760386625.083879, 1760386625.087436, 1760386625.090912, 1760386625.094461, 1760386625.098047, 1760386625.10145, 1760386625.10506, 1760386625.108675, 1760386625.112187, 1760386625.115802, 1760386625.119412, 1760386625.123039, 1760386625.1265862, 1760386625.1300411, 1760386625.1335838, 1760386625.137163, 1760386625.140768, 1760386625.144756, 1760386625.152229, 1760386625.15732, 1760386625.16133, 1760386625.165474, 1760386625.169811, 1760386625.173822, 1760386625.177702, 1760386625.181477, 1760386625.185191, 1760386625.189173, 1760386625.193488, 1760386625.19736, 1760386625.2012548, 1760386625.204757, 1760386625.20822, 1760386625.211678, 1760386625.215183, 1760386625.218741, 1760386625.222301, 1760386625.225824, 1760386625.229311, 1760386625.232834, 1760386625.2364511, 1760386625.240854, 1760386625.2459788, 1760386625.249714, 1760386625.253361, 1760386625.25689, 1760386625.2604039, 1760386625.263927, 1760386625.26754, 1760386625.2710989, 1760386625.274634, 1760386625.278163, 1760386625.282055, 1760386625.2857459, 1760386625.2892091, 1760386625.292706, 1760386625.2961652, 1760386625.299613, 1760386625.3031611, 1760386625.306664, 1760386625.310241, 1760386625.313707, 1760386625.317257, 1760386625.320777, 1760386625.3243399, 1760386625.328199, 1760386625.331723, 1760386625.3352199, 1760386625.338727, 1760386625.342247, 1760386625.34566, 1760386625.3491552, 1760386625.352701, 1760386625.356257, 1760386625.359791, 1760386625.363349, 1760386625.3669262, 1760386625.370921, 1760386625.374489, 1760386625.3780649, 1760386625.381663, 1760386625.3851929, 1760386625.388756, 1760386625.3923142, 1760386625.39585, 1760386625.399342, 1760386625.403014, 1760386625.406655, 1760386625.41023, 1760386625.4137511, 1760386625.417323, 1760386625.420948, 1760386625.4265249, 1760386625.434676, 1760386625.440732, 1760386625.445199, 1760386625.449526, 1760386625.4537349, 1760386625.457918, 1760386625.4617128, 1760386625.465572, 1760386625.469644, 1760386625.4734201, 1760386625.4771469, 1760386625.480651, 1760386625.4841979, 1760386625.4877388, 1760386625.4912581, 1760386625.494712, 1760386625.4981692, 1760386625.501685, 1760386625.505152, 1760386625.5087051, 1760386625.512267, 1760386625.515902, 1760386625.519535, 1760386625.523159, 1760386625.5268302, 1760386625.530467, 1760386625.5341299, 1760386625.537911, 1760386625.5414011, 1760386625.544893, 1760386625.548398, 1760386625.551954, 1760386625.5555499, 1760386625.559139, 1760386625.5627189, 1760386625.566339, 1760386625.569878, 1760386625.573366, 1760386625.576912, 1760386625.58048, 1760386625.584078, 1760386625.587608, 1760386625.5924249, 1760386625.595904, 1760386625.599394, 1760386625.602942, 1760386625.606403, 1760386625.610042, 1760386625.613591, 1760386625.6172009, 1760386625.6207821, 1760386625.624427, 1760386625.628133, 1760386625.6316679, 1760386625.635317, 1760386625.6388412, 1760386625.642435, 1760386625.645931, 1760386625.649512, 1760386625.653187, 1760386625.656729, 1760386625.660362, 1760386625.664039, 1760386625.667824, 1760386625.671489, 1760386625.6750479, 1760386625.678615, 1760386625.682605, 1760386625.6864388, 1760386625.690059, 1760386625.693687, 1760386625.697273, 1760386625.7008939, 1760386625.704522, 1760386625.708075, 1760386625.711731, 1760386625.715306, 1760386625.718941, 1760386625.722553, 1760386625.726228, 1760386625.729891, 1760386625.733561, 1760386625.737201, 1760386625.740777, 1760386625.744451, 1760386625.7481081, 1760386625.7518249, 1760386625.75546, 1760386625.759118, 1760386625.762756, 1760386625.7664168, 1760386625.7700381, 1760386625.77367, 1760386625.777287, 1760386625.780847, 1760386625.7845209, 1760386625.788123, 1760386625.791693, 1760386625.795368, 1760386625.799083, 1760386625.802795, 1760386625.806417, 1760386625.809997, 1760386625.813615, 1760386625.81727, 1760386625.820897, 1760386625.8245518, 1760386625.828265, 1760386625.832018, 1760386625.836044, 1760386625.839704, 1760386625.8434188, 1760386625.847046, 1760386625.8507788, 1760386625.854491, 1760386625.8581161, 1760386625.861742, 1760386625.8653471, 1760386625.8689668, 1760386625.872596, 1760386625.876234, 1760386625.879849, 1760386625.883563, 1760386625.887388, 1760386625.891128, 1760386625.895069, 1760386625.898973, 1760386625.9027221, 1760386625.9063811, 1760386625.910128, 1760386625.9138482, 1760386625.917587, 1760386625.921193, 1760386625.92481, 1760386625.928482, 1760386625.932162, 1760386625.935992, 1760386625.939592, 1760386625.94327, 1760386625.94687, 1760386625.950507, 1760386625.954476, 1760386625.958239, 1760386625.96191, 1760386625.965614, 1760386625.969408, 1760386625.9731042, 1760386625.976854, 1760386625.9805188, 1760386625.9842272, 1760386625.9878988, 1760386625.991644, 1760386625.995414, 1760386625.999135, 1760386626.002816, 1760386626.00644, 1760386626.0100632, 1760386626.013691, 1760386626.017375, 1760386626.021028, 1760386626.024676, 1760386626.028417, 1760386626.0321548, 1760386626.035933, 1760386626.039676, 1760386626.044485, 1760386626.0484312, 1760386626.052129, 1760386626.055913, 1760386626.0595882, 1760386626.063166, 1760386626.066818, 1760386626.07044, 1760386626.074037, 1760386626.077697, 1760386626.081293, 1760386626.085003, 1760386626.088635, 1760386626.092331, 1760386626.0959501, 1760386626.0995798, 1760386626.1032581, 1760386626.107119, 1760386626.1108632, 1760386626.1144981, 1760386626.1182132, 1760386626.121956, 1760386626.1259, 1760386626.129599, 1760386626.1333702, 1760386626.137126, 1760386626.140797, 1760386626.1444988, 1760386626.1481202, 1760386626.151825, 1760386626.155513, 1760386626.159321, 1760386626.163032, 1760386626.16676, 1760386626.170479, 1760386626.174186, 1760386626.1779351, 1760386626.1815538, 1760386626.185285, 1760386626.1889439, 1760386626.1926742, 1760386626.196625, 1760386626.200528, 1760386626.204414, 1760386626.208236, 1760386626.2120872, 1760386626.215936, 1760386626.219886, 1760386626.2238321, 1760386626.2276769, 1760386626.2314181, 1760386626.2353191, 1760386626.2394571, 1760386626.243496, 1760386626.247199, 1760386626.2510688, 1760386626.254836, 1760386626.258613, 1760386626.262389, 1760386626.2663429, 1760386626.270398 ], "xaxis": "x", "y": [ -297348272.1903124, -297030365.31536436, -297334848.10368586, -297545021.7087593, -297569594.3864994, -297483622.3529959, -297745808.53976154, -297590790.0212145, -297754733.86208725, -297535348.79551935, -297500797.49208355, -297382526.09797287, -297319379.5381255, -297271270.83960104, -297073180.5986004, -296927326.59752417, -296898906.98906136, -296911620.49437046, -296613345.9675884, -296422618.0367074, -296345055.1697664, -296209575.87174845, -296163362.57288885, -295911517.6645613, -295822891.93609715, -295753894.8160372, -295666384.6248684, -294337343.17643213, -293698285.9191313, -293527952.1408787, -293252095.5691452, -293132819.9623213, -293198122.83858395, -293020934.9426718, -292623222.62211037, -292595113.4606619, -292689689.40171146, -292625701.57469845, -292801238.1283541, -292529065.1891103, -292304228.66607, -292229548.4193959, -292748251.00590944, -292666197.89439774, -292793787.2864585, -292753194.05607986, -292699256.9635749, -293039719.28997326, -292889122.43013096, -293082157.38168097, -293110699.6833401, -293380708.3700657, -293354091.78322315, -293539677.7291846, -293327510.86600876, -293627054.6990366, -293569284.7826605, -293557255.9848819, -293478425.9690914, -293613584.9210019, -293581380.1713786, -293647280.2427707, -293413863.1153588, -293172059.25309515, -293122629.61238337, -293275386.87921524, -293392883.4289913, -293321804.2011957, -293364394.1427083, -292903697.2281203, -293359250.4515996, -292959416.67581797, -293097456.61294556, -292895860.05078745, -292885879.43169165, -292843745.5406618, -292972749.81104326, -292948237.9358835, -292967704.3441858, -292615532.54783964, -292325233.4190607, -292144927.7301998, -291854869.4662061, -291554827.8021269, -291719703.85769224, -291901914.2770157, -292110640.27805996, -292602924.73618793, -292695840.2839141, -292491755.356441, -292451287.7537775, -292268554.29155207, -291972050.44320965, -292018173.01885986, -292109971.734334, -292125509.92221403, -291937507.73515844, -292187674.9328456, -292034479.9517231, -292097163.7889571, -292747149.9476638, -292685880.2705021, -292641450.6745167, -292616222.7446513, -292588406.84745693, -292692066.2132139, -292756091.26146746, -293343507.12441254, -293326742.8485966, -293623216.56669617, -294108120.8446083, -294102625.7365694, -293901690.2795062, -293555508.54568434, -294317788.9385443, -294229180.1851158, -294144078.55915785, -293927903.3970189, -293839622.7580228, -293675109.35596704, -293800744.428195, -293544542.8105793, -293538790.7906079, -293361262.9976015, -293410415.40892696, -293407665.81714773, -293278079.6292763, -292968402.3423085, -293011508.3443785, -292922165.66415596, -292883624.797317, -292770550.1014309, -292691353.4613538, -292586838.8790293, -292483412.9388485, -292653516.4123883, -292398571.5989032, -292311826.74841166, -292111492.4616089, -291921973.50965834, -292090499.3684993, -291813208.7788935, -289852194.0872655, -289814826.2856393, -289802029.5071225, -287975939.93449926, -288782313.8948488, -288271691.41919327, -288238442.2270069, -288000737.36183643, -288311899.8557558, -288232418.71438456, -288504369.75799465, -288087873.25318575, -287925530.9098897, -287746363.0751219, -288014074.8623781, -287836941.8829503, -287704043.1906471, -286839148.8593049, -286360714.54521227, -286156207.92395544, -286323963.997015, -286205097.1747246, -285828966.37310505, -285366422.3549819, -285210247.53169394, -285147522.3831711, -285166506.91207075, -285722502.53451586, -284590013.5465336, -284247987.89980745, -283486380.4757085, -283460582.362792, -283179680.4971838, -283945004.7349763, -284313638.50234556, -283838251.52608776, -283811771.84515667, -283769362.93844366, -283771703.217968, -284032082.1071086, -284082971.6595073, -284132559.86379385, -284135521.032042, -284110338.69516754, -284259314.77369356, -285451860.1738634, -284767368.85248184, -284807283.71554756, -284787822.35106564, -284608489.19098616, -284279281.824183, -284075461.2655535, -284185999.2649765, -284193750.7420335, -284289803.02573824, -284440604.27767944, -284686780.66769075, -284744104.9860916, -284707981.3787203, -285017376.77172804, -284718549.0253463, -283608280.02520514, -283352885.2145395, -282996072.4488349, -281966440.86333656, -282052216.4225731, -281338498.31572056, -281227049.31802654, -281517596.57474995, -281445216.8237381, -281531897.5874305, -281800110.33852625, -281937168.0073228, -282025105.18937063, -281681132.9976888, -281868591.56908274, -281780175.30792236, -281404064.2427478, -281397039.52930164, -281070864.95888376, -281243315.13700724, -281123331.2475209, -281228664.3239784, -281084902.29256725, -281006043.6245351, -280771816.87561274, -280513761.4382777, -280330500.031445, -280467171.5654125, -280447070.1923256, -280717307.442461, -280649853.544106, -280722301.32553625, -280857136.6132922, -279839854.8296013, -279784106.7233772, -279719573.0374875, -279667729.686708, -279456411.12670326, -279533820.69646025, -278943020.64441156, -279021986.9863181, -278770910.9009218, -278888008.37932205, -279527991.0685301, -279723110.71033, -279814295.24978256, -279669813.81354, -279685115.2168813, -279816539.4343972, -279796686.7378068, -280095984.19531965, -280779547.58449316, -280909257.0458584, -281216320.7685466, -281299960.8187504, -281627362.8883095, -281282971.3539686, -280794021.92063, -280530661.89268446, -280241150.3828211, -280129503.86173916, -279819436.28573847, -279990378.4270611, -280171668.5154309, -280179493.7433195, -280049085.01956844, -279514190.8893285, -279283962.3330622, -279208876.16787195, -279155058.79290915, -279282070.8019452, -279338552.8741884, -279731107.7726059, -279091816.5464163, -279723410.48853874, -279781652.2541666, -279808032.6776147, -279783535.7912197, -279657802.6685829, -280075600.2573781, -279685659.73400545, -279305424.6676297, -278717235.0455947, -278530137.2580209, -278418858.6006198, -278187962.21600246, -278024976.1258168, -278202796.82028055, -278046018.49031544, -277959656.61347294, -277688482.9402256, -277477809.6994972, -277410217.1820798, -277533408.89822245, -277585018.5908189, -277649075.2033067, -277733236.05838823, -278125307.1750674, -277957735.90696335, -278301154.68774796, -277922570.91556454, -277665981.1806512, -277732228.39047146, -277641966.6963105, -278080306.38225555, -278237999.796597, -278348796.07304525, -278099276.9566841, -278104902.1507497, -277925136.6429782, -277828740.01484394, -277885238.3036432, -277527616.80049515, -277803056.463819, -277460292.4369674, -277244707.81821537, -277191368.2009983, -276688001.54131985, -276657345.92574596, -276704372.356884, -276690942.301075, -276497363.82096004, -276185555.0582471, -276264330.12369967, -276123798.26724863, -276196455.88794374, -276426860.1219783, -276415564.9591398, -276439405.68224764, -276464045.6315503, -276523926.796823, -276672520.65244913, -277054243.5253558, -276426477.0450034, -276145675.9907112, -276027423.15735435, -275510126.726737, -275361134.70436764, -274908883.1289263, -275460726.9838748, -274508998.5047045, -274191204.47292805, -274077054.9626026, -273711067.3899708, -273440260.61666536, -273486958.59952784, -273593780.7628894, -273617726.5542612, -273707716.9979892, -273660369.83314085, -273068167.8219185, -273080590.8081341, -273211260.5287843, -273212987.55195904, -273342746.09621143, -273558016.1803498, -273166882.8931012, -272780466.1916356, -272646338.39963436, -272576944.37580013, -272117253.35132885, -271703781.80245256, -271583444.7345753, -271412441.2353983, -271475095.1972008, -271633653.96650505, -271591137.1455989, -271562081.9394522, -271552785.5977955, -271387702.68141794, -271731113.11179733, -271521661.09139204, -271344613.3414135, -271201942.9618449, -271281177.17529154, -271698298.5201402, -271414981.7624078, -271642255.6075015, -271243037.6556454, -271238312.0919175, -271178535.4737396, -270864080.22156334, -270648119.06197023, -270573537.10897684, -270355818.34417343, -270681731.06573296, -270736964.31394434, -270466036.3451128, -270419809.7714472, -270182198.54677916, -270144480.14619446, -270228829.0952654, -270470086.390604, -270543880.10470915, -270554823.2558975, -270356636.1290207, -270251093.2240939, -270604341.5116534, -270446377.3250475, -270503364.7185478, -270252942.108243, -270393247.4920163, -270219251.5657611, -269871453.7413182, -270150595.24698925, -270148121.39918995, -270328959.81114244, -270283206.03980637, -270162073.22359085, -270242887.7124524, -270231198.6353545, -270184043.8837495, -269669489.959373, -268614098.2239313, -268171862.13466072, -267532565.29519844, -266698542.68967295, -266409355.81618738, -265950766.25912237, -265885916.3150959, -265621768.3541751, -265559015.76143932, -266005398.68826008, -265918631.6955948, -265786649.51219845, -265473032.85030413, -265515331.74165344, -264754577.47465467, -264533089.51040554, -264305331.05918264, -263647430.53568554, -263062726.10940027, -263032425.39856815, -262813922.4225974, -262764408.92570877, -261782609.0015564, -261582187.80464602, -261859183.9441738, -261987419.03940916, -261721552.87748957, -261709517.24828577, -261727591.53574657, -261774841.58263206, -262485114.55592775, -262562141.1021614, -262577451.48830557, -262461416.85430336, -262514371.30458546, -262575472.4750147, -262813367.35421562, -262641858.6153474, -262529488.80148697, -262687788.9719653, -262523987.45829868, -262495825.67657852, -262989396.80674505, -262898172.16240978, -262646325.22236633, -262381691.82088137, -262014839.31597185, -261820729.33127928, -262178533.2632661, -262118814.2227006, -261867474.49093485, -261715826.23844814, -262457696.01305103, -262423517.2474742, -262607578.07613468, -262736946.03564978, -262679073.3017249, -262347861.37984133, -262230193.0348363, -262215897.41664934, -262877545.63227224, -262247634.57537127, -262630116.23003864, -262587414.52895832, -261861234.78766918, -262137299.8645668, -261667718.86340666, -261380712.58268118, -260804166.60934877, -260546714.22879696, -261380925.01654053, -261095005.9628744, -260742086.02784252, -260513611.47376823, -260691897.92086506, -260285903.55820227, -260282130.50870085, -260299525.18747044, -260400552.3714738, -260369613.13776684, -260344825.26663494, -260426586.20193434, -260220860.39463568, -259964931.51003695 ], "yaxis": "y2" } ], "layout": { "autosize": true, "template": { "data": { "bar": [ { "error_x": { "color": "#2a3f5f" }, "error_y": { "color": "#2a3f5f" }, "marker": { "line": { "color": "#E5ECF6", "width": 0.5 }, "pattern": { "fillmode": "overlay", "size": 10, "solidity": 0.2 } }, "type": "bar" } ], "barpolar": [ { "marker": { "line": { "color": "#E5ECF6", "width": 0.5 }, "pattern": { "fillmode": "overlay", "size": 10, "solidity": 0.2 } }, "type": "barpolar" } ], "carpet": [ { "aaxis": { "endlinecolor": "#2a3f5f", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "#2a3f5f" }, "baxis": { "endlinecolor": "#2a3f5f", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "#2a3f5f" }, "type": "carpet" } ], "choropleth": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "type": "choropleth" } ], "contour": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1, "#f0f921" ] ], "type": "contour" } ], "contourcarpet": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "type": "contourcarpet" } ], "heatmap": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1, "#f0f921" ] ], "type": "heatmap" } ], "heatmapgl": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1, "#f0f921" ] ], "type": "heatmapgl" } ], "histogram": [ { "marker": { "pattern": { "fillmode": "overlay", "size": 10, "solidity": 0.2 } }, "type": "histogram" } ], "histogram2d": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1, "#f0f921" ] ], "type": "histogram2d" } ], "histogram2dcontour": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1, "#f0f921" ] ], "type": "histogram2dcontour" } ], "mesh3d": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "type": "mesh3d" } ], "parcoords": [ { "line": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "parcoords" } ], "pie": [ { "automargin": true, "type": "pie" } ], "scatter": [ { "fillpattern": { "fillmode": "overlay", "size": 10, "solidity": 0.2 }, "type": "scatter" } ], "scatter3d": [ { "line": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatter3d" } ], "scattercarpet": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattercarpet" } ], "scattergeo": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattergeo" } ], "scattergl": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattergl" } ], "scattermapbox": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattermapbox" } ], "scatterpolar": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatterpolar" } ], "scatterpolargl": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatterpolargl" } ], "scatterternary": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatterternary" } ], "surface": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1, "#f0f921" ] ], "type": "surface" } ], "table": [ { "cells": { "fill": { "color": "#EBF0F8" }, "line": { "color": "white" } }, "header": { "fill": { "color": "#C8D4E3" }, "line": { "color": "white" } }, "type": "table" } ] }, "layout": { "annotationdefaults": { "arrowcolor": "#2a3f5f", "arrowhead": 0, "arrowwidth": 1 }, "autotypenumbers": "strict", "coloraxis": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "colorscale": { "diverging": [ [ 0, "#8e0152" ], [ 0.1, "#c51b7d" ], [ 0.2, "#de77ae" ], [ 0.3, "#f1b6da" ], [ 0.4, "#fde0ef" ], [ 0.5, "#f7f7f7" ], [ 0.6, "#e6f5d0" ], [ 0.7, "#b8e186" ], [ 0.8, "#7fbc41" ], [ 0.9, "#4d9221" ], [ 1, "#276419" ] ], "sequential": [ [ 0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1, "#f0f921" ] ], "sequentialminus": [ [ 0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1, "#f0f921" ] ] }, "colorway": [ "#636efa", "#EF553B", "#00cc96", "#ab63fa", "#FFA15A", "#19d3f3", "#FF6692", "#B6E880", "#FF97FF", "#FECB52" ], "font": { "color": "#2a3f5f" }, "geo": { "bgcolor": "white", "lakecolor": "white", "landcolor": "#E5ECF6", "showlakes": true, "showland": true, "subunitcolor": "white" }, "hoverlabel": { "align": "left" }, "hovermode": "closest", "mapbox": { "style": "light" }, "paper_bgcolor": "white", "plot_bgcolor": "#E5ECF6", "polar": { "angularaxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" }, "bgcolor": "#E5ECF6", "radialaxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" } }, "scene": { "xaxis": { "backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white" }, "yaxis": { "backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white" }, "zaxis": { "backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white" } }, "shapedefaults": { "line": { "color": "#2a3f5f" } }, "ternary": { "aaxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" }, "baxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" }, "bgcolor": "#E5ECF6", "caxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" } }, "title": { "x": 0.05 }, "xaxis": { "automargin": true, "gridcolor": "white", "linecolor": "white", "ticks": "", "title": { "standoff": 15 }, "zerolinecolor": "white", "zerolinewidth": 2 }, "yaxis": { "automargin": true, "gridcolor": "white", "linecolor": "white", "ticks": "", "title": { "standoff": 15 }, "zerolinecolor": "white", "zerolinewidth": 2 } } }, "xaxis": { "anchor": "y", "autorange": true, "domain": [ 0, 0.94 ], "range": [ 1760386624.3339527, 1760386626.3814924 ], "type": "linear" }, "yaxis": { "anchor": "x", "autorange": true, "domain": [ 0, 1 ], "range": [ 107790.99902912621, 108101.6009708738 ], "type": "linear" }, "yaxis2": { "anchor": "x", "autorange": true, "overlaying": "y", "range": [ -313426035.64430237, 0 ], "side": "right", "type": "linear" } } }, "image/png": "iVBORw0KGgoAAAANSUhEUgAABF4AAAFoCAYAAABuXz/oAAAQAElEQVR4Aey9B4AkV3X1f151z+7szuasTBIgBCiQRUYIbDI2BguD8d9gTI72hzG2MWBAwuQcbfGRQYAAWUhIQhICRDDG2PjDBhuMUNowcXcndnf9z7nV1dMTd3Z3dnfC6e1X775777vvvV9VV/fcra7Ocj9MwARMwARMwARMwARMwARMwARMwASWOgGv7xgRyOCHCZiACZiACZiACZiACZiACZiACRw1Ah7IBJYXASdeltf+9mpNwARMwARMwARMwARMwARKAq5NwARM4CgQcOLlKED2ECZgAiZgAiZgAiZgAiYwGwHbTMAETMAEli4BJ16W7r71ykzABEzABEzABEzgYAnY3wRMwARMwARMYJ4JOPEyz0AdzgRMwARMwARMYD4IOIYJmIAJmIAJmIAJLA0CTrwsjf3oVZiACZiACRwpAo5rAiZgAiZgAiZgAiZgAodBwImXw4DnriZgAiZwNAl4LBMwARMwARMwARMwARMwgcVHwImXxbfPPGMTONYEPL4JmIAJmIAJmIAJmIAJmIAJmMAcCTjxMkdQdluIBDwnEzABEzABEzABEzABEzABEzABE1jYBJx4mY/94xgmYAImYAImYAImYAImYAImYAImYAJLn8AhrNCJl0OA5i4mYAImYAImYAImYAImYAImYAImcCwJeOzFQ8CJl8WzrzxTEzABEzABEzABEzABEzABE1hoBDwfEzCBAxBw4uUAgGw2ARMwARMwARMwARMwARNYDAQ8RxMwARNYmASceFmY+8WzMgETMAETMAETMAETWKwEPG8TMAETMAETaCPgxEsbDIsmYAImYAImYAImsJQIeC0mYAImYAImYALHnoATL8d+H3gGJmACJmACJrDUCXh9JmACJmACJmACJrBsCTjxsmx3vRduAiZgAsuRgNdsAiZgAiZgAiZgAiZgAkeXgBMvR5e3RzMBEzCBgoC3JmACJmACJmACJmACJmACy4KAEy/LYjd7kSYwMwFbTMAETMAETMAETMAETMAETMAEjhwBJ16OHFtHPjgC9jYBEzABEzABEzABEzABEzABEzCBJUfAiZcpu9QKEzABEzABEzABEzABEzABEzABEzCBpU/g6KzQiZejw9mjmIAJmIAJmIAJmIAJmIAJmIAJmMD0BKxd0gSceFnSu9eLMwETMAETMAETMAETMAETMIG5E7CnCZjA/BNw4mX+mTqiCZiACZiACZiACZiACZjA4RFwbxMwARNYMgSceFkyu9ILMQETMAETMAETMAETmH8CjmgCJmACJmACh0fAiZfD4+feJmACJmACJmACJnB0CHgUEzABEzABEzCBRUnAiZdFuds8aRMwARMwARM4dgQ8sgmYgAmYgAmYgAmYwNwJOPEyd1b2NAETMAETWFgEPBsTMAETMAETMAETMAETWPAEnHhZ8LvIEzQBE1j4BDxDEzABEzABEzABEzABEzABE5iegBMv03Ox1gQWJwHP2gRMwARMwARMwARMwARMwARMYEERcOJlQe2OpTMZr8QETMAETMAETMAETMAETMAETMAETABY6okX72MTMAETMAETMAETMAETMAETMAETMIGlT2DBrtCJlwW7azwxEzABEzABEzABEzABEzABEzCBxUfAMzaBiQSceJnIwy0TMAETMAETMAETMAETMAETWBoEvAoTMIEFQcCJlwWxGzwJEzABEzABEzABEzABE1i6BLwyEzABE1jOBJx4Wc5732s3ARMwARMwARMwgeVFwKs1ARMwARMwgaNOwImXo47cA5qACZiACZiACZiACZiACZiACZiACSwXAk68LJc97XWagAmYgAmYwHQErDMBEzABEzABEzABEziiBJx4OaJ4HdwETMAETGCuBOxnAiZgAiZgAiZgAiZgAkuRgBMvS3Gvek0mYAKHQ8B9TcAETMAETMAETMAETMAETGDeCDjxMm8oHcgE5puA45mACZiACZiACZiACZiACZiACSx2Ak68LPY9eDTm7zFMwARMwARMwARMwARMwARMwARMwAQOicCiSrwc0grdyQRMwARMwARMwARMwARMwARMwARMYFERWEqTdeJlKe1Nr8UETMAETMAETMAETMAETMAETGA+CTiWCRw2ASdeDhuhA5iACZiACZiACZiACZiACZjAkSbg+CZgAouVgBMvi3XPed4mYAImYAImYAImYAImcCwIeEwTMAETMIGDIuDEy0HhsrMJmIAJmIAJmIAJmMBCIeB5mIAJmIAJmMBiIODEy2LYS56jCZiACZiACZjAQibguZmACZiACZiACZjAjASceJkRjQ0mYAImYAImsNgIeL4mYAImYAImYAImYAILjYATLwttj3g+JmACJrAUCHgNJmACJmACJmACJmACJmACQcCJl8DgjQmYwFIl4HWZgAmYgAmYgAmYgAmYgAmYwLEk4MTLsaTvsZcTAa/VBEzABEzABEzABEzABEzABExgGRJw4mXZ7XQv2ARMwARMwARMwARMwARMwARMwARM4GgROHaJl6O1Qo9jAiZgAiZgAiZgAiZgAiZgAiZgAiZw7Ags85GdeFnmB4CXbwImYAImYAImYAImYAImYALLhYDXaQLHgoATL8eCusc0ARMwARMwARMwARMwARNYzgS8dhMwgWVEwImXZbSzvVQTMAETMAETMAETMAETmEjALRMwARMwgSNNwImXI03Y8U3ABEzABEzABEzABA5MwB4mYAImYAImsEQJOPGyRHesl2UCJmACJmACJnBoBNzLBEzABEzABEzABOaTgBMv80nTsUzABEzABExg/gg4kgmYgAmYgAmYgAmYwBIg4MTLEtiJXoIJmIAJHFkCjm4CJmACJmACJmACJmACJnCoBJx4OVRy7mcCJnD0CXhEEzABEzABEzABEzABEzABE1hkBJx4WWQ7zNNdGAQ8CxMwARMwARMwARMwARMwARMwAROYCwEnXuZCaeH6eGYmYAImYAImYAImYAImYAImYAImYAILmMA8JV4W8Ao9NRMwARMwARMwARMwARMwARMwARMwgXki4DAHS8CJl4MlZn8TMAETMAETMAETMAETMAETMIFjT8AzMIFFQsCJl0WyozxNEzABEzABEzABEzABEzCBhUnAszIBEzCB2Qg48TIbHdtMwARMwARMwARMwARMYPEQ8ExNwARMwAQWIAEnXhbgTvGUTMAETMAETMAETGBxE/DsTcAETMAETMAESgJOvJQkXJuACZiACZiACSw9Al6RCZiACZiACZiACRxjAk68HOMd4OFNwARMwASWBwGv0gRMwARMwARMwARMYHkScOJlee53r9oETGD5EvDKTcAETMAETMAETMAETMAEjiIBJ16OImwPZQIm0E7AsgmYgAmYgAmYgAmYgAmYgAksfQJOvCz9fewVHoiA7SZgAiZgAiZgAiZgAiZgAiZgAiZwhAg48XKEwB5KWPcxARMwARMwARMwARMwARMwARMwARNYWgSmS7wsrRV6NSZgAiZgAiZgAiZgAiZgAiZgAiZgAtMRsO4oEHDi5ShA9hAmYAImYAImYAImYAImYAImYAKzEbDNBJYuASdelu6+9cpMwARMwARMwARMwARMwAQOloD9TcAETGCeCTjxMs9AHc4ETMAETMAETMAETMAE5oOAY5iACZiACSwNAk68LI396FWYgAmYgAmYgAmYwJEi4LgmYAImYAImYAKHQcCJl8OA564mYAImYAImYAJHk4DHMgETMAETMAETMIHFR8CJl8W3zzxjEzABEzCBY03A45uACZiACZiACZiACZjAHAk48TJHUHYzARMwgYVIwHMyARMwARMwARMwARMwARNY2ASceFnY+8ezM4HFQsDzNAETMAETMAETMAETMAETMAETmIaAEy/TQLFqMRPw3E3ABEzABEzABEzABEzABEzABExg4RBw4uVI7QvHNQETMAETMAETMAETMAETMAETMAETWPoEDrBCJ14OAMhmEzABEzABEzABEzABEzABEzABE1gMBDzHhUnAiZeFuV88KxMwARMwARMwARMwARMwARNYrAQ8bxMwgTYCTry0wbBoAiZgAiZgAiZgAiZgAiawlAh4LSZgAiZw7Ak48XLs94FnYAImYAImYAImYAImsNQJeH0mYAImYALLloATL8t213vhJmACJmACJmACy5GA12wCJmACJmACJnB0CTjxcnR5ezQTMAETMAETMIGCgLcmYAImYAImYAImsCwIOPGyLHazF2kCJmACJjAzAVtMwARMwARMwARMwARM4MgRcOLlyLF1ZBMwARM4OAL2NgETMAETMAETMAETOKoEGo0ct+3uQa1eP6rjerDlRWDBJ170QqjXG9PuFdlme5EMDg2jf2D/tH2nU+Z5Pu0L7qrrf4Td3X3TdbHOBJYkAS/KBEzABEzABEzABEzABJY6getu+Anu99jn49zfewXOOPfZ+PzXrl3qS/b6jhGBBZ14USLkdW+/CK9/x8en4JntRbJzdy9e/Jp34aG/8zI88mmvxDNf/Cb87Be/nhJjsuLSK2/Ao37/zyar8eo3fQQ//+VNU/RWHHECHsAETMAETMAETMAETMAETMAE5p3A0PAo/uz1H8CL/vjJ+MnVH8O73vBivO5tF+GmW3fP+1gOaAILNvFyxbU/wEOe/BJcfOl1U/bSgV4kb/vg5zAyOobvfvW9uOHS9+F2J+3Auz568ZQ4peLGm3fi0ef/Of7iTR8uVZNqN03ABEzABEzABEzABEzABEzA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zz+4EVt+d4VbFyk2pY9+rAvl1TVO3/nx6UdZXdqIB2+9CAzLNx3FrpuqriVLV6q6xvWbXnzoavcd8Mqjv3LfAbEn9KzD5JFoGH7iqEGxpGlfSwjEvocTy0Jiu3XG6sOtDbk2TiNVu8WyxXK+u/bB88pvt3gBtlOvPn492DY998BVuO2qc8D46Jeq3WIYLoDLNpHtx2tP3ugWl6Y7DeMpL10zJ+Xv8n1CHjEOp56wCLF4mS6uP8b4GC8N6055dU3tFgnJkECqula23UpV15K1D55Xfl1L1W4dyLqWqk38472XlaqrD9+2HsccPivp1ECyr7VGGRcBEdhrAhJe9hpd9T2RQkvb1i3cVIjd5YIdKc6rZ0NZ1p+NK8WM+vWyynrFj8s7lwEoiLRp1Rye97/1MOgeM+x8ZjdtFDuslL3neWjerDHa57YE8w59RGA/haKnzgAACO5JREFUEWB5S1bXOCotJjCWTVKqusa4ue5D2fNix8nqGs9Nlq5YHLvbN2pYH/wOiI1W210YuYnAviCQrH1I1m6x40VRg6JleelK1m4xbrYfsQcJZeNIlq6yYROPY/GWly7VtURasu8vAqnaB5bb8upLqnaLeSjvXPox7orWNYbfE5OsTdyTeBRWBERABPaWgISXvSWn80RABERABERABERABGozAeVdBERABERABCpEQMJLhTApkAiIgAiIgAiIgAhUVQJKlwiIgAiIgAiIQFUmIOGlKt8dpU0EREAEREAEqhMBpVUEREAEREAEREAERGAXAhJedkEiBxEQAREQgepOQOkXAREQAREQAREQAREQgapCQMJLVbkTSocIiEBNJKA8iYAIiIAIiIAIiIAIiIAI1HICEl5qeQFQ9msLAeVTBERABERABERABERABERABETgQBCQ8HIgqNfmayrvIiACIiACIiACIiACIiACIiACIlCLCNRa4aUW3WNlVQREQAREQAREQAREQAREQAREQARqLYEDnXEJLwf6Duj6IiACIiACIiACIiACIiACIiACtYGA8lhLCUh4qaU3XtkWAREQAREQAREQAREQARGorQSUbxEQgf1JQMLL/qSta4mACIiACIiACIiACIiACPyPgGwiIAIiUAsISHipBTdZWRQBERABERABERABEUhOQL4iIAIiIAIisK8ISHjZV2QVrwiIgAiIgAiIgAjsOQGdIQIiIAIiIAIiUMMISHipYTdU2REBERABERCByiGgWERABERABERABERABCqDgISXyqCoOERABERABPYdAcUsAiIgAiIgAiIgAiIgAtWYgISXanzzlHQREIH9S0BXEwEREAEREAEREAEREAEREIE9JSDhZU+JKbwIHHgCSoEIiIAIiIAIiIAIiIAIiIAIiEA1ISDhpZrcqKqZTKVKBERABERABERABERABERABERABEQgGYGaIbwky6H8REAEREAEREAEREAEREAEREAEREAEagaBapgLCS/V8KYpySIgAiIgAiIgAiIgAiIgAiIgAgeWgK4uAhUlIOGloqQUTgREQAREQAREQAREQAREQASqHgGlSAREoIoTkPBSxW+QkicCIiACIiACIiACIiAC1YOAUikCIiACIrA7AhJedkdFbiIgAiIgAiIgAiIgAtWXgFIuAiIgAiIgAlWIgISXKnQzlBQREAEREAEREIGaRUC5EQEREAEREAEREAEJLyoDIiACIiACIlDzCSiHIiACIiACIiACIiACB4iAhJcDBF6XFQEREIHaSUC5FgEREAEREAEREAEREIHaRUDCS+2638qtCIhAjID2IiACIiACIiACIiACIiACIrAfCEh42Q+QdQkRSEZAfiIgAiIgAiIgAiIgAiIgAiIgAjWXgISXmntv9zRnCi8CIiACIiACIiACIiACIiACIiACIlDJBKqg8FLJOVR0IiACIiACIiACIiACIiACIiACIiACVZBA7UiShJfacZ+VSxEQAREQAREQAREQAREQAREQgfIIyF0E9iEBCS/7EK6iFgEREAEREAEREAEREAEREIE9IaCwIiACNY+AhJead0+VIxEQAREQAREQAREQARH4vgR0vgiIgAiIQCURkPBSSSAVjQiIgAiIgAiIgAiIwL4goDhFQAREQAREoHoTkPBSve+fUi8CIiACIiACIrC/COg6IiACIiACIiACIrAXBCS87AU0nSICIiACIiACB5KAri0CIiACIiACIiACIlB9CEh4qT73SikVAREQgapGQOkRAREQAREQAREQAREQARFIQUDCSwpA8hYBEagOBJRGERABERABERABERABERABEaiaBCS8VM37olRVVwJKtwiIgAiIgAiIgAiIgAiIgAiIgAgkEJDwkgCjJlmVFxEQAREQAREQAREQAREQAREQAREQgQNPYF8LLwc+h0qBCIiACIiACIiACIiACIiACIiACIjAviag+MshIOGlHDByFgEREAEREAEREAEREAEREAERqI4ElGYRqFoEJLxUrfuh1IiACIiACIiACIiACIiACNQUAsqHCIiACBgBCS8GQf8iIAIiIAIiIAIiIAIiUJMJKG8iIAIiIAIHjoCElwPHXlcWAREQAREQAREQgdpGQPkVAREQAREQgVpHQMJLrbvlyrAIiIAIiIAIiAAgBiIgAiIgAiIgAiKwfwhIeNk/nHUVERABERABEdg9AbmKgAiIgAiIgAiIgAjUaAISXmr07VXmREAERKDiBBRSBERABERABERABERABESg8glIeKl8popRBETg+xHQ2SIgAiIgAiIgAiIgAiIgAiJQYwhIeKkxt1IZqXwCilEEREAEREAEREAEREAEREAEREAEvh8BCS/fj9/+OVtXEQEREAEREAEREAEREAEREAEREAERqJYE9kh4qZY5VKJFQAREQAREQAREQAREQAREQAREQAT2iIACVx4BCS+Vx1IxiYAIiIAIiIAIiIAIiIAIiIAIVC4BxSYC1Z6AhJdqfwuVAREQAREQAREQAREQAREQgX1PQFcQAREQgb0jIOFl77jpLBEQAREQAREQAREQARE4MAR0VREQAREQgWpFQMJLtbpdSqwIiIAIiIAIiIAIVB0CSokIiIAIiIAIiEBqAhJeUjNSCBEQAREQAREQgapNQKkTAREQAREQAREQgSpLQMJLlb01SpgIiIAIiED1I6AUi4AIiIAIiIAIiIAIiEBpAhJeSvPQkQiIgAjUDALKhQiIgAiIgAiIgAiIgAiIQJUgIOGlStwGJUIEai4B5UwEREAEREAEREAEREAEREAEajMBCS+1+e7XrrwrtyIgAiIgAiIgAiIgAiIgAiIgAiKw3wlIeNnvyHVBERABERABERABERABERABERABERCBmk8gmkMJL1EO2oqACIiACIiACIiACIiACIiACIhAzSSgXB1QAhJeDih+XVwEREAEREAEREAEREAEREAEag8B5VQEaiMBCS+18a4rzyIgAiIgAiIgAiIgAiJQuwko9yIgAiKw3wj8PwAAAP//4u4CxAAAAAZJREFUAwDsFEFQs+2x8gAAAABJRU5ErkJggg==", "text/html": [ "
" ] }, "metadata": {}, "output_type": "display_data" } ], "source": [ "import plotly.graph_objects as go\n", "from plotly.subplots import make_subplots\n", "\n", "\n", "start_idx = 12200\n", "end_idx = start_idx+500\n", "\n", "# Создаем субграфики с двойной вертикальной осью\n", "fig = make_subplots(specs=[[{\"secondary_y\": True}]])\n", "fig.add_trace(go.Scatter(x=x[start_idx:end_idx], y=prices[start_idx:end_idx], mode='lines+markers', name=\"Line\"),secondary_y=False,)\n", "fig.add_trace(go.Bar(x=x[start_idx:end_idx], y=balance[start_idx:end_idx], name=\"Bar\", marker_color='red',), secondary_y=True,)\n", "fig.show()\n" ] }, { "cell_type": "code", "execution_count": null, "id": "ecf34523-9e9a-4f3f-a0c8-308cedefefff", "metadata": {}, "outputs": [], "source": [] }, { "cell_type": "code", "execution_count": null, "id": "15459f27-bff5-403a-b0c9-22018d7acd51", "metadata": {}, "outputs": [], "source": [] }, { "cell_type": "code", "execution_count": null, "id": "7ed61f2e-47ca-4a22-b95b-077d3d678cea", "metadata": {}, "outputs": [], "source": [] }, { "cell_type": "code", "execution_count": null, "id": "0bfb48d8-8472-4325-b459-3796615da3da", "metadata": {}, "outputs": [], "source": [] }, { "cell_type": "code", "execution_count": null, "id": "9bf0e249-c38a-44e6-b19e-b00762aa5a0e", "metadata": {}, "outputs": [], "source": [] }, { "cell_type": "code", "execution_count": null, "id": "06fbe4da-11c3-4103-8e0c-0ddf35f7176e", "metadata": {}, "outputs": [], "source": [] }, { "cell_type": "code", "execution_count": null, "id": "1463e24a-8329-4b57-8502-05fa85c84da0", "metadata": {}, "outputs": [], "source": [] }, { "cell_type": "code", "execution_count": null, "id": "9174b812-232c-4490-ad7e-c6b5a289fe53", "metadata": {}, "outputs": [], "source": [] }, { "cell_type": "code", "execution_count": null, "id": "ab2da23e-6cf5-4eff-9627-52bf717404cf", "metadata": {}, "outputs": [], "source": [] }, { "cell_type": "code", "execution_count": null, "id": "9872b5fa-e30e-430c-bf38-c841c3d7caac", "metadata": {}, "outputs": [], "source": [] }, { "cell_type": "code", "execution_count": null, "id": "4848d00e-565d-49a4-b87a-03dca4ba2598", "metadata": {}, "outputs": [], "source": [] }, { "cell_type": "code", "execution_count": null, "id": "b0177e6b-13d6-4952-9fbc-f2db57f8b185", "metadata": {}, "outputs": [], "source": [] }, { "cell_type": "code", "execution_count": 57, "id": "c0343502-c2ab-48d1-ab46-a035420a2cee", "metadata": {}, "outputs": [ { "data": { "text/plain": [ "[{'symbol': 'BTCUSDT',\n", " 'timestamp': 1756684801229,\n", " 'lowest_ask': 108241.8,\n", " 'highest_bid': 108241.7,\n", " 'bids': {'108241.7': 1.041892,\n", " '108240.1': 0.003,\n", " '108239.7': 0.000433,\n", " '108239.3': 0.039114,\n", " '108239.2': 0.098379,\n", " '108239.1': 0.003,\n", " '108237.7': 0.009,\n", " '108237.4': 0.13,\n", " '108237.3': 0.006,\n", " '108237.2': 0.03,\n", " '108236.9': 0.191506,\n", " '108236.8': 0.092382,\n", " '108236.7': 0.003,\n", " '108236.4': 0.004618,\n", " '108236.3': 0.006,\n", " '108236.2': 0.003,\n", " '108235.9': 0.03,\n", " '108235.6': 0.0001,\n", " '108235.2': 0.151,\n", " '108235.1': 0.03,\n", " '108234.4': 0.009,\n", " '108233.8': 0.408,\n", " '108233.6': 0.003461,\n", " '108233.4': 0.006,\n", " '108233.0': 0.148618,\n", " '108232.9': 0.03,\n", " '108232.6': 7e-05,\n", " '108232.4': 0.003,\n", " '108232.2': 0.001955,\n", " '108231.9': 0.288791,\n", " '108231.3': 0.069819,\n", " '108231.0': 0.132945,\n", " '108230.9': 0.142,\n", " '108230.8': 0.06,\n", " '108230.7': 0.029947,\n", " '108230.2': 0.147592,\n", " '108228.7': 0.262945,\n", " '108228.6': 0.03,\n", " '108228.4': 0.062565,\n", " '108226.9': 0.147592,\n", " '108226.3': 0.491853,\n", " '108226.2': 0.132945,\n", " '108226.1': 0.3915,\n", " '108225.3': 0.532121,\n", " '108224.3': 0.018475,\n", " '108223.1': 0.021357,\n", " '108223.0': 0.22171,\n", " '108222.9': 0.002248,\n", " '108222.8': 0.009239,\n", " '108222.7': 0.132945,\n", " '108222.6': 0.147592,\n", " '108222.3': 0.0017,\n", " '108222.1': 0.019929,\n", " '108221.9': 0.03,\n", " '108221.8': 7e-05,\n", " '108220.5': 0.132945,\n", " '108220.4': 0.190971,\n", " '108220.3': 0.069819,\n", " '108219.3': 0.147592,\n", " '108218.3': 0.132945,\n", " '108217.0': 0.139686,\n", " '108216.0': 0.132945,\n", " '108215.9': 0.147592,\n", " '108215.6': 0.009891,\n", " '108215.2': 0.386088,\n", " '108215.1': 0.429293,\n", " '108213.9': 0.049929,\n", " '108213.6': 0.002585,\n", " '108213.4': 0.132945,\n", " '108212.0': 0.00924,\n", " '108211.6': 0.0001,\n", " '108211.1': 0.280537,\n", " '108211.0': 0.39157,\n", " '108208.5': 0.132945,\n", " '108207.5': 0.238612,\n", " '108207.3': 0.150585,\n", " '108207.1': 0.07,\n", " '108207.0': 0.06,\n", " '108206.4': 0.311795,\n", " '108206.3': 0.132945,\n", " '108205.6': 0.069819,\n", " '108204.8': 0.121,\n", " '108204.2': 0.943678,\n", " '108204.1': 1.310642,\n", " '108204.0': 0.193784,\n", " '108203.3': 0.452129,\n", " '108203.1': 0.069242,\n", " '108202.8': 0.382896,\n", " '108202.7': 0.186245,\n", " '108202.1': 0.462055,\n", " '108202.0': 0.138616,\n", " '108201.2': 0.009241,\n", " '108201.1': 0.01,\n", " '108200.5': 0.274945,\n", " '108200.2': 7e-05,\n", " '108200.0': 0.001478,\n", " '108199.9': 0.3915,\n", " '108199.6': 0.000166,\n", " '108198.9': 0.278483,\n", " '108198.4': 0.07,\n", " '108198.3': 0.192945,\n", " '108197.9': 0.013128,\n", " '108197.5': 0.147592,\n", " '108197.2': 0.015,\n", " '108196.2': 0.009242,\n", " '108196.1': 0.009242,\n", " '108196.0': 0.003277,\n", " '108195.7': 0.4,\n", " '108195.6': 0.03,\n", " '108194.9': 0.040367,\n", " '108194.7': 0.001617,\n", " '108194.5': 0.132945,\n", " '108194.0': 0.0001,\n", " '108193.6': 0.069819,\n", " '108193.1': 0.00011,\n", " '108192.5': 0.029947,\n", " '108192.2': 0.009244,\n", " '108192.1': 0.175373,\n", " '108192.0': 0.147592,\n", " '108190.0': 0.000184,\n", " '108189.4': 7e-05,\n", " '108189.0': 0.051,\n", " '108188.9': 0.050539,\n", " '108188.7': 0.147592,\n", " '108188.2': 0.221745,\n", " '108188.1': 0.03,\n", " '108188.0': 0.290095,\n", " '108187.2': 0.001,\n", " '108187.1': 0.000991,\n", " '108186.0': 0.02772,\n", " '108185.3': 0.009243,\n", " '108185.2': 0.009243,\n", " '108184.5': 0.147592,\n", " '108184.0': 0.3925,\n", " '108183.5': 0.00462,\n", " '108182.9': 0.03,\n", " '108182.0': 0.058191,\n", " '108181.8': 0.046217,\n", " '108180.0': 9.2e-05,\n", " '108178.6': 7e-05,\n", " '108178.5': 0.147592,\n", " '108178.0': 0.069819,\n", " '108177.6': 0.04622,\n", " '108177.2': 0.03,\n", " '108177.0': 0.00243,\n", " '108175.5': 0.623686,\n", " '108175.4': 0.46217,\n", " '108174.4': 0.147592,\n", " '108173.4': 1.202849,\n", " '108173.1': 0.3915,\n", " '108170.0': 0.030092,\n", " '108169.4': 0.056726,\n", " '108169.3': 0.147592,\n", " '108169.1': 0.033911,\n", " '108168.1': 0.007512,\n", " '108167.8': 0.03007,\n", " '108166.8': 0.224349,\n", " '108165.6': 0.03,\n", " '108164.4': 0.147592,\n", " '108164.2': 0.069819,\n", " '108163.3': 0.03,\n", " '108163.1': 0.000245,\n", " '108162.2': 0.3915,\n", " '108161.9': 0.003799,\n", " '108161.8': 0.160401,\n", " '108161.7': 0.06,\n", " '108161.2': 0.03,\n", " '108160.0': 0.030039,\n", " '108159.5': 0.07,\n", " '108158.4': 0.147592,\n", " '108158.0': 0.018361,\n", " '108157.5': 0.000306,\n", " '108157.0': 7e-05,\n", " '108156.8': 0.239474,\n", " '108156.7': 0.000181,\n", " '108156.6': 0.003054,\n", " '108154.1': 0.003054,\n", " '108153.2': 7e-05,\n", " '108153.0': 0.003117,\n", " '108152.0': 0.06,\n", " '108151.3': 0.3915,\n", " '108151.0': 6.3e-05,\n", " '108150.7': 0.385049,\n", " '108150.0': 0.016333,\n", " '108148.9': 0.46229,\n", " '108148.3': 0.084,\n", " '108147.9': 0.018475,\n", " '108147.6': 0.06,\n", " '108147.2': 0.015,\n", " '108146.6': 0.615953,\n", " '108146.2': 7e-05,\n", " '108146.1': 0.151,\n", " '108144.1': 0.134932,\n", " '108144.0': 0.084,\n", " '108142.0': 0.072,\n", " '108141.5': 0.06,\n", " '108140.6': 0.13,\n", " '108140.5': 0.001,\n", " '108140.0': 9.2e-05,\n", " '108139.2': 0.037792},\n", " 'asks': {'108241.8': 1.406656,\n", " '108247.9': 0.030442,\n", " '108249.2': 0.17406,\n", " '108249.4': 0.092372,\n", " '108249.9': 0.000462,\n", " '108250.0': 0.232744,\n", " '108250.6': 0.022451,\n", " '108251.3': 0.035833,\n", " '108252.7': 0.3915,\n", " '108253.8': 0.037582,\n", " '108253.9': 0.217884,\n", " '108254.3': 0.22171,\n", " '108254.4': 0.0001,\n", " '108255.2': 0.02,\n", " '108255.6': 0.125878,\n", " '108255.8': 0.004618,\n", " '108255.9': 0.004618,\n", " '108256.4': 0.002,\n", " '108256.8': 0.069819,\n", " '108257.2': 0.088215,\n", " '108258.0': 0.009238,\n", " '108258.7': 0.40207,\n", " '108259.6': 0.029947,\n", " '108260.8': 0.004,\n", " '108261.8': 0.000248,\n", " '108262.6': 0.03,\n", " '108263.0': 0.02,\n", " '108263.4': 0.132,\n", " '108263.8': 0.069819,\n", " '108264.7': 0.07781,\n", " '108264.8': 0.07803,\n", " '108265.1': 0.147592,\n", " '108265.2': 0.033,\n", " '108265.4': 0.132945,\n", " '108265.5': 0.13,\n", " '108265.8': 0.034865,\n", " '108265.9': 0.3915,\n", " '108266.6': 0.0001,\n", " '108267.1': 0.01,\n", " '108267.2': 0.011882,\n", " '108267.3': 0.03,\n", " '108267.7': 0.262945,\n", " '108268.4': 0.041405,\n", " '108268.5': 0.147592,\n", " '108269.1': 0.005,\n", " '108269.5': 7e-05,\n", " '108269.6': 0.039,\n", " '108269.9': 0.137,\n", " '108270.2': 7e-05,\n", " '108271.7': 0.162945,\n", " '108271.8': 0.147592,\n", " '108271.9': 0.050414,\n", " '108272.0': 0.17,\n", " '108272.7': 0.000478,\n", " '108272.9': 1.23194,\n", " '108273.6': 0.018217,\n", " '108273.8': 0.03,\n", " '108274.5': 0.009242,\n", " '108274.6': 0.132945,\n", " '108274.9': 0.089399,\n", " '108275.1': 0.284785,\n", " '108276.8': 0.280537,\n", " '108277.3': 0.3915,\n", " '108278.1': 0.003498,\n", " '108279.2': 0.132945,\n", " '108279.7': 0.027709,\n", " '108280.3': 0.147662,\n", " '108280.7': 0.020442,\n", " '108281.4': 0.132945,\n", " '108281.8': 0.069819,\n", " '108282.7': 0.009235,\n", " '108283.5': 0.004023,\n", " '108283.6': 0.280537,\n", " '108284.1': 0.045766,\n", " '108284.8': 0.01746,\n", " '108284.9': 0.532185,\n", " '108285.1': 0.010184,\n", " '108285.4': 0.001939,\n", " '108285.8': 0.132945,\n", " '108287.7': 9.4e-05,\n", " '108288.0': 0.132945,\n", " '108288.7': 0.003277,\n", " '108288.9': 0.147592,\n", " '108290.0': 0.029947,\n", " '108290.9': 0.000788,\n", " '108291.0': 0.132945,\n", " '108291.1': 7e-05,\n", " '108291.7': 0.000555,\n", " '108292.3': 0.147592,\n", " '108292.5': 0.3915,\n", " '108292.9': 0.393441,\n", " '108293.1': 0.069819,\n", " '108293.5': 0.009234,\n", " '108294.4': 0.001389,\n", " '108294.6': 0.132945,\n", " '108294.8': 0.00305,\n", " '108295.5': 0.184705,\n", " '108296.0': 0.147592,\n", " '108297.0': 0.000163,\n", " '108297.2': 0.015,\n", " '108298.5': 0.132945,\n", " '108301.2': 6.3e-05,\n", " '108301.5': 0.002993,\n", " '108301.6': 0.198592,\n", " '108301.7': 0.051,\n", " '108301.9': 7e-05,\n", " '108302.2': 0.033,\n", " '108302.9': 0.132945,\n", " '108303.4': 0.3915,\n", " '108304.2': 0.07,\n", " '108304.3': 0.03,\n", " '108306.1': 0.147592,\n", " '108306.3': 0.436263,\n", " '108306.6': 0.039,\n", " '108307.3': 0.132945,\n", " '108307.7': 0.004616,\n", " '108308.1': 0.000206,\n", " '108308.7': 0.03,\n", " '108309.8': 0.132945,\n", " '108309.9': 0.147592,\n", " '108310.0': 0.583656,\n", " '108310.2': 0.069819,\n", " '108310.7': 0.46159,\n", " '108310.8': 0.084,\n", " '108310.9': 0.03,\n", " '108311.0': 0.000517,\n", " '108311.3': 0.441377,\n", " '108312.2': 0.06,\n", " '108312.5': 0.452794,\n", " '108312.7': 7e-05,\n", " '108314.2': 0.132945,\n", " '108314.3': 0.3915,\n", " '108314.5': 0.07,\n", " '108316.3': 0.001385,\n", " '108316.4': 0.147592,\n", " '108316.6': 0.001616,\n", " '108317.1': 0.092053,\n", " '108318.1': 0.069819,\n", " '108318.6': 0.132945,\n", " '108319.0': 0.070846,\n", " '108319.1': 0.005,\n", " '108320.6': 0.148592,\n", " '108322.4': 0.036764,\n", " '108322.5': 0.029947,\n", " '108323.0': 0.132945,\n", " '108323.5': 7e-05,\n", " '108324.1': 0.06,\n", " '108324.5': 7e-05,\n", " '108325.2': 0.3915,\n", " '108325.7': 0.069819,\n", " '108326.3': 0.1094,\n", " '108327.1': 0.147592,\n", " '108328.4': 0.06,\n", " '108328.9': 0.009242,\n", " '108329.1': 0.009242,\n", " '108330.0': 0.0002,\n", " '108331.1': 0.06,\n", " '108331.6': 0.147592,\n", " '108331.7': 0.600335,\n", " '108334.0': 0.069819,\n", " '108334.3': 0.239543,\n", " '108335.6': 0.06,\n", " '108336.1': 0.3915,\n", " '108336.6': 0.026,\n", " '108338.2': 0.06,\n", " '108338.5': 0.000177,\n", " '108339.2': 0.494473,\n", " '108341.2': 0.07,\n", " '108341.4': 0.03,\n", " '108342.3': 0.003049,\n", " '108343.6': 0.039,\n", " '108343.9': 0.069819,\n", " '108344.3': 0.000319,\n", " '108345.1': 7e-05,\n", " '108345.7': 0.03,\n", " '108347.0': 0.3915,\n", " '108347.2': 0.015,\n", " '108347.8': 0.4,\n", " '108347.9': 0.1,\n", " '108348.0': 0.06,\n", " '108351.2': 0.000114,\n", " '108352.1': 0.010178,\n", " '108353.7': 0.461407,\n", " '108355.9': 7e-05,\n", " '108357.4': 0.545072,\n", " '108357.8': 0.004614,\n", " '108357.9': 0.3915,\n", " '108358.2': 0.07,\n", " '108359.8': 0.069819,\n", " '108361.4': 6.3e-05,\n", " '108362.9': 0.009239,\n", " '108363.4': 0.545042,\n", " '108364.5': 0.860022,\n", " '108365.8': 0.014478,\n", " '108366.1': 0.000659,\n", " '108366.3': 0.060096,\n", " '108366.7': 0.06007,\n", " '108369.1': 0.005,\n", " '108369.5': 8.3e-05,\n", " '108373.0': 0.0026}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1756684801430,\n", " 'lowest_ask': 108241.8,\n", " 'highest_bid': 108241.7,\n", " 'bids': {'108241.7': 1.166397,\n", " '108239.7': 0.000433,\n", " '108239.3': 0.033114,\n", " '108239.2': 0.092379,\n", " '108238.0': 0.023097,\n", " '108237.7': 0.009,\n", " '108237.4': 0.13,\n", " '108237.3': 0.006,\n", " '108237.2': 0.03,\n", " '108237.0': 0.004618,\n", " '108236.9': 0.267596,\n", " '108236.8': 0.092382,\n", " '108236.7': 0.003,\n", " '108236.3': 0.006,\n", " '108236.2': 0.003,\n", " '108235.9': 0.03,\n", " '108235.8': 0.046195,\n", " '108235.6': 0.0001,\n", " '108235.2': 0.151,\n", " '108235.1': 0.03,\n", " '108234.4': 0.009,\n", " '108233.8': 0.408,\n", " '108233.6': 0.003461,\n", " '108233.4': 0.006,\n", " '108233.0': 0.144,\n", " '108232.9': 0.03,\n", " '108232.6': 7e-05,\n", " '108232.4': 0.003,\n", " '108232.2': 0.001955,\n", " '108231.9': 0.288791,\n", " '108231.5': 0.006,\n", " '108231.0': 0.132945,\n", " '108230.9': 0.142,\n", " '108230.8': 0.06,\n", " '108230.5': 0.009,\n", " '108230.2': 0.147592,\n", " '108229.8': 0.004618,\n", " '108229.5': 0.006,\n", " '108228.7': 0.262945,\n", " '108228.6': 0.03,\n", " '108228.4': 0.062565,\n", " '108226.9': 0.155415,\n", " '108226.3': 0.491853,\n", " '108226.2': 0.132945,\n", " '108226.1': 0.3915,\n", " '108225.5': 0.009238,\n", " '108225.3': 0.532121,\n", " '108224.3': 0.018475,\n", " '108223.1': 0.02,\n", " '108222.9': 0.002248,\n", " '108222.7': 0.132945,\n", " '108222.6': 0.147592,\n", " '108222.3': 0.0017,\n", " '108222.1': 0.019929,\n", " '108221.9': 0.03,\n", " '108221.8': 7e-05,\n", " '108220.5': 0.132945,\n", " '108220.4': 0.190971,\n", " '108220.3': 0.069819,\n", " '108219.3': 0.147592,\n", " '108218.4': 0.221708,\n", " '108218.3': 0.132945,\n", " '108217.0': 0.139686,\n", " '108216.0': 0.132945,\n", " '108215.9': 0.147592,\n", " '108215.6': 0.009891,\n", " '108215.2': 0.386088,\n", " '108215.1': 0.429293,\n", " '108213.9': 0.049929,\n", " '108213.6': 0.002585,\n", " '108213.4': 0.132945,\n", " '108213.3': 0.09241,\n", " '108212.0': 0.00924,\n", " '108211.6': 0.0001,\n", " '108211.3': 0.001358,\n", " '108211.1': 0.280537,\n", " '108211.0': 0.39157,\n", " '108208.5': 0.132945,\n", " '108208.0': 0.046207,\n", " '108207.5': 0.238612,\n", " '108207.3': 0.150585,\n", " '108207.1': 0.07,\n", " '108207.0': 0.06,\n", " '108206.3': 0.132945,\n", " '108205.6': 0.069819,\n", " '108204.8': 0.121,\n", " '108204.4': 0.046192,\n", " '108204.2': 0.943678,\n", " '108204.1': 1.310642,\n", " '108204.0': 0.147592,\n", " '108203.4': 0.311803,\n", " '108203.3': 0.452129,\n", " '108203.1': 0.069242,\n", " '108202.8': 0.382896,\n", " '108202.7': 0.186245,\n", " '108202.1': 0.462055,\n", " '108202.0': 0.138616,\n", " '108201.2': 0.009241,\n", " '108200.5': 0.274945,\n", " '108200.2': 7e-05,\n", " '108200.0': 0.001478,\n", " '108199.9': 0.3915,\n", " '108199.6': 0.000166,\n", " '108198.9': 0.278483,\n", " '108198.4': 0.07,\n", " '108198.3': 0.192945,\n", " '108197.9': 0.013128,\n", " '108197.5': 0.147592,\n", " '108197.2': 0.015,\n", " '108196.2': 0.009242,\n", " '108196.1': 0.009242,\n", " '108196.0': 0.003277,\n", " '108195.7': 0.4,\n", " '108195.6': 0.03,\n", " '108194.9': 0.040367,\n", " '108194.7': 0.001617,\n", " '108194.5': 0.132945,\n", " '108194.0': 0.0001,\n", " '108193.6': 0.069819,\n", " '108193.1': 0.00011,\n", " '108193.0': 0.009241,\n", " '108192.5': 0.029947,\n", " '108192.2': 0.009244,\n", " '108192.0': 0.147592,\n", " '108190.0': 0.000184,\n", " '108189.4': 7e-05,\n", " '108189.0': 0.051,\n", " '108188.9': 0.050539,\n", " '108188.7': 0.147592,\n", " '108188.2': 0.221745,\n", " '108188.1': 0.03,\n", " '108188.0': 0.290095,\n", " '108187.2': 0.001,\n", " '108187.1': 0.000991,\n", " '108186.6': 0.9,\n", " '108186.0': 0.02772,\n", " '108185.3': 0.009243,\n", " '108185.2': 0.009243,\n", " '108184.7': 0.092435,\n", " '108184.5': 0.147592,\n", " '108184.0': 0.3925,\n", " '108183.5': 0.00462,\n", " '108182.9': 0.03,\n", " '108182.0': 0.058191,\n", " '108181.8': 0.046217,\n", " '108180.0': 9.2e-05,\n", " '108179.6': 0.436774,\n", " '108178.6': 7e-05,\n", " '108178.5': 0.147592,\n", " '108178.0': 0.069819,\n", " '108177.2': 0.03,\n", " '108177.0': 0.00243,\n", " '108175.5': 0.623686,\n", " '108175.4': 0.46217,\n", " '108174.4': 0.147592,\n", " '108173.4': 1.202849,\n", " '108173.1': 0.3915,\n", " '108170.0': 0.030092,\n", " '108169.4': 0.056726,\n", " '108169.3': 0.147592,\n", " '108169.1': 0.033911,\n", " '108168.1': 0.007512,\n", " '108167.8': 0.03007,\n", " '108166.8': 0.224349,\n", " '108165.6': 0.03,\n", " '108164.4': 0.147592,\n", " '108164.2': 0.069819,\n", " '108163.3': 0.03,\n", " '108163.1': 0.000245,\n", " '108162.2': 0.3915,\n", " '108161.9': 0.003799,\n", " '108161.8': 0.160401,\n", " '108161.7': 0.06,\n", " '108161.2': 0.03,\n", " '108160.0': 0.030039,\n", " '108159.5': 0.07,\n", " '108158.4': 0.147592,\n", " '108158.0': 0.018361,\n", " '108157.5': 0.000306,\n", " '108157.0': 7e-05,\n", " '108156.8': 0.239474,\n", " '108156.7': 0.000181,\n", " '108156.6': 0.003054,\n", " '108154.1': 0.003054,\n", " '108153.2': 7e-05,\n", " '108153.0': 0.003117,\n", " '108152.0': 0.06,\n", " '108151.3': 0.3915,\n", " '108151.0': 6.3e-05,\n", " '108150.7': 0.385049,\n", " '108150.0': 0.016333,\n", " '108148.9': 0.46229,\n", " '108148.3': 0.084,\n", " '108147.9': 0.018475,\n", " '108147.6': 0.06,\n", " '108147.2': 0.015,\n", " '108146.6': 0.615953,\n", " '108146.2': 7e-05,\n", " '108146.1': 0.151,\n", " '108144.1': 0.134932},\n", " 'asks': {'108241.8': 1.406656,\n", " '108247.2': 0.011498,\n", " '108247.9': 0.030442,\n", " '108249.2': 0.250139,\n", " '108249.4': 0.092372,\n", " '108249.9': 0.000462,\n", " '108250.0': 0.232744,\n", " '108250.5': 0.001001,\n", " '108250.6': 0.022451,\n", " '108251.3': 0.035833,\n", " '108252.1': 0.004618,\n", " '108252.3': 0.092377,\n", " '108252.7': 0.3915,\n", " '108253.6': 0.221708,\n", " '108253.8': 0.037582,\n", " '108253.9': 0.217884,\n", " '108254.4': 0.0001,\n", " '108254.5': 0.092375,\n", " '108255.1': 0.004618,\n", " '108255.2': 0.02,\n", " '108255.3': 0.031605,\n", " '108255.6': 0.122366,\n", " '108256.4': 0.002,\n", " '108256.8': 0.069819,\n", " '108257.2': 0.088215,\n", " '108257.5': 0.023093,\n", " '108258.0': 0.009238,\n", " '108258.7': 0.40207,\n", " '108259.6': 0.029947,\n", " '108259.7': 0.046185,\n", " '108260.8': 0.004,\n", " '108261.8': 0.000248,\n", " '108262.4': 0.138552,\n", " '108262.6': 0.03,\n", " '108263.0': 0.02,\n", " '108263.4': 0.132,\n", " '108263.8': 0.069819,\n", " '108264.6': 0.138549,\n", " '108264.7': 0.07781,\n", " '108264.8': 0.07803,\n", " '108265.1': 0.147592,\n", " '108265.2': 0.033,\n", " '108265.4': 0.132945,\n", " '108265.5': 0.13,\n", " '108265.8': 0.034865,\n", " '108265.9': 0.3915,\n", " '108266.6': 0.0001,\n", " '108267.1': 0.01,\n", " '108267.2': 0.011882,\n", " '108267.3': 0.03,\n", " '108267.7': 0.262945,\n", " '108268.4': 0.041405,\n", " '108268.5': 0.147592,\n", " '108269.1': 0.005,\n", " '108269.5': 7e-05,\n", " '108269.6': 0.039,\n", " '108269.9': 0.137,\n", " '108270.2': 7e-05,\n", " '108271.7': 0.162945,\n", " '108271.8': 0.147592,\n", " '108271.9': 0.050414,\n", " '108272.0': 0.17,\n", " '108272.7': 0.000478,\n", " '108272.9': 1.23194,\n", " '108273.6': 0.018217,\n", " '108273.8': 0.03,\n", " '108274.5': 0.009242,\n", " '108274.6': 0.132945,\n", " '108274.9': 0.089399,\n", " '108275.1': 0.284785,\n", " '108276.8': 0.280537,\n", " '108277.3': 0.3915,\n", " '108278.1': 0.003498,\n", " '108279.2': 0.132945,\n", " '108279.7': 0.027709,\n", " '108280.3': 0.147662,\n", " '108280.7': 0.020442,\n", " '108281.4': 0.132945,\n", " '108281.8': 0.069819,\n", " '108282.7': 0.009235,\n", " '108283.5': 0.004023,\n", " '108283.6': 0.280537,\n", " '108284.1': 0.045766,\n", " '108284.8': 0.01746,\n", " '108284.9': 0.532185,\n", " '108285.1': 0.010184,\n", " '108285.4': 0.001939,\n", " '108285.8': 0.132945,\n", " '108287.7': 9.4e-05,\n", " '108288.0': 0.132945,\n", " '108288.7': 0.003277,\n", " '108288.9': 0.147592,\n", " '108289.9': 0.000817,\n", " '108290.0': 0.076119,\n", " '108291.0': 0.132945,\n", " '108291.1': 7e-05,\n", " '108291.7': 0.000555,\n", " '108292.3': 0.147592,\n", " '108292.5': 0.3915,\n", " '108292.9': 0.393441,\n", " '108293.1': 0.069819,\n", " '108293.5': 0.009234,\n", " '108294.4': 0.001389,\n", " '108294.6': 0.132945,\n", " '108294.8': 0.00305,\n", " '108295.5': 0.184705,\n", " '108296.0': 0.147592,\n", " '108297.0': 0.000163,\n", " '108297.2': 0.015,\n", " '108298.5': 0.132945,\n", " '108301.2': 6.3e-05,\n", " '108301.5': 0.002993,\n", " '108301.6': 0.198592,\n", " '108301.7': 0.051,\n", " '108301.9': 7e-05,\n", " '108302.2': 0.033,\n", " '108302.9': 0.132945,\n", " '108303.4': 0.3915,\n", " '108304.2': 0.07,\n", " '108304.3': 0.03,\n", " '108306.1': 0.147592,\n", " '108306.3': 0.436263,\n", " '108306.6': 0.039,\n", " '108307.3': 0.132945,\n", " '108307.7': 0.004616,\n", " '108308.1': 0.000206,\n", " '108308.7': 0.03,\n", " '108309.8': 0.569194,\n", " '108309.9': 0.147592,\n", " '108310.0': 0.583656,\n", " '108310.2': 0.069819,\n", " '108310.7': 0.46159,\n", " '108310.8': 0.084,\n", " '108310.9': 0.03,\n", " '108311.0': 0.000517,\n", " '108311.3': 0.441377,\n", " '108312.2': 0.06,\n", " '108312.5': 0.452794,\n", " '108312.7': 7e-05,\n", " '108314.2': 0.132945,\n", " '108314.3': 0.3915,\n", " '108314.5': 0.07,\n", " '108316.3': 0.001385,\n", " '108316.4': 0.147592,\n", " '108316.6': 0.001616,\n", " '108317.1': 0.092053,\n", " '108318.1': 0.069819,\n", " '108318.6': 0.132945,\n", " '108319.0': 0.070846,\n", " '108319.1': 0.005,\n", " '108320.6': 0.148592,\n", " '108322.4': 0.036764,\n", " '108322.5': 0.029947,\n", " '108323.0': 0.132945,\n", " '108323.5': 7e-05,\n", " '108324.1': 0.06,\n", " '108324.5': 7e-05,\n", " '108325.2': 0.3915,\n", " '108325.7': 0.069819,\n", " '108326.3': 0.1094,\n", " '108327.1': 0.147592,\n", " '108328.4': 0.06,\n", " '108328.9': 0.009242,\n", " '108329.1': 0.009242,\n", " '108330.0': 0.0002,\n", " '108331.1': 0.06,\n", " '108331.6': 0.147592,\n", " '108331.7': 0.600335,\n", " '108334.0': 0.069819,\n", " '108334.3': 0.239543,\n", " '108335.6': 0.06,\n", " '108336.1': 0.3915,\n", " '108336.6': 0.026,\n", " '108338.2': 0.198455,\n", " '108338.5': 0.000177,\n", " '108339.2': 0.494473,\n", " '108341.2': 0.07,\n", " '108341.4': 0.03,\n", " '108342.3': 0.003049,\n", " '108343.6': 0.039,\n", " '108343.9': 0.069819,\n", " '108344.3': 0.000319,\n", " '108345.1': 7e-05,\n", " '108345.7': 0.03,\n", " '108347.0': 0.3915,\n", " '108347.2': 0.015,\n", " '108347.8': 0.4,\n", " '108347.9': 0.1,\n", " '108348.0': 0.06,\n", " '108351.2': 0.000114,\n", " '108352.1': 0.010178,\n", " '108353.7': 0.461407,\n", " '108355.9': 7e-05,\n", " '108357.4': 0.545072,\n", " '108357.8': 0.004614,\n", " '108357.9': 0.3915,\n", " '108358.2': 0.07,\n", " '108359.8': 0.069819,\n", " '108361.4': 6.3e-05,\n", " '108362.9': 0.009239}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1756684801629,\n", " 'lowest_ask': 108241.8,\n", " 'highest_bid': 108241.7,\n", " 'bids': {'108241.7': 1.055111,\n", " '108239.7': 0.000433,\n", " '108239.3': 0.033114,\n", " '108239.2': 0.092379,\n", " '108238.0': 0.023097,\n", " '108237.7': 0.009,\n", " '108237.5': 0.004618,\n", " '108237.4': 0.13,\n", " '108237.3': 0.006,\n", " '108237.2': 0.03,\n", " '108236.9': 0.267596,\n", " '108236.8': 0.092382,\n", " '108236.7': 0.003,\n", " '108236.3': 0.006,\n", " '108236.2': 0.003,\n", " '108235.9': 0.03,\n", " '108235.8': 0.046195,\n", " '108235.6': 0.0001,\n", " '108235.2': 0.151,\n", " '108235.1': 0.03,\n", " '108234.4': 0.009,\n", " '108233.8': 0.408,\n", " '108233.6': 0.003461,\n", " '108233.4': 0.006,\n", " '108233.0': 0.144,\n", " '108232.9': 0.03,\n", " '108232.6': 7e-05,\n", " '108232.4': 0.003,\n", " '108232.2': 0.001955,\n", " '108231.9': 0.288791,\n", " '108231.5': 0.006,\n", " '108231.0': 0.132945,\n", " '108230.9': 0.142,\n", " '108230.8': 0.06,\n", " '108230.5': 0.009,\n", " '108230.2': 0.147592,\n", " '108229.8': 0.004618,\n", " '108229.5': 0.006,\n", " '108228.7': 0.262945,\n", " '108228.6': 0.03,\n", " '108228.4': 0.062565,\n", " '108226.9': 0.147592,\n", " '108226.3': 0.491853,\n", " '108226.2': 0.132945,\n", " '108226.1': 0.3915,\n", " '108226.0': 0.139686,\n", " '108225.5': 0.009238,\n", " '108225.3': 0.532121,\n", " '108224.3': 0.018475,\n", " '108223.2': 0.221708,\n", " '108223.1': 0.02,\n", " '108222.9': 0.002248,\n", " '108222.7': 0.132945,\n", " '108222.6': 0.147592,\n", " '108222.3': 0.0017,\n", " '108222.1': 0.019929,\n", " '108221.9': 0.03,\n", " '108221.8': 7e-05,\n", " '108220.5': 0.132945,\n", " '108220.4': 0.190971,\n", " '108220.3': 0.069819,\n", " '108219.3': 0.147592,\n", " '108218.3': 0.132945,\n", " '108216.0': 0.132945,\n", " '108215.9': 0.147592,\n", " '108215.6': 0.009891,\n", " '108215.2': 0.386088,\n", " '108213.9': 0.049929,\n", " '108213.6': 0.002585,\n", " '108213.4': 0.132945,\n", " '108213.3': 0.09241,\n", " '108212.3': 0.092411,\n", " '108212.0': 0.00924,\n", " '108211.6': 0.0001,\n", " '108211.3': 0.001358,\n", " '108211.1': 0.280537,\n", " '108211.0': 0.39157,\n", " '108208.5': 0.132945,\n", " '108208.0': 0.046207,\n", " '108207.5': 7e-05,\n", " '108207.3': 0.150585,\n", " '108207.1': 0.07,\n", " '108207.0': 0.06,\n", " '108206.3': 0.132945,\n", " '108205.6': 0.069819,\n", " '108204.8': 0.121,\n", " '108204.5': 0.311801,\n", " '108204.2': 0.943678,\n", " '108204.1': 1.310642,\n", " '108204.0': 0.147592,\n", " '108203.3': 0.452129,\n", " '108203.1': 0.069242,\n", " '108203.0': 0.046193,\n", " '108202.8': 0.382896,\n", " '108202.7': 0.186245,\n", " '108202.1': 0.462055,\n", " '108202.0': 0.138616,\n", " '108201.2': 0.009241,\n", " '108200.5': 0.274945,\n", " '108200.2': 7e-05,\n", " '108200.0': 0.001478,\n", " '108199.9': 0.3915,\n", " '108199.6': 0.000166,\n", " '108198.9': 0.278483,\n", " '108198.4': 0.07,\n", " '108198.3': 0.192945,\n", " '108197.9': 0.013128,\n", " '108197.5': 0.147592,\n", " '108197.2': 0.015,\n", " '108196.2': 0.009242,\n", " '108196.1': 0.009242,\n", " '108196.0': 0.003277,\n", " '108195.7': 0.4,\n", " '108195.6': 0.03,\n", " '108195.0': 0.290095,\n", " '108194.9': 0.040367,\n", " '108194.7': 0.001617,\n", " '108194.5': 0.132945,\n", " '108194.0': 0.0001,\n", " '108193.8': 0.429293,\n", " '108193.6': 0.069819,\n", " '108193.1': 0.00011,\n", " '108193.0': 0.009241,\n", " '108192.5': 0.029947,\n", " '108192.2': 0.009244,\n", " '108192.0': 0.147592,\n", " '108190.0': 0.000184,\n", " '108189.4': 7e-05,\n", " '108189.0': 0.051,\n", " '108188.9': 0.050539,\n", " '108188.7': 0.147592,\n", " '108188.2': 0.221745,\n", " '108188.1': 0.03,\n", " '108187.2': 0.001,\n", " '108187.1': 0.000991,\n", " '108186.6': 0.9,\n", " '108186.0': 0.02772,\n", " '108185.3': 0.009243,\n", " '108185.2': 0.009243,\n", " '108184.7': 0.092435,\n", " '108184.5': 0.147592,\n", " '108184.0': 0.3925,\n", " '108183.5': 0.00462,\n", " '108182.9': 0.03,\n", " '108182.0': 0.058191,\n", " '108181.8': 0.046217,\n", " '108180.0': 9.2e-05,\n", " '108179.6': 0.436774,\n", " '108178.6': 7e-05,\n", " '108178.5': 0.147592,\n", " '108178.0': 0.069819,\n", " '108177.2': 0.03,\n", " '108177.0': 0.00243,\n", " '108175.5': 0.623686,\n", " '108175.4': 0.46217,\n", " '108174.4': 0.147592,\n", " '108173.4': 1.202849,\n", " '108173.1': 0.3915,\n", " '108170.0': 0.030092,\n", " '108169.4': 0.056726,\n", " '108169.3': 0.147592,\n", " '108169.1': 0.033911,\n", " '108168.1': 0.007512,\n", " '108167.8': 0.03007,\n", " '108166.8': 0.224349,\n", " '108165.6': 0.03,\n", " '108164.4': 0.147592,\n", " '108164.2': 0.069819,\n", " '108163.3': 0.03,\n", " '108163.1': 0.000245,\n", " '108162.2': 0.3915,\n", " '108161.9': 0.003799,\n", " '108161.8': 0.160401,\n", " '108161.7': 0.06,\n", " '108161.2': 0.03,\n", " '108160.0': 0.030039,\n", " '108159.5': 0.07,\n", " '108158.4': 0.147592,\n", " '108158.0': 0.018361,\n", " '108157.5': 0.000306,\n", " '108157.0': 7e-05,\n", " '108156.8': 0.239474,\n", " '108156.7': 0.000181,\n", " '108156.6': 0.003054,\n", " '108154.1': 0.003054,\n", " '108153.2': 7e-05,\n", " '108153.0': 0.003117,\n", " '108152.0': 0.06,\n", " '108151.3': 0.3915,\n", " '108151.0': 6.3e-05,\n", " '108150.7': 0.385049,\n", " '108150.0': 0.016333,\n", " '108148.9': 0.46229,\n", " '108148.3': 0.084,\n", " '108147.9': 0.018475,\n", " '108147.6': 0.06,\n", " '108147.2': 0.015,\n", " '108146.6': 0.615953,\n", " '108146.2': 7e-05,\n", " '108146.1': 0.151},\n", " 'asks': {'108241.8': 1.406656,\n", " '108247.2': 0.011498,\n", " '108247.3': 0.00757,\n", " '108247.9': 0.030442,\n", " '108249.2': 0.250139,\n", " '108249.4': 0.092372,\n", " '108249.9': 0.000462,\n", " '108250.0': 0.232744,\n", " '108250.5': 0.001001,\n", " '108250.6': 0.022451,\n", " '108251.3': 0.035833,\n", " '108252.1': 0.004618,\n", " '108252.3': 0.092377,\n", " '108252.7': 0.3915,\n", " '108253.8': 0.037582,\n", " '108253.9': 0.217884,\n", " '108254.4': 0.0001,\n", " '108254.5': 0.092375,\n", " '108255.2': 0.02,\n", " '108255.5': 0.221708,\n", " '108255.6': 0.122366,\n", " '108256.4': 0.002,\n", " '108256.7': 0.031605,\n", " '108256.8': 0.069819,\n", " '108257.1': 0.018475,\n", " '108257.2': 0.088215,\n", " '108257.5': 0.023093,\n", " '108258.0': 0.009238,\n", " '108258.7': 0.40207,\n", " '108259.6': 0.029947,\n", " '108259.7': 0.046185,\n", " '108260.8': 0.004,\n", " '108261.8': 0.000248,\n", " '108262.4': 0.138552,\n", " '108262.6': 0.03,\n", " '108263.0': 0.02,\n", " '108263.4': 0.132,\n", " '108263.8': 0.069819,\n", " '108264.6': 0.138549,\n", " '108264.7': 0.07781,\n", " '108264.8': 0.07803,\n", " '108265.1': 0.147592,\n", " '108265.2': 0.033,\n", " '108265.4': 0.132945,\n", " '108265.5': 0.13,\n", " '108265.8': 0.034865,\n", " '108265.9': 0.3915,\n", " '108266.6': 0.0001,\n", " '108267.1': 0.01,\n", " '108267.2': 0.013822,\n", " '108267.3': 0.03,\n", " '108267.7': 0.262945,\n", " '108268.4': 0.041405,\n", " '108268.5': 0.147592,\n", " '108269.1': 0.005,\n", " '108269.5': 7e-05,\n", " '108269.6': 0.039,\n", " '108269.9': 0.137,\n", " '108270.2': 7e-05,\n", " '108271.7': 0.162945,\n", " '108271.8': 0.147592,\n", " '108271.9': 0.050414,\n", " '108272.0': 0.17,\n", " '108272.7': 0.000478,\n", " '108272.9': 1.23194,\n", " '108273.6': 0.018217,\n", " '108273.8': 0.03,\n", " '108274.5': 0.009242,\n", " '108274.6': 0.132945,\n", " '108274.9': 0.089399,\n", " '108275.1': 0.284785,\n", " '108276.8': 0.280537,\n", " '108277.3': 0.3915,\n", " '108278.1': 0.003498,\n", " '108279.2': 0.132945,\n", " '108279.7': 0.027709,\n", " '108280.3': 0.147662,\n", " '108280.7': 0.020442,\n", " '108281.4': 0.132945,\n", " '108281.8': 0.069819,\n", " '108282.7': 0.009235,\n", " '108283.5': 0.004023,\n", " '108283.6': 0.280537,\n", " '108284.0': 0.045766,\n", " '108284.9': 0.532185,\n", " '108285.1': 0.010184,\n", " '108285.8': 0.132945,\n", " '108287.7': 9.4e-05,\n", " '108288.0': 0.132945,\n", " '108288.6': 0.000809,\n", " '108288.7': 0.003277,\n", " '108288.9': 0.147592,\n", " '108290.0': 0.076119,\n", " '108291.0': 0.132945,\n", " '108291.1': 0.452864,\n", " '108291.7': 0.000555,\n", " '108292.3': 0.147592,\n", " '108292.5': 0.3915,\n", " '108292.9': 0.393441,\n", " '108293.1': 0.069819,\n", " '108293.5': 0.009234,\n", " '108294.4': 0.001389,\n", " '108294.6': 0.132945,\n", " '108294.8': 0.00305,\n", " '108295.5': 0.184705,\n", " '108296.0': 0.147592,\n", " '108297.0': 0.000163,\n", " '108297.2': 0.015,\n", " '108298.5': 0.132945,\n", " '108301.2': 6.3e-05,\n", " '108301.5': 0.002993,\n", " '108301.6': 0.198592,\n", " '108301.7': 0.051,\n", " '108301.9': 7e-05,\n", " '108302.2': 0.033,\n", " '108302.9': 0.132945,\n", " '108303.4': 0.3915,\n", " '108304.2': 0.07,\n", " '108304.3': 0.03,\n", " '108304.9': 0.9,\n", " '108306.1': 0.147592,\n", " '108306.3': 0.436263,\n", " '108306.6': 0.039,\n", " '108307.3': 0.132945,\n", " '108307.7': 0.004616,\n", " '108308.1': 0.000206,\n", " '108308.7': 0.03,\n", " '108309.8': 0.569194,\n", " '108309.9': 0.147592,\n", " '108310.0': 0.583656,\n", " '108310.2': 0.069819,\n", " '108310.7': 0.46159,\n", " '108310.8': 0.084,\n", " '108310.9': 0.03,\n", " '108311.0': 0.000517,\n", " '108311.3': 0.441377,\n", " '108312.2': 0.06,\n", " '108312.7': 7e-05,\n", " '108314.2': 0.132945,\n", " '108314.3': 0.3915,\n", " '108314.5': 0.07,\n", " '108316.3': 0.001385,\n", " '108316.4': 0.147592,\n", " '108316.6': 0.001616,\n", " '108317.1': 0.092053,\n", " '108318.1': 0.069819,\n", " '108318.6': 0.132945,\n", " '108319.0': 0.070846,\n", " '108319.1': 0.005,\n", " '108320.6': 0.148592,\n", " '108322.4': 0.036764,\n", " '108322.5': 0.029947,\n", " '108323.0': 0.132945,\n", " '108323.5': 7e-05,\n", " '108324.1': 0.06,\n", " '108324.5': 7e-05,\n", " '108325.2': 0.3915,\n", " '108325.7': 0.069819,\n", " '108326.3': 0.1094,\n", " '108327.1': 0.147592,\n", " '108328.4': 0.06,\n", " '108328.9': 0.009242,\n", " '108329.1': 0.009242,\n", " '108330.0': 0.0002,\n", " '108331.1': 0.06,\n", " '108331.6': 0.147592,\n", " '108331.7': 0.600335,\n", " '108334.0': 0.069819,\n", " '108334.3': 0.239543,\n", " '108335.6': 0.06,\n", " '108336.1': 0.3915,\n", " '108336.6': 0.026,\n", " '108338.2': 0.198455,\n", " '108338.5': 0.000177,\n", " '108339.2': 0.494473,\n", " '108341.2': 0.07,\n", " '108341.4': 0.03,\n", " '108342.3': 0.003049,\n", " '108343.6': 0.039,\n", " '108343.9': 0.069819,\n", " '108344.3': 0.000319,\n", " '108345.1': 7e-05,\n", " '108345.7': 0.03,\n", " '108347.0': 0.3915,\n", " '108347.2': 0.015,\n", " '108347.8': 0.4,\n", " '108347.9': 0.1,\n", " '108348.0': 0.06,\n", " '108351.2': 0.000114,\n", " '108352.1': 0.010178,\n", " '108353.7': 0.461407,\n", " '108355.9': 7e-05,\n", " '108357.4': 0.545072,\n", " '108357.8': 0.004614,\n", " '108357.9': 0.3915,\n", " '108358.2': 0.07,\n", " '108359.8': 0.069819,\n", " '108361.4': 6.3e-05,\n", " '108362.9': 0.009239,\n", " '108363.4': 0.545042}}]" ] }, "execution_count": 57, "metadata": {}, "output_type": "execute_result" } ], "source": [ "orderbooks[:3]" ] }, { "cell_type": "code", "execution_count": 58, "id": "b9a123ba-abbf-4263-8f5a-c66ffce69326", "metadata": {}, "outputs": [ { "data": { "text/plain": [ "[{'symbol': 'BTCUSDT',\n", " 'timestamp': 1756684801229,\n", " 'lowest_ask': 108241.8,\n", " 'highest_bid': 108241.7,\n", " 'bids': [{'level': 0.005, 'volume': 0.616432},\n", " {'level': 0.01, 'volume': 2.074191},\n", " {'level': 0.015, 'volume': 3.83113},\n", " {'level': 0.02, 'volume': 5.3622510000000005}],\n", " 'asks': [{'level': 0.005, 'volume': 0},\n", " {'level': 0.01, 'volume': 0.588364},\n", " {'level': 0.015, 'volume': 1.7815260000000002},\n", " {'level': 0.02, 'volume': 2.399791}]},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1756684801430,\n", " 'lowest_ask': 108241.8,\n", " 'highest_bid': 108241.7,\n", " 'bids': [{'level': 0.005, 'volume': 0.6976190000000001},\n", " {'level': 0.01, 'volume': 2.133136},\n", " {'level': 0.015, 'volume': 3.896806999999999},\n", " {'level': 0.02, 'volume': 5.195621999999999}],\n", " 'asks': [{'level': 0.005, 'volume': 0.011498},\n", " {'level': 0.01, 'volume': 0.7739370000000001},\n", " {'level': 0.015, 'volume': 2.10604},\n", " {'level': 0.02, 'volume': 2.909042}]},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1756684801629,\n", " 'lowest_ask': 108241.8,\n", " 'highest_bid': 108241.7,\n", " 'bids': [{'level': 0.005, 'volume': 0.6976190000000001},\n", " {'level': 0.01, 'volume': 2.133136},\n", " {'level': 0.015, 'volume': 4.028669999999999},\n", " {'level': 0.02, 'volume': 5.549192999999999}],\n", " 'asks': [{'level': 0.005, 'volume': 0.011498},\n", " {'level': 0.01, 'volume': 0.7815070000000001},\n", " {'level': 0.015, 'volume': 2.1274669999999998},\n", " {'level': 0.02, 'volume': 2.930469}]}]" ] }, "execution_count": 58, "metadata": {}, "output_type": "execute_result" } ], "source": [ "levels[:3]" ] }, { "cell_type": "code", "execution_count": 59, "id": "1b6ed8f5-f379-409b-ad64-95e73874277f", "metadata": {}, "outputs": [ { "data": { "text/plain": [ "[{'symbol': 'BTCUSDT',\n", " 'timestamp': 1756684801229,\n", " 'lowest_ask': 108241.8,\n", " 'highest_bid': 108241.7,\n", " 'depth': 10,\n", " 'bids': {'in': 0.0, 'out': 0.0},\n", " 'asks': {'in': 0.0, 'out': 0.0}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1756684801229,\n", " 'lowest_ask': 108241.8,\n", " 'highest_bid': 108241.7,\n", " 'depth': 10,\n", " 'bids': {'in': 267825.1921611, 'out': 144300.90123040005},\n", " 'asks': {'in': 162848.7712041, 'out': 193219.8091764}},\n", " {'symbol': 'BTCUSDT',\n", " 'timestamp': 1756684801229,\n", " 'lowest_ask': 108241.8,\n", " 'highest_bid': 108241.7,\n", " 'depth': 10,\n", " 'bids': {'in': 166181.6158838, 'out': 209482.80654559997},\n", " 'asks': {'in': 241065.9893666, 'out': 84110.0910496}}]" ] }, "execution_count": 59, "metadata": {}, "output_type": "execute_result" } ], "source": [ "volumes[:3]" ] }, { "cell_type": "code", "execution_count": null, "id": "d128b4c5-7e96-49c5-a8c9-6ffad1392a63", "metadata": {}, "outputs": [], "source": [] }, { "cell_type": "code", "execution_count": null, "id": "63d5de62-a02e-4636-beab-d09ab08edbe9", "metadata": {}, "outputs": [], "source": [] }, { "cell_type": "code", "execution_count": null, "id": "b1a11862-7c56-4012-992b-285daba6bf1c", "metadata": {}, "outputs": [], "source": [] }, { "cell_type": "code", "execution_count": null, "id": "792fd989-49ec-47f5-bb66-7a4348c7d613", "metadata": {}, "outputs": [], "source": [] }, { "cell_type": "code", "execution_count": null, "id": "5c2b2fcd-1f5b-4db8-97b4-7389274a45c3", "metadata": {}, "outputs": [], "source": [] }, { "cell_type": "code", "execution_count": null, "id": "1639a8d9-83c6-4363-b875-3d9c0f50a102", "metadata": {}, "outputs": [], "source": [] }, { "cell_type": "code", "execution_count": null, "id": "0b5fbe70-4fe1-4b02-aecb-191fa9d8bc28", "metadata": {}, "outputs": [], "source": [] }, { "cell_type": "code", "execution_count": null, "id": "54a25fa9-1d64-4864-ac75-8810a03caa71", "metadata": {}, "outputs": [], "source": [] } ], "metadata": { "kernelspec": { "display_name": "rt_p311_nogpu", "language": "python", "name": "rt_p311_nogpu" }, "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.11.6" }, "widgets": { "application/vnd.jupyter.widget-state+json": { "state": {}, "version_major": 2, "version_minor": 0 } } }, "nbformat": 4, "nbformat_minor": 5 }