build 039: complete Quotes Feed migration foundation
This commit is contained in:
0
app/tools/dzengi_probe/README.md
Normal file
0
app/tools/dzengi_probe/README.md
Normal file
0
app/tools/dzengi_probe/__init__.py
Normal file
0
app/tools/dzengi_probe/__init__.py
Normal file
170
app/tools/dzengi_probe/ask_price_equivalence_probe.py
Normal file
170
app/tools/dzengi_probe/ask_price_equivalence_probe.py
Normal file
@@ -0,0 +1,170 @@
|
||||
from __future__ import annotations
|
||||
|
||||
import asyncio
|
||||
import csv
|
||||
import json
|
||||
from dataclasses import dataclass
|
||||
from decimal import Decimal
|
||||
from pathlib import Path
|
||||
from urllib.parse import urlencode
|
||||
from urllib.request import Request, urlopen
|
||||
|
||||
import websockets
|
||||
from websockets.typing import Subprotocol
|
||||
|
||||
from app.tools.dzengi_probe.config import DzengiProbeConfig
|
||||
|
||||
|
||||
@dataclass(frozen=True)
|
||||
class AskPriceSample:
|
||||
sample: int
|
||||
depth_ask: str | None
|
||||
stream_ofr: str | None
|
||||
ticker_ask_price: str | None
|
||||
|
||||
|
||||
class AskPriceEquivalenceProbe:
|
||||
def __init__(self, config: DzengiProbeConfig) -> None:
|
||||
self.config = config
|
||||
|
||||
async def run(self, *, samples: int = 30) -> Path:
|
||||
output_path = (
|
||||
self.config.output_dir
|
||||
/ "reports"
|
||||
/ f"ask_price_equivalence_{self.config.symbol_file_name}.csv"
|
||||
)
|
||||
output_path.parent.mkdir(parents=True, exist_ok=True)
|
||||
|
||||
rows: list[AskPriceSample] = []
|
||||
|
||||
async with websockets.connect(
|
||||
self.config.ws_url,
|
||||
extra_headers={
|
||||
"Origin": self.config.base_url,
|
||||
"Content-Type": "application/json",
|
||||
},
|
||||
subprotocols=[Subprotocol("json")],
|
||||
ping_interval=20,
|
||||
ping_timeout=20,
|
||||
close_timeout=5,
|
||||
) as websocket:
|
||||
await websocket.send(
|
||||
json.dumps(
|
||||
{
|
||||
"correlationId": "probe-market-data-subscribe",
|
||||
"destination": "marketData.subscribe",
|
||||
"payload": {"symbols": [self.config.symbol]},
|
||||
}
|
||||
)
|
||||
)
|
||||
|
||||
for index in range(1, samples + 1):
|
||||
stream_ofr = await self._read_next_ofr(websocket)
|
||||
depth_ask = self._get_depth_ask()
|
||||
ticker_ask_price = self._get_ticker_ask_price()
|
||||
|
||||
rows.append(
|
||||
AskPriceSample(
|
||||
sample=index,
|
||||
depth_ask=depth_ask,
|
||||
stream_ofr=stream_ofr,
|
||||
ticker_ask_price=ticker_ask_price,
|
||||
)
|
||||
)
|
||||
|
||||
await asyncio.sleep(0.2)
|
||||
|
||||
self._save_csv(output_path, rows)
|
||||
return output_path
|
||||
|
||||
async def _read_next_ofr(self, websocket) -> str | None:
|
||||
while True:
|
||||
raw_message = await asyncio.wait_for(
|
||||
websocket.recv(),
|
||||
timeout=self.config.timeout_seconds,
|
||||
)
|
||||
payload = json.loads(raw_message)
|
||||
|
||||
if payload.get("destination") != "internal.quote":
|
||||
continue
|
||||
|
||||
data = payload.get("payload")
|
||||
if not isinstance(data, dict):
|
||||
continue
|
||||
|
||||
value = data.get("ofr")
|
||||
if value is None:
|
||||
continue
|
||||
|
||||
return str(Decimal(str(value)))
|
||||
|
||||
def _get_depth_ask(self) -> str | None:
|
||||
payload = self._get_json(
|
||||
f"/api/{self.config.api_version}/depth",
|
||||
{
|
||||
"symbol": self.config.symbol,
|
||||
"limit": self.config.depth_limit,
|
||||
},
|
||||
)
|
||||
|
||||
asks = payload.get("asks")
|
||||
if not asks:
|
||||
return None
|
||||
|
||||
return str(Decimal(str(asks[0][0])))
|
||||
|
||||
def _get_ticker_ask_price(self) -> str | None:
|
||||
payload = self._get_json(
|
||||
f"/api/{self.config.api_version}/ticker/24hr",
|
||||
{"symbol": self.config.symbol},
|
||||
)
|
||||
|
||||
value = payload.get("askPrice")
|
||||
if value is None:
|
||||
return None
|
||||
|
||||
return str(Decimal(str(value)))
|
||||
|
||||
def _get_json(self, path: str, params: dict[str, str]) -> dict:
|
||||
query = urlencode(params)
|
||||
url = f"{self.config.base_url}{path}?{query}"
|
||||
|
||||
request = Request(
|
||||
url=url,
|
||||
method="GET",
|
||||
headers={
|
||||
"Accept": "application/json",
|
||||
"User-Agent": "dzentra-dzengi-probe/1.0",
|
||||
},
|
||||
)
|
||||
|
||||
with urlopen(request, timeout=self.config.timeout_seconds) as response:
|
||||
return json.loads(response.read().decode("utf-8"))
|
||||
|
||||
def _save_csv(self, path: Path, rows: list[AskPriceSample]) -> None:
|
||||
with path.open("w", encoding="utf-8", newline="") as file:
|
||||
writer = csv.writer(file)
|
||||
writer.writerow(
|
||||
[
|
||||
"sample",
|
||||
"depth_ask",
|
||||
"stream_ofr",
|
||||
"ticker_ask_price",
|
||||
"depth_equals_stream",
|
||||
"ticker_equals_depth",
|
||||
"ticker_equals_stream",
|
||||
]
|
||||
)
|
||||
|
||||
for row in rows:
|
||||
writer.writerow(
|
||||
[
|
||||
row.sample,
|
||||
row.depth_ask,
|
||||
row.stream_ofr,
|
||||
row.ticker_ask_price,
|
||||
row.depth_ask == row.stream_ofr,
|
||||
row.ticker_ask_price == row.depth_ask,
|
||||
row.ticker_ask_price == row.stream_ofr,
|
||||
]
|
||||
)
|
||||
49
app/tools/dzengi_probe/config.py
Normal file
49
app/tools/dzengi_probe/config.py
Normal file
@@ -0,0 +1,49 @@
|
||||
# app/tools/dzengi_probe/config.py
|
||||
|
||||
from __future__ import annotations
|
||||
|
||||
import os
|
||||
from dataclasses import dataclass
|
||||
from pathlib import Path
|
||||
|
||||
from dotenv import load_dotenv
|
||||
|
||||
|
||||
@dataclass(frozen=True)
|
||||
class DzengiProbeConfig:
|
||||
base_url: str
|
||||
ws_url: str
|
||||
api_version: str
|
||||
symbol: str
|
||||
symbol_file_name: str
|
||||
interval: str
|
||||
depth_limit: str
|
||||
agg_trades_limit: str
|
||||
timeout_seconds: float
|
||||
output_dir: Path
|
||||
|
||||
|
||||
def load_config() -> DzengiProbeConfig:
|
||||
load_dotenv("app/.env")
|
||||
|
||||
base_url = os.getenv("EXCHANGE_BASE_URL", "").rstrip("/")
|
||||
ws_url = os.getenv("EXCHANGE_WS_URL", "").rstrip("/")
|
||||
|
||||
if not base_url:
|
||||
raise RuntimeError("EXCHANGE_BASE_URL is empty.")
|
||||
|
||||
symbol = os.getenv("PROBE_SYMBOL", "BTC/USD_LEVERAGE")
|
||||
symbol_file_name = symbol.replace("/", "_")
|
||||
|
||||
return DzengiProbeConfig(
|
||||
base_url=base_url,
|
||||
ws_url=ws_url,
|
||||
api_version=os.getenv("PROBE_API_VERSION", "v1"),
|
||||
symbol=symbol,
|
||||
symbol_file_name=symbol_file_name,
|
||||
interval=os.getenv("PROBE_KLINE_INTERVAL", "1m"),
|
||||
depth_limit=os.getenv("PROBE_DEPTH_LIMIT", "20"),
|
||||
agg_trades_limit=os.getenv("PROBE_AGG_TRADES_LIMIT", "20"),
|
||||
timeout_seconds=float(os.getenv("EXCHANGE_TIMEOUT_SEC", "10")),
|
||||
output_dir=Path("app/tools/dzengi_probe/runtime_samples"),
|
||||
)
|
||||
118
app/tools/dzengi_probe/connection_probe.py
Normal file
118
app/tools/dzengi_probe/connection_probe.py
Normal file
@@ -0,0 +1,118 @@
|
||||
# app/tools/dzengi_probe/connection_probe.py
|
||||
|
||||
from __future__ import annotations
|
||||
|
||||
import asyncio
|
||||
import json
|
||||
from dataclasses import dataclass
|
||||
from typing import Any
|
||||
|
||||
import websockets
|
||||
from websockets.typing import Subprotocol
|
||||
|
||||
from app.tools.dzengi_probe.config import DzengiProbeConfig
|
||||
|
||||
|
||||
@dataclass(frozen=True)
|
||||
class ConnectionProbeResult:
|
||||
name: str
|
||||
ok: bool
|
||||
error: str | None = None
|
||||
|
||||
|
||||
class DzengiConnectionProbe:
|
||||
def __init__(self, config: DzengiProbeConfig) -> None:
|
||||
self.config = config
|
||||
|
||||
async def run_all(self) -> list[ConnectionProbeResult]:
|
||||
return [
|
||||
await self._check(
|
||||
name="baseline",
|
||||
headers={
|
||||
"Origin": self.config.base_url,
|
||||
"Content-Type": "application/json",
|
||||
},
|
||||
subprotocols=[Subprotocol("json")],
|
||||
),
|
||||
await self._check(
|
||||
name="without_origin",
|
||||
headers={
|
||||
"Content-Type": "application/json",
|
||||
},
|
||||
subprotocols=[Subprotocol("json")],
|
||||
),
|
||||
await self._check(
|
||||
name="without_content_type",
|
||||
headers={
|
||||
"Origin": self.config.base_url,
|
||||
},
|
||||
subprotocols=[Subprotocol("json")],
|
||||
),
|
||||
await self._check(
|
||||
name="without_headers",
|
||||
headers=None,
|
||||
subprotocols=[Subprotocol("json")],
|
||||
),
|
||||
await self._check(
|
||||
name="without_subprotocol",
|
||||
headers={
|
||||
"Origin": self.config.base_url,
|
||||
"Content-Type": "application/json",
|
||||
},
|
||||
subprotocols=None,
|
||||
),
|
||||
await self._check(
|
||||
name="minimal_connection",
|
||||
headers=None,
|
||||
subprotocols=None,
|
||||
),
|
||||
]
|
||||
|
||||
async def _check(
|
||||
self,
|
||||
*,
|
||||
name: str,
|
||||
headers: dict[str, str] | None,
|
||||
subprotocols: list[Subprotocol] | None,
|
||||
) -> ConnectionProbeResult:
|
||||
subscribe_message: dict[str, Any] = {
|
||||
"correlationId": f"connection-probe-{name}",
|
||||
"destination": "marketData.subscribe",
|
||||
"payload": {
|
||||
"symbols": [self.config.symbol],
|
||||
},
|
||||
}
|
||||
|
||||
try:
|
||||
async with websockets.connect(
|
||||
self.config.ws_url,
|
||||
extra_headers=headers,
|
||||
subprotocols=subprotocols,
|
||||
ping_interval=20,
|
||||
ping_timeout=20,
|
||||
close_timeout=5,
|
||||
) as websocket:
|
||||
await websocket.send(json.dumps(subscribe_message))
|
||||
|
||||
raw_message = await asyncio.wait_for(
|
||||
websocket.recv(),
|
||||
timeout=self.config.timeout_seconds,
|
||||
)
|
||||
|
||||
payload = json.loads(raw_message)
|
||||
|
||||
if payload.get("status") != "OK":
|
||||
return ConnectionProbeResult(
|
||||
name=name,
|
||||
ok=False,
|
||||
error=json.dumps(payload, ensure_ascii=False),
|
||||
)
|
||||
|
||||
return ConnectionProbeResult(name=name, ok=True)
|
||||
|
||||
except Exception as exc:
|
||||
return ConnectionProbeResult(
|
||||
name=name,
|
||||
ok=False,
|
||||
error=str(exc),
|
||||
)
|
||||
150
app/tools/dzengi_probe/probe.py
Normal file
150
app/tools/dzengi_probe/probe.py
Normal file
@@ -0,0 +1,150 @@
|
||||
# app/tools/dzengi_probe/probe.py
|
||||
|
||||
from __future__ import annotations
|
||||
|
||||
import argparse
|
||||
import asyncio
|
||||
|
||||
from app.tools.dzengi_probe.config import load_config
|
||||
from app.tools.dzengi_probe.connection_probe import DzengiConnectionProbe
|
||||
from app.tools.dzengi_probe.rest_probe import DzengiRestProbe
|
||||
from app.tools.dzengi_probe.stream_market_data_probe import MarketDataStreamProbe
|
||||
from app.tools.dzengi_probe.websocket_probe import DzengiWebSocketProbe
|
||||
|
||||
|
||||
def run_rest_probe() -> None:
|
||||
config = load_config()
|
||||
probe = DzengiRestProbe(config)
|
||||
|
||||
results = probe.run_all()
|
||||
|
||||
print("Dzengi REST probe results:")
|
||||
for result in results:
|
||||
status = "OK" if result.ok else "FAIL"
|
||||
print(f"- {status} {result.endpoint} -> {result.output_file}")
|
||||
|
||||
if result.error:
|
||||
print(f" error: {result.error}")
|
||||
|
||||
|
||||
async def run_connection_probe() -> None:
|
||||
config = load_config()
|
||||
probe = DzengiConnectionProbe(config)
|
||||
|
||||
results = await probe.run_all()
|
||||
|
||||
print("Dzengi connection probe results:")
|
||||
for result in results:
|
||||
status = "OK" if result.ok else "FAIL"
|
||||
print(f"- {status} {result.name}")
|
||||
|
||||
if result.error:
|
||||
print(f" error: {result.error}")
|
||||
|
||||
|
||||
async def run_ws_depth_probe() -> None:
|
||||
config = load_config()
|
||||
probe = DzengiWebSocketProbe(config)
|
||||
|
||||
result = await probe.probe_depth_request()
|
||||
|
||||
status = "OK" if result.ok else "FAIL"
|
||||
print("Dzengi WebSocket Request probe results:")
|
||||
print(f"- {status} {result.stream} -> {result.output_file}")
|
||||
print(f" messages saved: {result.messages_saved}")
|
||||
|
||||
if result.error:
|
||||
print(f" error: {result.error}")
|
||||
|
||||
|
||||
async def run_market_data_stream_probe(
|
||||
duration: int | None = None,
|
||||
scenario: str = "valid",
|
||||
repeat: int = 1,
|
||||
) -> None:
|
||||
config = load_config()
|
||||
probe = MarketDataStreamProbe(config)
|
||||
|
||||
result = await probe.run(
|
||||
max_messages=None if duration else 10,
|
||||
duration_seconds=duration,
|
||||
scenario=scenario,
|
||||
repeat=repeat,
|
||||
)
|
||||
|
||||
status = "OK" if result.ok else "FAIL"
|
||||
print("Dzengi Stream probe results:")
|
||||
print(f"- {status} {result.stream} -> {result.output_file}")
|
||||
print(f" messages saved: {result.messages_saved}")
|
||||
|
||||
if result.error:
|
||||
print(f" error: {result.error}")
|
||||
|
||||
|
||||
def main() -> None:
|
||||
parser = argparse.ArgumentParser()
|
||||
|
||||
parser.add_argument(
|
||||
"target",
|
||||
choices=[
|
||||
"rest",
|
||||
"ws-depth",
|
||||
"stream-market-data",
|
||||
"connection",
|
||||
],
|
||||
)
|
||||
|
||||
parser.add_argument(
|
||||
"--duration",
|
||||
type=int,
|
||||
default=None,
|
||||
)
|
||||
|
||||
parser.add_argument(
|
||||
"--repeat",
|
||||
type=int,
|
||||
default=1,
|
||||
)
|
||||
|
||||
parser.add_argument(
|
||||
"--scenario",
|
||||
default="valid",
|
||||
choices=[
|
||||
"valid",
|
||||
"invalid-symbol",
|
||||
"empty-symbols",
|
||||
"missing-symbols",
|
||||
"missing-payload",
|
||||
"invalid-destination",
|
||||
"unsubscribe",
|
||||
"multi-symbol",
|
||||
],
|
||||
)
|
||||
|
||||
args = parser.parse_args()
|
||||
|
||||
if args.target == "rest":
|
||||
run_rest_probe()
|
||||
return
|
||||
|
||||
if args.target == "ws-depth":
|
||||
asyncio.run(run_ws_depth_probe())
|
||||
return
|
||||
|
||||
if args.target == "stream-market-data":
|
||||
asyncio.run(
|
||||
run_market_data_stream_probe(
|
||||
duration=args.duration,
|
||||
scenario=args.scenario,
|
||||
repeat=args.repeat,
|
||||
)
|
||||
)
|
||||
return
|
||||
|
||||
if args.target == "connection":
|
||||
asyncio.run(run_connection_probe())
|
||||
return
|
||||
|
||||
|
||||
if __name__ == "__main__":
|
||||
main()
|
||||
0
app/tools/dzengi_probe/reports/README.md
Normal file
0
app/tools/dzengi_probe/reports/README.md
Normal file
23
app/tools/dzengi_probe/response_store.py
Normal file
23
app/tools/dzengi_probe/response_store.py
Normal file
@@ -0,0 +1,23 @@
|
||||
# app/tools/dzengi_probe/response_store.py
|
||||
|
||||
from __future__ import annotations
|
||||
|
||||
import json
|
||||
from pathlib import Path
|
||||
from typing import Any
|
||||
|
||||
|
||||
def save_json(path: Path, payload: Any) -> None:
|
||||
path.parent.mkdir(parents=True, exist_ok=True)
|
||||
|
||||
with path.open("w", encoding="utf-8") as file:
|
||||
json.dump(payload, file, ensure_ascii=False, indent=2, sort_keys=True)
|
||||
file.write("\n")
|
||||
|
||||
|
||||
def append_jsonl(path: Path, payload: Any) -> None:
|
||||
path.parent.mkdir(parents=True, exist_ok=True)
|
||||
|
||||
with path.open("a", encoding="utf-8") as file:
|
||||
file.write(json.dumps(payload, ensure_ascii=False, sort_keys=True))
|
||||
file.write("\n")
|
||||
195
app/tools/dzengi_probe/rest_probe.py
Normal file
195
app/tools/dzengi_probe/rest_probe.py
Normal file
@@ -0,0 +1,195 @@
|
||||
# app/tools/dzengi_probe/rest_probe.py
|
||||
|
||||
from __future__ import annotations
|
||||
|
||||
import json
|
||||
from dataclasses import dataclass
|
||||
from urllib.error import HTTPError, URLError
|
||||
from urllib.parse import urlencode
|
||||
from urllib.request import Request, urlopen
|
||||
|
||||
from app.tools.dzengi_probe.config import DzengiProbeConfig
|
||||
from app.tools.dzengi_probe.response_store import save_json
|
||||
|
||||
|
||||
@dataclass(frozen=True)
|
||||
class RestProbeResult:
|
||||
endpoint: str
|
||||
path: str
|
||||
output_file: str
|
||||
ok: bool
|
||||
error: str | None = None
|
||||
|
||||
|
||||
class DzengiRestProbe:
|
||||
def __init__(self, config: DzengiProbeConfig) -> None:
|
||||
self.config = config
|
||||
|
||||
def run_all(self) -> list[RestProbeResult]:
|
||||
return [
|
||||
self.probe_time(),
|
||||
self.probe_exchange_info(),
|
||||
self.probe_ticker24hr(),
|
||||
self.probe_depth(),
|
||||
self.probe_klines(),
|
||||
self.probe_agg_trades(),
|
||||
]
|
||||
|
||||
def probe_time(self) -> RestProbeResult:
|
||||
return self._get_and_save(
|
||||
endpoint="time",
|
||||
path=f"/api/{self.config.api_version}/time",
|
||||
params=None,
|
||||
output_file="rest/time/response.json",
|
||||
)
|
||||
|
||||
def probe_exchange_info(self) -> RestProbeResult:
|
||||
return self._get_and_save(
|
||||
endpoint="exchangeInfo",
|
||||
path=f"/api/{self.config.api_version}/exchangeInfo",
|
||||
params=None,
|
||||
output_file="rest/exchangeInfo/all.json",
|
||||
)
|
||||
|
||||
def probe_ticker24hr(self) -> RestProbeResult:
|
||||
return self._get_and_save(
|
||||
endpoint="ticker24hr",
|
||||
path=f"/api/{self.config.api_version}/ticker/24hr",
|
||||
params={"symbol": self.config.symbol},
|
||||
output_file=f"rest/ticker24hr/{self.config.symbol_file_name}.json",
|
||||
)
|
||||
|
||||
def probe_depth(self) -> RestProbeResult:
|
||||
return self._get_and_save(
|
||||
endpoint="depth",
|
||||
path=f"/api/{self.config.api_version}/depth",
|
||||
params={
|
||||
"symbol": self.config.symbol,
|
||||
"limit": self.config.depth_limit,
|
||||
},
|
||||
output_file=f"rest/depth/{self.config.symbol_file_name}.json",
|
||||
)
|
||||
|
||||
def probe_klines(self) -> RestProbeResult:
|
||||
return self._get_and_save(
|
||||
endpoint="klines",
|
||||
path=f"/api/{self.config.api_version}/klines",
|
||||
params={
|
||||
"symbol": self.config.symbol,
|
||||
"interval": self.config.interval,
|
||||
"limit": "10",
|
||||
},
|
||||
output_file=(
|
||||
f"rest/klines/"
|
||||
f"{self.config.symbol_file_name}_{self.config.interval}.json"
|
||||
),
|
||||
)
|
||||
|
||||
def probe_agg_trades(self) -> RestProbeResult:
|
||||
return self._get_and_save(
|
||||
endpoint="aggTrades",
|
||||
path=f"/api/{self.config.api_version}/aggTrades",
|
||||
params={
|
||||
"symbol": self.config.symbol,
|
||||
"limit": self.config.agg_trades_limit,
|
||||
},
|
||||
output_file=f"rest/aggTrades/{self.config.symbol_file_name}.json",
|
||||
)
|
||||
|
||||
def _get_and_save(
|
||||
self,
|
||||
*,
|
||||
endpoint: str,
|
||||
path: str,
|
||||
params: dict[str, str] | None,
|
||||
output_file: str,
|
||||
) -> RestProbeResult:
|
||||
url = self._build_url(path, params)
|
||||
|
||||
request = Request(
|
||||
url=url,
|
||||
method="GET",
|
||||
headers={
|
||||
"Accept": "application/json",
|
||||
"User-Agent": "dzentra-dzengi-probe/1.0",
|
||||
},
|
||||
)
|
||||
|
||||
try:
|
||||
with urlopen(request, timeout=self.config.timeout_seconds) as response:
|
||||
status = getattr(response, "status", 200)
|
||||
body = response.read().decode("utf-8")
|
||||
|
||||
if status != 200:
|
||||
return RestProbeResult(
|
||||
endpoint=endpoint,
|
||||
path=path,
|
||||
output_file=output_file,
|
||||
ok=False,
|
||||
error=f"Unexpected HTTP status: {status}",
|
||||
)
|
||||
|
||||
payload = json.loads(body)
|
||||
output_path = self.config.output_dir / output_file
|
||||
save_json(output_path, payload)
|
||||
|
||||
return RestProbeResult(
|
||||
endpoint=endpoint,
|
||||
path=path,
|
||||
output_file=str(output_path),
|
||||
ok=True,
|
||||
)
|
||||
|
||||
except HTTPError as exc:
|
||||
error_body = ""
|
||||
try:
|
||||
error_body = exc.read().decode("utf-8")
|
||||
except Exception:
|
||||
pass
|
||||
|
||||
message = f"HTTP {exc.code}: {exc.reason}"
|
||||
if error_body:
|
||||
message += f" | body: {error_body}"
|
||||
|
||||
return RestProbeResult(
|
||||
endpoint=endpoint,
|
||||
path=path,
|
||||
output_file=output_file,
|
||||
ok=False,
|
||||
error=message,
|
||||
)
|
||||
|
||||
except URLError as exc:
|
||||
return RestProbeResult(
|
||||
endpoint=endpoint,
|
||||
path=path,
|
||||
output_file=output_file,
|
||||
ok=False,
|
||||
error=f"Network error: {exc.reason}",
|
||||
)
|
||||
|
||||
except TimeoutError:
|
||||
return RestProbeResult(
|
||||
endpoint=endpoint,
|
||||
path=path,
|
||||
output_file=output_file,
|
||||
ok=False,
|
||||
error="Timeout while calling Dzengi API.",
|
||||
)
|
||||
|
||||
except json.JSONDecodeError as exc:
|
||||
return RestProbeResult(
|
||||
endpoint=endpoint,
|
||||
path=path,
|
||||
output_file=output_file,
|
||||
ok=False,
|
||||
error=f"Non-JSON response: {exc}",
|
||||
)
|
||||
|
||||
def _build_url(
|
||||
self,
|
||||
path: str,
|
||||
params: dict[str, str] | None,
|
||||
) -> str:
|
||||
query = f"?{urlencode(params)}" if params else ""
|
||||
return f"{self.config.base_url}{path}{query}"
|
||||
0
app/tools/dzengi_probe/runtime_samples/README.md
Normal file
0
app/tools/dzengi_probe/runtime_samples/README.md
Normal file
@@ -0,0 +1,31 @@
|
||||
sample,depth_ask,stream_ofr,ticker_ask_price,depth_equals_stream,ticker_equals_depth,ticker_equals_stream
|
||||
1,62217.3,62215.3,62215.80,False,False,False
|
||||
2,62216.9,62216.55,62215.80,False,False,False
|
||||
3,62216.9,62220.8,62215.80,False,False,False
|
||||
4,62216.9,62218.05,62215.80,False,False,False
|
||||
5,62216.9,62212.45,62215.80,False,False,False
|
||||
6,62216.9,62217.3,62215.80,False,False,False
|
||||
7,62212.85,62216.05,62215.80,False,False,False
|
||||
8,62212.7,62220.7,62215.80,False,False,False
|
||||
9,62213.8,62217.3,62215.80,False,False,False
|
||||
10,62211.9,62212.65,62215.80,False,False,False
|
||||
11,62213.55,62217.3,62215.80,False,False,False
|
||||
12,62213.55,62216.9,62215.80,False,False,False
|
||||
13,62213.55,62218.7,62215.80,False,False,False
|
||||
14,62213.55,62214.05,62215.80,False,False,False
|
||||
15,62213.55,62213.2,62215.80,False,False,False
|
||||
16,62213.55,62216.45,62215.80,False,False,False
|
||||
17,62236.6,62213.45,62215.80,False,False,False
|
||||
18,62239.4,62212.85,62215.80,False,False,False
|
||||
19,62236.4,62213.7,62215.80,False,False,False
|
||||
20,62221.55,62208.45,62221.60,False,False,False
|
||||
21,62225,62210.6,62221.60,False,False,False
|
||||
22,62219.75,62213.8,62221.60,False,False,False
|
||||
23,62217.1,62209.8,62221.60,False,False,False
|
||||
24,62224.4,62212.6,62221.60,False,False,False
|
||||
25,62238.75,62212.7,62221.60,False,False,False
|
||||
26,62241.5,62214.0,62221.60,False,False,False
|
||||
27,62245.45,62211.6,62221.60,False,False,False
|
||||
28,62245.05,62210.85,62221.60,False,False,False
|
||||
29,62245.05,62213.8,62221.60,False,False,False
|
||||
30,62245.05,62212.0,62221.60,False,False,False
|
||||
|
@@ -0,0 +1,301 @@
|
||||
sample,local_time_ms,close_time,ask_price,bid_price,last_price,ask_changed,bid_changed,last_changed,close_time_changed,last_equals_bid
|
||||
1,1783573006101,1783572989542,62334.20,62334.10,62334.10,False,False,False,False,True
|
||||
2,1783573006593,1783572989542,62334.20,62334.10,62334.10,False,False,False,False,True
|
||||
3,1783573007060,1783572989542,62334.20,62334.10,62334.10,False,False,False,False,True
|
||||
4,1783573007571,1783572989542,62334.20,62334.10,62334.10,False,False,False,False,True
|
||||
5,1783573008101,1783573008128,62349.30,62349.20,62349.20,True,True,True,True,True
|
||||
6,1783573008616,1783573008128,62349.30,62349.20,62349.20,False,False,False,False,True
|
||||
7,1783573009148,1783573008128,62349.30,62349.20,62349.20,False,False,False,False,True
|
||||
8,1783573009669,1783573008128,62349.30,62349.20,62349.20,False,False,False,False,True
|
||||
9,1783573010207,1783573008128,62349.30,62349.20,62349.20,False,False,False,False,True
|
||||
10,1783573010718,1783573008128,62349.30,62349.20,62349.20,False,False,False,False,True
|
||||
11,1783573011239,1783573008128,62349.30,62349.20,62349.20,False,False,False,False,True
|
||||
12,1783573011765,1783573008128,62349.30,62349.20,62349.20,False,False,False,False,True
|
||||
13,1783573012292,1783573008128,62349.30,62349.20,62349.20,False,False,False,False,True
|
||||
14,1783573012817,1783573008128,62349.30,62349.20,62349.20,False,False,False,False,True
|
||||
15,1783573013337,1783573008128,62349.30,62349.20,62349.20,False,False,False,False,True
|
||||
16,1783573013867,1783573008128,62349.30,62349.20,62349.20,False,False,False,False,True
|
||||
17,1783573014393,1783573008128,62349.30,62349.20,62349.20,False,False,False,False,True
|
||||
18,1783573014919,1783573008128,62349.30,62349.20,62349.20,False,False,False,False,True
|
||||
19,1783573015476,1783573008128,62349.30,62349.20,62349.20,False,False,False,False,True
|
||||
20,1783573015959,1783573008128,62349.30,62349.20,62349.20,False,False,False,False,True
|
||||
21,1783573016483,1783573008128,62349.30,62349.20,62349.20,False,False,False,False,True
|
||||
22,1783573017015,1783573008128,62349.30,62349.20,62349.20,False,False,False,False,True
|
||||
23,1783573017528,1783573008128,62349.30,62349.20,62349.20,False,False,False,False,True
|
||||
24,1783573018062,1783573008128,62349.30,62349.20,62349.20,False,False,False,False,True
|
||||
25,1783573018578,1783573008128,62349.30,62349.20,62349.20,False,False,False,False,True
|
||||
26,1783573019113,1783573008128,62349.30,62349.20,62349.20,False,False,False,False,True
|
||||
27,1783573019630,1783573008128,62349.30,62349.20,62349.20,False,False,False,False,True
|
||||
28,1783573020157,1783573008128,62349.30,62349.20,62349.20,False,False,False,False,True
|
||||
29,1783573020686,1783573008128,62349.30,62349.20,62349.20,False,False,False,False,True
|
||||
30,1783573021214,1783573008128,62349.30,62349.20,62349.20,False,False,False,False,True
|
||||
31,1783573021737,1783573008128,62349.30,62349.20,62349.20,False,False,False,False,True
|
||||
32,1783573022250,1783573008128,62349.30,62349.20,62349.20,False,False,False,False,True
|
||||
33,1783573022771,1783573008128,62349.30,62349.20,62349.20,False,False,False,False,True
|
||||
34,1783573023305,1783573008128,62349.30,62349.20,62349.20,False,False,False,False,True
|
||||
35,1783573023830,1783573008128,62349.30,62349.20,62349.20,False,False,False,False,True
|
||||
36,1783573024372,1783573008128,62349.30,62349.20,62349.20,False,False,False,False,True
|
||||
37,1783573024877,1783573008128,62349.30,62349.20,62349.20,False,False,False,False,True
|
||||
38,1783573025405,1783573008128,62349.30,62349.20,62349.20,False,False,False,False,True
|
||||
39,1783573025931,1783573008128,62349.30,62349.20,62349.20,False,False,False,False,True
|
||||
40,1783573026452,1783573008128,62349.30,62349.20,62349.20,False,False,False,False,True
|
||||
41,1783573026993,1783573008128,62349.30,62349.20,62349.20,False,False,False,False,True
|
||||
42,1783573027496,1783573008128,62349.30,62349.20,62349.20,False,False,False,False,True
|
||||
43,1783573028025,1783573028055,62363.40,62363.30,62363.30,True,True,True,True,True
|
||||
44,1783573028547,1783573028055,62363.40,62363.30,62363.30,False,False,False,False,True
|
||||
45,1783573029074,1783573028055,62363.40,62363.30,62363.30,False,False,False,False,True
|
||||
46,1783573029597,1783573028055,62363.40,62363.30,62363.30,False,False,False,False,True
|
||||
47,1783573030117,1783573028055,62363.40,62363.30,62363.30,False,False,False,False,True
|
||||
48,1783573030695,1783573028055,62363.40,62363.30,62363.30,False,False,False,False,True
|
||||
49,1783573031172,1783573028055,62363.40,62363.30,62363.30,False,False,False,False,True
|
||||
50,1783573031696,1783573028055,62363.40,62363.30,62363.30,False,False,False,False,True
|
||||
51,1783573032221,1783573028055,62363.40,62363.30,62363.30,False,False,False,False,True
|
||||
52,1783573032742,1783573028055,62363.40,62363.30,62363.30,False,False,False,False,True
|
||||
53,1783573033266,1783573028055,62363.40,62363.30,62363.30,False,False,False,False,True
|
||||
54,1783573033788,1783573028055,62363.40,62363.30,62363.30,False,False,False,False,True
|
||||
55,1783573034317,1783573028055,62363.40,62363.30,62363.30,False,False,False,False,True
|
||||
56,1783573034839,1783573028055,62363.40,62363.30,62363.30,False,False,False,False,True
|
||||
57,1783573035362,1783573028055,62363.40,62363.30,62363.30,False,False,False,False,True
|
||||
58,1783573035893,1783573028055,62363.40,62363.30,62363.30,False,False,False,False,True
|
||||
59,1783573036435,1783573028055,62363.40,62363.30,62363.30,False,False,False,False,True
|
||||
60,1783573036939,1783573028055,62363.40,62363.30,62363.30,False,False,False,False,True
|
||||
61,1783573037462,1783573028055,62363.40,62363.30,62363.30,False,False,False,False,True
|
||||
62,1783573037985,1783573028055,62363.40,62363.30,62363.30,False,False,False,False,True
|
||||
63,1783573038507,1783573028055,62363.40,62363.30,62363.30,False,False,False,False,True
|
||||
64,1783573039038,1783573028055,62363.40,62363.30,62363.30,False,False,False,False,True
|
||||
65,1783573039562,1783573028055,62363.40,62363.30,62363.30,False,False,False,False,True
|
||||
66,1783573040077,1783573028055,62363.40,62363.30,62363.30,False,False,False,False,True
|
||||
67,1783573040605,1783573028055,62363.40,62363.30,62363.30,False,False,False,False,True
|
||||
68,1783573041135,1783573028055,62363.40,62363.30,62363.30,False,False,False,False,True
|
||||
69,1783573041658,1783573028055,62363.40,62363.30,62363.30,False,False,False,False,True
|
||||
70,1783573042184,1783573028055,62363.40,62363.30,62363.30,False,False,False,False,True
|
||||
71,1783573042710,1783573028055,62363.40,62363.30,62363.30,False,False,False,False,True
|
||||
72,1783573043228,1783573028055,62363.40,62363.30,62363.30,False,False,False,False,True
|
||||
73,1783573043748,1783573028055,62363.40,62363.30,62363.30,False,False,False,False,True
|
||||
74,1783573044270,1783573028055,62363.40,62363.30,62363.30,False,False,False,False,True
|
||||
75,1783573044807,1783573028055,62363.40,62363.30,62363.30,False,False,False,False,True
|
||||
76,1783573045327,1783573028055,62363.40,62363.30,62363.30,False,False,False,False,True
|
||||
77,1783573045850,1783573028055,62363.40,62363.30,62363.30,False,False,False,False,True
|
||||
78,1783573046375,1783573028055,62363.40,62363.30,62363.30,False,False,False,False,True
|
||||
79,1783573046901,1783573028055,62363.40,62363.30,62363.30,False,False,False,False,True
|
||||
80,1783573047418,1783573028055,62363.40,62363.30,62363.30,False,False,False,False,True
|
||||
81,1783573047962,1783573047988,62387.30,62387.20,62387.20,True,True,True,True,True
|
||||
82,1783573048867,1783573047988,62387.30,62387.20,62387.20,False,False,False,False,True
|
||||
83,1783573049393,1783573047988,62387.30,62387.20,62387.20,False,False,False,False,True
|
||||
84,1783573049916,1783573047988,62387.30,62387.20,62387.20,False,False,False,False,True
|
||||
85,1783573050445,1783573047988,62387.30,62387.20,62387.20,False,False,False,False,True
|
||||
86,1783573050965,1783573047988,62387.30,62387.20,62387.20,False,False,False,False,True
|
||||
87,1783573051488,1783573047988,62387.30,62387.20,62387.20,False,False,False,False,True
|
||||
88,1783573052011,1783573047988,62387.30,62387.20,62387.20,False,False,False,False,True
|
||||
89,1783573052541,1783573047988,62387.30,62387.20,62387.20,False,False,False,False,True
|
||||
90,1783573053064,1783573047988,62387.30,62387.20,62387.20,False,False,False,False,True
|
||||
91,1783573053588,1783573047988,62387.30,62387.20,62387.20,False,False,False,False,True
|
||||
92,1783573054111,1783573047988,62387.30,62387.20,62387.20,False,False,False,False,True
|
||||
93,1783573054634,1783573047988,62387.30,62387.20,62387.20,False,False,False,False,True
|
||||
94,1783573055161,1783573047988,62387.30,62387.20,62387.20,False,False,False,False,True
|
||||
95,1783573055687,1783573047988,62387.30,62387.20,62387.20,False,False,False,False,True
|
||||
96,1783573056201,1783573047988,62387.30,62387.20,62387.20,False,False,False,False,True
|
||||
97,1783573056734,1783573047988,62387.30,62387.20,62387.20,False,False,False,False,True
|
||||
98,1783573057252,1783573047988,62387.30,62387.20,62387.20,False,False,False,False,True
|
||||
99,1783573057780,1783573047988,62387.30,62387.20,62387.20,False,False,False,False,True
|
||||
100,1783573058303,1783573047988,62387.30,62387.20,62387.20,False,False,False,False,True
|
||||
101,1783573058827,1783573047988,62387.30,62387.20,62387.20,False,False,False,False,True
|
||||
102,1783573059351,1783573047988,62387.30,62387.20,62387.20,False,False,False,False,True
|
||||
103,1783573059876,1783573047988,62387.30,62387.20,62387.20,False,False,False,False,True
|
||||
104,1783573060509,1783573047988,62387.30,62387.20,62387.20,False,False,False,False,True
|
||||
105,1783573061051,1783573047988,62387.30,62387.20,62387.20,False,False,False,False,True
|
||||
106,1783573061583,1783573047988,62387.30,62387.20,62387.20,False,False,False,False,True
|
||||
107,1783573062098,1783573047988,62387.30,62387.20,62387.20,False,False,False,False,True
|
||||
108,1783573062636,1783573047988,62387.30,62387.20,62387.20,False,False,False,False,True
|
||||
109,1783573063148,1783573047988,62387.30,62387.20,62387.20,False,False,False,False,True
|
||||
110,1783573063679,1783573047988,62387.30,62387.20,62387.20,False,False,False,False,True
|
||||
111,1783573064205,1783573047988,62387.30,62387.20,62387.20,False,False,False,False,True
|
||||
112,1783573064721,1783573047988,62387.30,62387.20,62387.20,False,False,False,False,True
|
||||
113,1783573065251,1783573047988,62387.30,62387.20,62387.20,False,False,False,False,True
|
||||
114,1783573065780,1783573047988,62387.30,62387.20,62387.20,False,False,False,False,True
|
||||
115,1783573066294,1783573047988,62387.30,62387.20,62387.20,False,False,False,False,True
|
||||
116,1783573066823,1783573047988,62387.30,62387.20,62387.20,False,False,False,False,True
|
||||
117,1783573067339,1783573047988,62387.30,62387.20,62387.20,False,False,False,False,True
|
||||
118,1783573067874,1783573047988,62387.30,62387.20,62387.20,False,False,False,False,True
|
||||
119,1783573068397,1783573068429,62381.70,62381.60,62381.60,True,True,True,True,True
|
||||
120,1783573068911,1783573068429,62381.70,62381.60,62381.60,False,False,False,False,True
|
||||
121,1783573069457,1783573068429,62381.70,62381.60,62381.60,False,False,False,False,True
|
||||
122,1783573069966,1783573068429,62381.70,62381.60,62381.60,False,False,False,False,True
|
||||
123,1783573070493,1783573068429,62381.70,62381.60,62381.60,False,False,False,False,True
|
||||
124,1783573071017,1783573068429,62381.70,62381.60,62381.60,False,False,False,False,True
|
||||
125,1783573071539,1783573068429,62381.70,62381.60,62381.60,False,False,False,False,True
|
||||
126,1783573072064,1783573068429,62381.70,62381.60,62381.60,False,False,False,False,True
|
||||
127,1783573072588,1783573068429,62381.70,62381.60,62381.60,False,False,False,False,True
|
||||
128,1783573073113,1783573068429,62381.70,62381.60,62381.60,False,False,False,False,True
|
||||
129,1783573073634,1783573068429,62381.70,62381.60,62381.60,False,False,False,False,True
|
||||
130,1783573074158,1783573068429,62381.70,62381.60,62381.60,False,False,False,False,True
|
||||
131,1783573074685,1783573068429,62381.70,62381.60,62381.60,False,False,False,False,True
|
||||
132,1783573075214,1783573068429,62381.70,62381.60,62381.60,False,False,False,False,True
|
||||
133,1783573075730,1783573068429,62381.70,62381.60,62381.60,False,False,False,False,True
|
||||
134,1783573076254,1783573068429,62381.70,62381.60,62381.60,False,False,False,False,True
|
||||
135,1783573076785,1783573068429,62381.70,62381.60,62381.60,False,False,False,False,True
|
||||
136,1783573077302,1783573068429,62381.70,62381.60,62381.60,False,False,False,False,True
|
||||
137,1783573077830,1783573068429,62381.70,62381.60,62381.60,False,False,False,False,True
|
||||
138,1783573078368,1783573068429,62381.70,62381.60,62381.60,False,False,False,False,True
|
||||
139,1783573079404,1783573068429,62381.70,62381.60,62381.60,False,False,False,False,True
|
||||
140,1783573079925,1783573068429,62381.70,62381.60,62381.60,False,False,False,False,True
|
||||
141,1783573080450,1783573068429,62381.70,62381.60,62381.60,False,False,False,False,True
|
||||
142,1783573080982,1783573068429,62381.70,62381.60,62381.60,False,False,False,False,True
|
||||
143,1783573081496,1783573068429,62381.70,62381.60,62381.60,False,False,False,False,True
|
||||
144,1783573082024,1783573068429,62381.70,62381.60,62381.60,False,False,False,False,True
|
||||
145,1783573082556,1783573068429,62381.70,62381.60,62381.60,False,False,False,False,True
|
||||
146,1783573083070,1783573068429,62381.70,62381.60,62381.60,False,False,False,False,True
|
||||
147,1783573083595,1783573068429,62381.70,62381.60,62381.60,False,False,False,False,True
|
||||
148,1783573084120,1783573068429,62381.70,62381.60,62381.60,False,False,False,False,True
|
||||
149,1783573084791,1783573068429,62381.70,62381.60,62381.60,False,False,False,False,True
|
||||
150,1783573085276,1783573068429,62381.70,62381.60,62381.60,False,False,False,False,True
|
||||
151,1783573085752,1783573068429,62381.70,62381.60,62381.60,False,False,False,False,True
|
||||
152,1783573086228,1783573068429,62381.70,62381.60,62381.60,False,False,False,False,True
|
||||
153,1783573086742,1783573068429,62381.70,62381.60,62381.60,False,False,False,False,True
|
||||
154,1783573087267,1783573068429,62381.70,62381.60,62381.60,False,False,False,False,True
|
||||
155,1783573087798,1783573068429,62381.70,62381.60,62381.60,False,False,False,False,True
|
||||
156,1783573088309,1783573088341,62382.45,62382.35,62382.35,True,True,True,True,True
|
||||
157,1783573088850,1783573088341,62382.45,62382.35,62382.35,False,False,False,False,True
|
||||
158,1783573089373,1783573088341,62382.45,62382.35,62382.35,False,False,False,False,True
|
||||
159,1783573089882,1783573088341,62382.45,62382.35,62382.35,False,False,False,False,True
|
||||
160,1783573090435,1783573088341,62382.45,62382.35,62382.35,False,False,False,False,True
|
||||
161,1783573090939,1783573088341,62382.45,62382.35,62382.35,False,False,False,False,True
|
||||
162,1783573091465,1783573088341,62382.45,62382.35,62382.35,False,False,False,False,True
|
||||
163,1783573091986,1783573088341,62382.45,62382.35,62382.35,False,False,False,False,True
|
||||
164,1783573092512,1783573088341,62382.45,62382.35,62382.35,False,False,False,False,True
|
||||
165,1783573093038,1783573088341,62382.45,62382.35,62382.35,False,False,False,False,True
|
||||
166,1783573093563,1783573088341,62382.45,62382.35,62382.35,False,False,False,False,True
|
||||
167,1783573094083,1783573088341,62382.45,62382.35,62382.35,False,False,False,False,True
|
||||
168,1783573094608,1783573088341,62382.45,62382.35,62382.35,False,False,False,False,True
|
||||
169,1783573095129,1783573088341,62382.45,62382.35,62382.35,False,False,False,False,True
|
||||
170,1783573095650,1783573088341,62382.45,62382.35,62382.35,False,False,False,False,True
|
||||
171,1783573096177,1783573088341,62382.45,62382.35,62382.35,False,False,False,False,True
|
||||
172,1783573096703,1783573088341,62382.45,62382.35,62382.35,False,False,False,False,True
|
||||
173,1783573097226,1783573088341,62382.45,62382.35,62382.35,False,False,False,False,True
|
||||
174,1783573097752,1783573088341,62382.45,62382.35,62382.35,False,False,False,False,True
|
||||
175,1783573098290,1783573088341,62382.45,62382.35,62382.35,False,False,False,False,True
|
||||
176,1783573098805,1783573088341,62382.45,62382.35,62382.35,False,False,False,False,True
|
||||
177,1783573099331,1783573088341,62382.45,62382.35,62382.35,False,False,False,False,True
|
||||
178,1783573099853,1783573088341,62382.45,62382.35,62382.35,False,False,False,False,True
|
||||
179,1783573100376,1783573088341,62382.45,62382.35,62382.35,False,False,False,False,True
|
||||
180,1783573100898,1783573088341,62382.45,62382.35,62382.35,False,False,False,False,True
|
||||
181,1783573101420,1783573088341,62382.45,62382.35,62382.35,False,False,False,False,True
|
||||
182,1783573101955,1783573088341,62382.45,62382.35,62382.35,False,False,False,False,True
|
||||
183,1783573102469,1783573088341,62382.45,62382.35,62382.35,False,False,False,False,True
|
||||
184,1783573102995,1783573088341,62382.45,62382.35,62382.35,False,False,False,False,True
|
||||
185,1783573103515,1783573088341,62382.45,62382.35,62382.35,False,False,False,False,True
|
||||
186,1783573104044,1783573088341,62382.45,62382.35,62382.35,False,False,False,False,True
|
||||
187,1783573104571,1783573088341,62382.45,62382.35,62382.35,False,False,False,False,True
|
||||
188,1783573105089,1783573088341,62382.45,62382.35,62382.35,False,False,False,False,True
|
||||
189,1783573105620,1783573088341,62382.45,62382.35,62382.35,False,False,False,False,True
|
||||
190,1783573106142,1783573088341,62382.45,62382.35,62382.35,False,False,False,False,True
|
||||
191,1783573106663,1783573088341,62382.45,62382.35,62382.35,False,False,False,False,True
|
||||
192,1783573107189,1783573088341,62382.45,62382.35,62382.35,False,False,False,False,True
|
||||
193,1783573107711,1783573088341,62382.45,62382.35,62382.35,False,False,False,False,True
|
||||
194,1783573108250,1783573108276,62383.15,62383.05,62383.05,True,True,True,True,True
|
||||
195,1783573108765,1783573108276,62383.15,62383.05,62383.05,False,False,False,False,True
|
||||
196,1783573109286,1783573108276,62383.15,62383.05,62383.05,False,False,False,False,True
|
||||
197,1783573109815,1783573108276,62383.15,62383.05,62383.05,False,False,False,False,True
|
||||
198,1783573110334,1783573108276,62383.15,62383.05,62383.05,False,False,False,False,True
|
||||
199,1783573110863,1783573108276,62383.15,62383.05,62383.05,False,False,False,False,True
|
||||
200,1783573111381,1783573108276,62383.15,62383.05,62383.05,False,False,False,False,True
|
||||
201,1783573111910,1783573108276,62383.15,62383.05,62383.05,False,False,False,False,True
|
||||
202,1783573112435,1783573108276,62383.15,62383.05,62383.05,False,False,False,False,True
|
||||
203,1783573112959,1783573108276,62383.15,62383.05,62383.05,False,False,False,False,True
|
||||
204,1783573113481,1783573108276,62383.15,62383.05,62383.05,False,False,False,False,True
|
||||
205,1783573114007,1783573108276,62383.15,62383.05,62383.05,False,False,False,False,True
|
||||
206,1783573115112,1783573108276,62383.15,62383.05,62383.05,False,False,False,False,True
|
||||
207,1783573115633,1783573108276,62383.15,62383.05,62383.05,False,False,False,False,True
|
||||
208,1783573116109,1783573108276,62383.15,62383.05,62383.05,False,False,False,False,True
|
||||
209,1783573116622,1783573108276,62383.15,62383.05,62383.05,False,False,False,False,True
|
||||
210,1783573117153,1783573108276,62383.15,62383.05,62383.05,False,False,False,False,True
|
||||
211,1783573117678,1783573108276,62383.15,62383.05,62383.05,False,False,False,False,True
|
||||
212,1783573118198,1783573108276,62383.15,62383.05,62383.05,False,False,False,False,True
|
||||
213,1783573118723,1783573108276,62383.15,62383.05,62383.05,False,False,False,False,True
|
||||
214,1783573119254,1783573108276,62383.15,62383.05,62383.05,False,False,False,False,True
|
||||
215,1783573119775,1783573108276,62383.15,62383.05,62383.05,False,False,False,False,True
|
||||
216,1783573120303,1783573108276,62383.15,62383.05,62383.05,False,False,False,False,True
|
||||
217,1783573120817,1783573108276,62383.15,62383.05,62383.05,False,False,False,False,True
|
||||
218,1783573121347,1783573108276,62383.15,62383.05,62383.05,False,False,False,False,True
|
||||
219,1783573121875,1783573108276,62383.15,62383.05,62383.05,False,False,False,False,True
|
||||
220,1783573122391,1783573108276,62383.15,62383.05,62383.05,False,False,False,False,True
|
||||
221,1783573122920,1783573108276,62383.15,62383.05,62383.05,False,False,False,False,True
|
||||
222,1783573123476,1783573108276,62383.15,62383.05,62383.05,False,False,False,False,True
|
||||
223,1783573123964,1783573108276,62383.15,62383.05,62383.05,False,False,False,False,True
|
||||
224,1783573124490,1783573108276,62383.15,62383.05,62383.05,False,False,False,False,True
|
||||
225,1783573125019,1783573108276,62383.15,62383.05,62383.05,False,False,False,False,True
|
||||
226,1783573125542,1783573108276,62383.15,62383.05,62383.05,False,False,False,False,True
|
||||
227,1783573126063,1783573108276,62383.15,62383.05,62383.05,False,False,False,False,True
|
||||
228,1783573126589,1783573108276,62383.15,62383.05,62383.05,False,False,False,False,True
|
||||
229,1783573127116,1783573108276,62383.15,62383.05,62383.05,False,False,False,False,True
|
||||
230,1783573127642,1783573108276,62383.15,62383.05,62383.05,False,False,False,False,True
|
||||
231,1783573128167,1783573128197,62381.15,62381.05,62381.05,True,True,True,True,True
|
||||
232,1783573128679,1783573128197,62381.15,62381.05,62381.05,False,False,False,False,True
|
||||
233,1783573129206,1783573128197,62381.15,62381.05,62381.05,False,False,False,False,True
|
||||
234,1783573129736,1783573128197,62381.15,62381.05,62381.05,False,False,False,False,True
|
||||
235,1783573130263,1783573128197,62381.15,62381.05,62381.05,False,False,False,False,True
|
||||
236,1783573130782,1783573128197,62381.15,62381.05,62381.05,False,False,False,False,True
|
||||
237,1783573131306,1783573128197,62381.15,62381.05,62381.05,False,False,False,False,True
|
||||
238,1783573131834,1783573128197,62381.15,62381.05,62381.05,False,False,False,False,True
|
||||
239,1783573132364,1783573128197,62381.15,62381.05,62381.05,False,False,False,False,True
|
||||
240,1783573132879,1783573128197,62381.15,62381.05,62381.05,False,False,False,False,True
|
||||
241,1783573133406,1783573128197,62381.15,62381.05,62381.05,False,False,False,False,True
|
||||
242,1783573133928,1783573128197,62381.15,62381.05,62381.05,False,False,False,False,True
|
||||
243,1783573134460,1783573128197,62381.15,62381.05,62381.05,False,False,False,False,True
|
||||
244,1783573134977,1783573128197,62381.15,62381.05,62381.05,False,False,False,False,True
|
||||
245,1783573135498,1783573128197,62381.15,62381.05,62381.05,False,False,False,False,True
|
||||
246,1783573136030,1783573128197,62381.15,62381.05,62381.05,False,False,False,False,True
|
||||
247,1783573136548,1783573128197,62381.15,62381.05,62381.05,False,False,False,False,True
|
||||
248,1783573137079,1783573128197,62381.15,62381.05,62381.05,False,False,False,False,True
|
||||
249,1783573137600,1783573128197,62381.15,62381.05,62381.05,False,False,False,False,True
|
||||
250,1783573138117,1783573128197,62381.15,62381.05,62381.05,False,False,False,False,True
|
||||
251,1783573138670,1783573128197,62381.15,62381.05,62381.05,False,False,False,False,True
|
||||
252,1783573139168,1783573128197,62381.15,62381.05,62381.05,False,False,False,False,True
|
||||
253,1783573139694,1783573128197,62381.15,62381.05,62381.05,False,False,False,False,True
|
||||
254,1783573140224,1783573128197,62381.15,62381.05,62381.05,False,False,False,False,True
|
||||
255,1783573140748,1783573128197,62381.15,62381.05,62381.05,False,False,False,False,True
|
||||
256,1783573141265,1783573128197,62381.15,62381.05,62381.05,False,False,False,False,True
|
||||
257,1783573141794,1783573128197,62381.15,62381.05,62381.05,False,False,False,False,True
|
||||
258,1783573142319,1783573128197,62381.15,62381.05,62381.05,False,False,False,False,True
|
||||
259,1783573142843,1783573128197,62381.15,62381.05,62381.05,False,False,False,False,True
|
||||
260,1783573143359,1783573128197,62381.15,62381.05,62381.05,False,False,False,False,True
|
||||
261,1783573143887,1783573128197,62381.15,62381.05,62381.05,False,False,False,False,True
|
||||
262,1783573144539,1783573128197,62381.15,62381.05,62381.05,False,False,False,False,True
|
||||
263,1783573145015,1783573128197,62381.15,62381.05,62381.05,False,False,False,False,True
|
||||
264,1783573145728,1783573128197,62381.15,62381.05,62381.05,False,False,False,False,True
|
||||
265,1783573146248,1783573128197,62381.15,62381.05,62381.05,False,False,False,False,True
|
||||
266,1783573146772,1783573128197,62381.15,62381.05,62381.05,False,False,False,False,True
|
||||
267,1783573147297,1783573128197,62381.15,62381.05,62381.05,False,False,False,False,True
|
||||
268,1783573147821,1783573128197,62381.15,62381.05,62381.05,False,False,False,False,True
|
||||
269,1783573148347,1783573148322,62378.30,62378.20,62378.20,True,True,True,True,True
|
||||
270,1783573148872,1783573148322,62378.30,62378.20,62378.20,False,False,False,False,True
|
||||
271,1783573149989,1783573148322,62378.30,62378.20,62378.20,False,False,False,False,True
|
||||
272,1783573150569,1783573148322,62378.30,62378.20,62378.20,False,False,False,False,True
|
||||
273,1783573151112,1783573148322,62378.30,62378.20,62378.20,False,False,False,False,True
|
||||
274,1783573151634,1783573148322,62378.30,62378.20,62378.20,False,False,False,False,True
|
||||
275,1783573152150,1783573148322,62378.30,62378.20,62378.20,False,False,False,False,True
|
||||
276,1783573152683,1783573148322,62378.30,62378.20,62378.20,False,False,False,False,True
|
||||
277,1783573153198,1783573148322,62378.30,62378.20,62378.20,False,False,False,False,True
|
||||
278,1783573153732,1783573148322,62378.30,62378.20,62378.20,False,False,False,False,True
|
||||
279,1783573154247,1783573148322,62378.30,62378.20,62378.20,False,False,False,False,True
|
||||
280,1783573154772,1783573148322,62378.30,62378.20,62378.20,False,False,False,False,True
|
||||
281,1783573155301,1783573148322,62378.30,62378.20,62378.20,False,False,False,False,True
|
||||
282,1783573155818,1783573148322,62378.30,62378.20,62378.20,False,False,False,False,True
|
||||
283,1783573156344,1783573148322,62378.30,62378.20,62378.20,False,False,False,False,True
|
||||
284,1783573156868,1783573148322,62378.30,62378.20,62378.20,False,False,False,False,True
|
||||
285,1783573157401,1783573148322,62378.30,62378.20,62378.20,False,False,False,False,True
|
||||
286,1783573157916,1783573148322,62378.30,62378.20,62378.20,False,False,False,False,True
|
||||
287,1783573158443,1783573148322,62378.30,62378.20,62378.20,False,False,False,False,True
|
||||
288,1783573158966,1783573148322,62378.30,62378.20,62378.20,False,False,False,False,True
|
||||
289,1783573159494,1783573148322,62378.30,62378.20,62378.20,False,False,False,False,True
|
||||
290,1783573160022,1783573148322,62378.30,62378.20,62378.20,False,False,False,False,True
|
||||
291,1783573160540,1783573148322,62378.30,62378.20,62378.20,False,False,False,False,True
|
||||
292,1783573161072,1783573148322,62378.30,62378.20,62378.20,False,False,False,False,True
|
||||
293,1783573161603,1783573148322,62378.30,62378.20,62378.20,False,False,False,False,True
|
||||
294,1783573162113,1783573148322,62378.30,62378.20,62378.20,False,False,False,False,True
|
||||
295,1783573162641,1783573148322,62378.30,62378.20,62378.20,False,False,False,False,True
|
||||
296,1783573163160,1783573148322,62378.30,62378.20,62378.20,False,False,False,False,True
|
||||
297,1783573163688,1783573148322,62378.30,62378.20,62378.20,False,False,False,False,True
|
||||
298,1783573164216,1783573148322,62378.30,62378.20,62378.20,False,False,False,False,True
|
||||
299,1783573164734,1783573148322,62378.30,62378.20,62378.20,False,False,False,False,True
|
||||
300,1783573165266,1783573148322,62378.30,62378.20,62378.20,False,False,False,False,True
|
||||
|
@@ -0,0 +1,142 @@
|
||||
[
|
||||
{
|
||||
"T": 1783537892620,
|
||||
"a": 1822810536,
|
||||
"m": false,
|
||||
"p": "62061.5",
|
||||
"q": "0.0397"
|
||||
},
|
||||
{
|
||||
"T": 1783537892620,
|
||||
"a": 1822810535,
|
||||
"m": false,
|
||||
"p": "62061.5",
|
||||
"q": "0.0343"
|
||||
},
|
||||
{
|
||||
"T": 1783537892620,
|
||||
"a": 1822810534,
|
||||
"m": false,
|
||||
"p": "62061.5",
|
||||
"q": "0.0754"
|
||||
},
|
||||
{
|
||||
"T": 1783537622558,
|
||||
"a": 1822804397,
|
||||
"m": true,
|
||||
"p": "62104",
|
||||
"q": "1.0E-4"
|
||||
},
|
||||
{
|
||||
"T": 1783537513393,
|
||||
"a": 1822801716,
|
||||
"m": true,
|
||||
"p": "62112",
|
||||
"q": "0.0754"
|
||||
},
|
||||
{
|
||||
"T": 1783537513255,
|
||||
"a": 1822801711,
|
||||
"m": true,
|
||||
"p": "62112",
|
||||
"q": "0.1"
|
||||
},
|
||||
{
|
||||
"T": 1783537370617,
|
||||
"a": 1822798425,
|
||||
"m": false,
|
||||
"p": "62121.3",
|
||||
"q": "0.0016"
|
||||
},
|
||||
{
|
||||
"T": 1783537276165,
|
||||
"a": 1822796047,
|
||||
"m": false,
|
||||
"p": "62184.1",
|
||||
"q": "0.0277"
|
||||
},
|
||||
{
|
||||
"T": 1783537139900,
|
||||
"a": 1822792790,
|
||||
"m": true,
|
||||
"p": "62110.5",
|
||||
"q": "0.0319"
|
||||
},
|
||||
{
|
||||
"T": 1783536987519,
|
||||
"a": 1822789817,
|
||||
"m": true,
|
||||
"p": "62112.8",
|
||||
"q": "0.08"
|
||||
},
|
||||
{
|
||||
"T": 1783536987519,
|
||||
"a": 1822789816,
|
||||
"m": true,
|
||||
"p": "62112.8",
|
||||
"q": "0.08"
|
||||
},
|
||||
{
|
||||
"T": 1783536987519,
|
||||
"a": 1822789815,
|
||||
"m": true,
|
||||
"p": "62112.8",
|
||||
"q": "0.08"
|
||||
},
|
||||
{
|
||||
"T": 1783536638208,
|
||||
"a": 1822781814,
|
||||
"m": true,
|
||||
"p": "62153.5",
|
||||
"q": "0.021"
|
||||
},
|
||||
{
|
||||
"T": 1783536600688,
|
||||
"a": 1822780882,
|
||||
"m": true,
|
||||
"p": "62136.5",
|
||||
"q": "1.0"
|
||||
},
|
||||
{
|
||||
"T": 1783536553807,
|
||||
"a": 1822779904,
|
||||
"m": false,
|
||||
"p": "62116.9",
|
||||
"q": "0.6253"
|
||||
},
|
||||
{
|
||||
"T": 1783536482604,
|
||||
"a": 1822778210,
|
||||
"m": true,
|
||||
"p": "62075.6",
|
||||
"q": "0.6253"
|
||||
},
|
||||
{
|
||||
"T": 1783535795368,
|
||||
"a": 1822762667,
|
||||
"m": true,
|
||||
"p": "61987.5",
|
||||
"q": "1.0E-4"
|
||||
},
|
||||
{
|
||||
"T": 1783535791631,
|
||||
"a": 1822762573,
|
||||
"m": true,
|
||||
"p": "61980",
|
||||
"q": "0.3047"
|
||||
},
|
||||
{
|
||||
"T": 1783535791631,
|
||||
"a": 1822762572,
|
||||
"m": true,
|
||||
"p": "61980",
|
||||
"q": "1.0E-4"
|
||||
},
|
||||
{
|
||||
"T": 1783535721173,
|
||||
"a": 1822760997,
|
||||
"m": false,
|
||||
"p": "62009.4",
|
||||
"q": "1.0E-4"
|
||||
}
|
||||
]
|
||||
@@ -0,0 +1,15 @@
|
||||
{
|
||||
"asks": [
|
||||
[
|
||||
62055.9,
|
||||
5.0
|
||||
]
|
||||
],
|
||||
"bids": [
|
||||
[
|
||||
62055.8,
|
||||
5.0
|
||||
]
|
||||
],
|
||||
"lastUpdateId": 0
|
||||
}
|
||||
2313
app/tools/dzengi_probe/runtime_samples/rest/exchangeInfo/all.json
Normal file
2313
app/tools/dzengi_probe/runtime_samples/rest/exchangeInfo/all.json
Normal file
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,82 @@
|
||||
[
|
||||
[
|
||||
1783537320000,
|
||||
"62156.40",
|
||||
"62160.70",
|
||||
"62118.35",
|
||||
"62144.60",
|
||||
200
|
||||
],
|
||||
[
|
||||
1783537380000,
|
||||
"62148.50",
|
||||
"62183.05",
|
||||
"62123.55",
|
||||
"62157.45",
|
||||
246
|
||||
],
|
||||
[
|
||||
1783537440000,
|
||||
"62154.40",
|
||||
"62155.00",
|
||||
"62122.10",
|
||||
"62128.10",
|
||||
153
|
||||
],
|
||||
[
|
||||
1783537500000,
|
||||
"62125.05",
|
||||
"62129.10",
|
||||
"62085.00",
|
||||
"62113.70",
|
||||
178
|
||||
],
|
||||
[
|
||||
1783537560000,
|
||||
"62111.80",
|
||||
"62117.60",
|
||||
"62085.20",
|
||||
"62099.00",
|
||||
115
|
||||
],
|
||||
[
|
||||
1783537620000,
|
||||
"62101.70",
|
||||
"62130.80",
|
||||
"62101.70",
|
||||
"62111.10",
|
||||
121
|
||||
],
|
||||
[
|
||||
1783537680000,
|
||||
"62109.90",
|
||||
"62114.70",
|
||||
"62066.20",
|
||||
"62085.10",
|
||||
219
|
||||
],
|
||||
[
|
||||
1783537740000,
|
||||
"62082.90",
|
||||
"62106.65",
|
||||
"62065.00",
|
||||
"62103.90",
|
||||
244
|
||||
],
|
||||
[
|
||||
1783537800000,
|
||||
"62102.60",
|
||||
"62104.50",
|
||||
"62064.65",
|
||||
"62078.20",
|
||||
119
|
||||
],
|
||||
[
|
||||
1783537860000,
|
||||
"62076.90",
|
||||
"62077.70",
|
||||
"62035.10",
|
||||
"62041.60",
|
||||
78
|
||||
]
|
||||
]
|
||||
@@ -0,0 +1,18 @@
|
||||
{
|
||||
"askPrice": "62039.05",
|
||||
"bidPrice": "62038.95",
|
||||
"closeTime": 1783537908139,
|
||||
"highPrice": "63727.2",
|
||||
"lastPrice": "62038.95",
|
||||
"lastQty": "5.0",
|
||||
"lowPrice": "61479",
|
||||
"openPrice": "63334.10",
|
||||
"openTime": 1783468800000,
|
||||
"prevClosePrice": "63334.10",
|
||||
"priceChange": "-1292.15",
|
||||
"priceChangePercent": "-2.040309",
|
||||
"quoteVolume": "1480205.506845",
|
||||
"symbol": "BTC/USD_LEVERAGE",
|
||||
"volume": "23.8199",
|
||||
"weightedAvgPrice": "62039.00"
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
# ticker24hr
|
||||
|
||||
Источник:
|
||||
GET /api/v1/ticker/24hr
|
||||
|
||||
Назначение:
|
||||
Исследование структуры ответа endpoint.
|
||||
|
||||
Файлы:
|
||||
|
||||
- BTC_USD_LEVERAGE.json
|
||||
@@ -0,0 +1,3 @@
|
||||
{
|
||||
"serverTime": 1783537921216
|
||||
}
|
||||
@@ -0,0 +1 @@
|
||||
{"correlationId": "probe-depth-request", "destination": "/api/v1/depth", "payload": {"asks": [[62055.05, 5.0]], "bids": [[62054.95, 5.0]], "lastUpdateId": 0}, "status": "OK"}
|
||||
@@ -0,0 +1 @@
|
||||
{"correlationId": "probe-market-data-empty-symbols", "destination": "marketData.subscribe", "payload": {"code": -1128, "msg": "Mandatory parameter 'symbols' was not sent, was empty/null, or malformed."}, "status": "ERROR"}
|
||||
@@ -0,0 +1,7 @@
|
||||
{
|
||||
"correlationId": "probe-market-data-empty-symbols",
|
||||
"destination": "marketData.subscribe",
|
||||
"payload": {
|
||||
"symbols": []
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1 @@
|
||||
{"correlationId": "probe-market-data-invalid-destination", "payload": {"errorCode": "BAD_REQUEST"}, "status": "ERROR"}
|
||||
@@ -0,0 +1,9 @@
|
||||
{
|
||||
"correlationId": "probe-market-data-invalid-destination",
|
||||
"destination": "invalid.subscribe",
|
||||
"payload": {
|
||||
"symbols": [
|
||||
"BTC/USD_LEVERAGE"
|
||||
]
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1 @@
|
||||
{"correlationId": "probe-market-data-invalid-symbol", "destination": "marketData.subscribe", "payload": {"subscriptions": {"INVALID/SYMBOL": "ERROR: INVALID/SYMBOL not found"}}, "status": "OK"}
|
||||
@@ -0,0 +1,9 @@
|
||||
{
|
||||
"correlationId": "probe-market-data-invalid-symbol",
|
||||
"destination": "marketData.subscribe",
|
||||
"payload": {
|
||||
"symbols": [
|
||||
"INVALID/SYMBOL"
|
||||
]
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,854 @@
|
||||
{"correlationId": "probe-market-data-subscribe", "destination": "marketData.subscribe", "payload": {"subscriptions": {"BTC/USD_LEVERAGE": "PROCESSED"}}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62662.55, "bidQty": 5.0, "ofr": 62662.65, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594579287}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62659.35, "bidQty": 5.0, "ofr": 62659.45, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594579317}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62655.2, "bidQty": 5.0, "ofr": 62655.3, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594579358}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62655.1, "bidQty": 5.0, "ofr": 62655.2, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594579522}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62652.8, "bidQty": 5.0, "ofr": 62652.9, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594579531}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62656.3, "bidQty": 5.0, "ofr": 62656.4, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594579632}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62661.25, "bidQty": 5.0, "ofr": 62661.35, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594579752}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62661.8, "bidQty": 5.0, "ofr": 62661.95, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594579762}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62663.15, "bidQty": 5.0, "ofr": 62663.25, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594579802}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62660.45, "bidQty": 5.0, "ofr": 62660.55, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594579882}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62654.45, "bidQty": 5.0, "ofr": 62654.55, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594579902}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62654.4, "bidQty": 5.0, "ofr": 62654.5, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594579962}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62660.85, "bidQty": 5.0, "ofr": 62660.95, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594580002}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62662.25, "bidQty": 5.0, "ofr": 62662.35, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594580083}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62663.5, "bidQty": 5.0, "ofr": 62663.6, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594580193}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62663.3, "bidQty": 5.0, "ofr": 62663.4, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594580203}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62663.6, "bidQty": 5.0, "ofr": 62663.7, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594580253}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62663.8, "bidQty": 5.0, "ofr": 62663.9, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594580385}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62661.7, "bidQty": 5.0, "ofr": 62661.8, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594580633}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62662.85, "bidQty": 5.0, "ofr": 62662.95, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594580914}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62664.55, "bidQty": 5.0, "ofr": 62664.65, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594581334}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62663.7, "bidQty": 5.0, "ofr": 62663.8, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594581414}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62663.3, "bidQty": 5.0, "ofr": 62663.4, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594581861}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62663.1, "bidQty": 5.0, "ofr": 62663.2, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594581921}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62663.55, "bidQty": 5.0, "ofr": 62663.65, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594582253}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62665.35, "bidQty": 5.0, "ofr": 62665.45, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594582423}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62667.85, "bidQty": 5.0, "ofr": 62667.95, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594582453}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62668.05, "bidQty": 5.0, "ofr": 62668.15, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594582494}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62667.35, "bidQty": 5.0, "ofr": 62667.45, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594582595}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62667.25, "bidQty": 5.0, "ofr": 62667.35, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594582713}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62665.95, "bidQty": 5.0, "ofr": 62666.05, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594583144}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62662.75, "bidQty": 5.0, "ofr": 62662.85, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594583591}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62664.75, "bidQty": 5.0, "ofr": 62664.85, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594583751}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62662.55, "bidQty": 5.0, "ofr": 62662.65, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594583791}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62660.05, "bidQty": 5.0, "ofr": 62660.15, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594583872}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62663.2, "bidQty": 5.0, "ofr": 62663.3, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594583982}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62662.65, "bidQty": 5.0, "ofr": 62662.75, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594584605}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62663.7, "bidQty": 5.0, "ofr": 62663.8, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594584938}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62663.5, "bidQty": 5.0, "ofr": 62663.6, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594586481}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62666.45, "bidQty": 5.0, "ofr": 62666.55, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594586585}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62668.15, "bidQty": 5.0, "ofr": 62668.25, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594586634}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62668.6, "bidQty": 5.0, "ofr": 62668.7, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594586696}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62665.5, "bidQty": 5.0, "ofr": 62665.6, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594586717}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62668.1, "bidQty": 5.0, "ofr": 62668.2, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594586899}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62670.2, "bidQty": 5.0, "ofr": 62670.3, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594587541}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62675.8, "bidQty": 5.0, "ofr": 62675.95, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594587611}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62676.6, "bidQty": 5.0, "ofr": 62676.7, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594588007}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62672.55, "bidQty": 5.0, "ofr": 62672.65, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594588240}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62671.7, "bidQty": 5.0, "ofr": 62671.8, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594588889}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62673.05, "bidQty": 5.0, "ofr": 62673.15, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594589009}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62673.85, "bidQty": 5.0, "ofr": 62673.95, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594589079}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62673.2, "bidQty": 5.0, "ofr": 62673.3, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594589140}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62670.45, "bidQty": 5.0, "ofr": 62670.55, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594589270}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62673.05, "bidQty": 5.0, "ofr": 62673.15, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594589299}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62673.45, "bidQty": 5.0, "ofr": 62673.55, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594589376}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62674.75, "bidQty": 5.0, "ofr": 62674.85, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594589436}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62676.85, "bidQty": 5.0, "ofr": 62676.95, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594590048}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62673.95, "bidQty": 5.0, "ofr": 62674.05, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594590515}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62674.85, "bidQty": 5.0, "ofr": 62674.95, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594590545}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62673.95, "bidQty": 5.0, "ofr": 62674.05, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594590615}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62676.65, "bidQty": 5.0, "ofr": 62676.75, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594591042}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62674.25, "bidQty": 5.0, "ofr": 62674.35, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594591214}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62674.35, "bidQty": 5.0, "ofr": 62674.45, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594591816}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62673.55, "bidQty": 5.0, "ofr": 62673.65, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594591826}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62677.35, "bidQty": 5.0, "ofr": 62677.45, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594591876}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62676.05, "bidQty": 5.0, "ofr": 62676.15, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594591937}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62672.9, "bidQty": 5.0, "ofr": 62673.0, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594592020}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62673.45, "bidQty": 5.0, "ofr": 62673.55, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594592060}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62677.35, "bidQty": 5.0, "ofr": 62677.45, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594592226}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62675.8, "bidQty": 5.0, "ofr": 62675.9, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594594116}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62675.45, "bidQty": 5.0, "ofr": 62675.55, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594594146}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62676.95, "bidQty": 5.0, "ofr": 62677.05, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594594274}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62681.8, "bidQty": 5.0, "ofr": 62681.9, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594596314}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62688.5, "bidQty": 5.0, "ofr": 62688.6, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594596325}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62696.75, "bidQty": 5.0, "ofr": 62696.85, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594596504}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62695.1, "bidQty": 5.0, "ofr": 62695.2, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594596524}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62691.45, "bidQty": 5.0, "ofr": 62691.55, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594596606}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62693.6, "bidQty": 5.0, "ofr": 62693.7, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594596716}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62695.7, "bidQty": 5.0, "ofr": 62695.8, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594596887}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62694.8, "bidQty": 5.0, "ofr": 62694.9, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594596938}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62691.75, "bidQty": 5.0, "ofr": 62691.85, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594596957}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62691.25, "bidQty": 5.0, "ofr": 62691.35, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594597067}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62687.85, "bidQty": 5.0, "ofr": 62687.95, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594597077}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62687.35, "bidQty": 5.0, "ofr": 62687.45, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594597117}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62687.95, "bidQty": 5.0, "ofr": 62688.05, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594597177}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62683.45, "bidQty": 5.0, "ofr": 62683.55, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594597187}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62688.75, "bidQty": 5.0, "ofr": 62688.85, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594597491}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62689.45, "bidQty": 5.0, "ofr": 62689.55, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594597588}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62686.85, "bidQty": 5.0, "ofr": 62686.95, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594597764}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62689.6, "bidQty": 5.0, "ofr": 62689.7, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594597915}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62686.85, "bidQty": 5.0, "ofr": 62686.95, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594597965}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62684.85, "bidQty": 5.0, "ofr": 62684.95, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594598015}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62685.0, "bidQty": 5.0, "ofr": 62685.1, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594598086}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62686.45, "bidQty": 5.0, "ofr": 62686.55, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594598115}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62686.85, "bidQty": 5.0, "ofr": 62686.95, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594598125}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62688.55, "bidQty": 5.0, "ofr": 62688.65, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594598196}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62689.6, "bidQty": 5.0, "ofr": 62689.7, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594598431}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62686.3, "bidQty": 5.0, "ofr": 62686.4, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594598692}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62689.25, "bidQty": 5.0, "ofr": 62689.35, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594599820}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62688.85, "bidQty": 5.0, "ofr": 62688.95, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594605046}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62689.15, "bidQty": 5.0, "ofr": 62689.25, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594605087}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62691.95, "bidQty": 5.0, "ofr": 62692.05, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594605097}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62694.7, "bidQty": 5.0, "ofr": 62694.8, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594605988}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62694.8, "bidQty": 5.0, "ofr": 62694.9, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594605997}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62696.05, "bidQty": 5.0, "ofr": 62696.15, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594606007}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62698.15, "bidQty": 5.0, "ofr": 62698.25, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594606027}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62699.05, "bidQty": 5.0, "ofr": 62699.15, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594606047}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62694.55, "bidQty": 5.0, "ofr": 62694.65, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594606107}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62695.95, "bidQty": 5.0, "ofr": 62696.05, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594606471}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62694.95, "bidQty": 5.0, "ofr": 62695.05, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594606575}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62697.5, "bidQty": 5.0, "ofr": 62697.6, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594606804}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62698.55, "bidQty": 5.0, "ofr": 62698.65, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594606875}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62699.15, "bidQty": 5.0, "ofr": 62699.25, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594606945}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62696.65, "bidQty": 5.0, "ofr": 62696.75, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594607150}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62693.9, "bidQty": 5.0, "ofr": 62694.0, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594607261}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62694.25, "bidQty": 5.0, "ofr": 62694.35, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594607312}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62694.85, "bidQty": 5.0, "ofr": 62694.95, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594607381}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62696.75, "bidQty": 5.0, "ofr": 62696.85, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594607464}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62694.55, "bidQty": 5.0, "ofr": 62694.65, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594608021}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62688.7, "bidQty": 5.0, "ofr": 62688.8, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594608031}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62687.9, "bidQty": 5.0, "ofr": 62688.0, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594608203}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62690.35, "bidQty": 5.0, "ofr": 62690.45, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594608982}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62690.55, "bidQty": 5.0, "ofr": 62690.65, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594608992}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62692.95, "bidQty": 5.0, "ofr": 62693.05, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594609122}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62692.7, "bidQty": 5.0, "ofr": 62692.8, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594609163}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62694.3, "bidQty": 5.0, "ofr": 62694.4, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594609213}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62693.15, "bidQty": 5.0, "ofr": 62693.25, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594609375}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62693.4, "bidQty": 5.0, "ofr": 62693.5, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594609607}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62695.55, "bidQty": 5.0, "ofr": 62695.65, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594609736}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62694.3, "bidQty": 5.0, "ofr": 62694.4, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594611129}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62690.5, "bidQty": 5.0, "ofr": 62690.6, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594611180}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62692.25, "bidQty": 5.0, "ofr": 62692.35, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594613769}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62692.7, "bidQty": 5.0, "ofr": 62692.8, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594613799}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62692.25, "bidQty": 5.0, "ofr": 62692.35, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594613829}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62693.8, "bidQty": 5.0, "ofr": 62693.9, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594614040}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62692.1, "bidQty": 5.0, "ofr": 62692.2, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594614292}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62691.2, "bidQty": 5.0, "ofr": 62691.3, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594614404}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62692.2, "bidQty": 5.0, "ofr": 62692.3, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594615769}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62693.05, "bidQty": 5.0, "ofr": 62693.15, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594615821}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62693.9, "bidQty": 5.0, "ofr": 62694.05, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594617086}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62693.55, "bidQty": 5.0, "ofr": 62693.65, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594617293}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62694.45, "bidQty": 5.0, "ofr": 62694.6, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594619891}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62693.85, "bidQty": 5.0, "ofr": 62693.95, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594620439}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62695.7, "bidQty": 5.0, "ofr": 62695.8, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594622115}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62695.9, "bidQty": 5.0, "ofr": 62696.0, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594622165}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62701.1, "bidQty": 5.0, "ofr": 62701.25, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594622785}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62704.25, "bidQty": 5.0, "ofr": 62704.35, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594622935}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62703.5, "bidQty": 5.0, "ofr": 62703.6, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594622946}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62705.15, "bidQty": 5.0, "ofr": 62705.25, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594623055}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62708.05, "bidQty": 5.0, "ofr": 62708.15, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594623075}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62708.45, "bidQty": 5.0, "ofr": 62708.55, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594623125}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62708.75, "bidQty": 5.0, "ofr": 62708.85, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594623135}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62705.05, "bidQty": 5.0, "ofr": 62705.15, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594623250}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62704.85, "bidQty": 5.0, "ofr": 62704.95, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594625154}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62704.75, "bidQty": 5.0, "ofr": 62704.85, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594625700}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62704.85, "bidQty": 5.0, "ofr": 62704.95, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594626033}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62704.75, "bidQty": 5.0, "ofr": 62704.85, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594626297}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62702.6, "bidQty": 5.0, "ofr": 62702.7, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594626456}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62702.0, "bidQty": 5.0, "ofr": 62702.1, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594626466}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62704.1, "bidQty": 5.0, "ofr": 62704.2, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594626626}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62700.55, "bidQty": 5.0, "ofr": 62700.65, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594626807}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62703.5, "bidQty": 5.0, "ofr": 62703.6, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594627502}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62704.15, "bidQty": 5.0, "ofr": 62704.25, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594627573}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62705.55, "bidQty": 5.0, "ofr": 62705.65, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594628967}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62701.7, "bidQty": 5.0, "ofr": 62701.8, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594629027}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62705.25, "bidQty": 5.0, "ofr": 62705.35, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594629261}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62705.55, "bidQty": 5.0, "ofr": 62705.65, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594629353}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62702.8, "bidQty": 5.0, "ofr": 62702.9, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594629374}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62704.4, "bidQty": 5.0, "ofr": 62704.5, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594632957}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62702.35, "bidQty": 5.0, "ofr": 62702.45, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594633110}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62702.25, "bidQty": 5.0, "ofr": 62702.35, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594633161}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62701.1, "bidQty": 5.0, "ofr": 62701.2, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594633193}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62700.05, "bidQty": 5.0, "ofr": 62700.15, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594633203}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62702.65, "bidQty": 5.0, "ofr": 62702.75, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594633274}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62703.1, "bidQty": 5.0, "ofr": 62703.2, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594633356}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62703.35, "bidQty": 5.0, "ofr": 62703.45, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594633449}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62703.95, "bidQty": 5.0, "ofr": 62704.05, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594633542}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62701.85, "bidQty": 5.0, "ofr": 62701.95, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594636517}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62704.45, "bidQty": 5.0, "ofr": 62704.55, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594636711}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62701.85, "bidQty": 5.0, "ofr": 62701.95, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594637134}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62700.45, "bidQty": 5.0, "ofr": 62700.55, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594637212}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62702.8, "bidQty": 5.0, "ofr": 62702.9, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594637343}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62703.75, "bidQty": 5.0, "ofr": 62703.85, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594637393}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62707.35, "bidQty": 5.0, "ofr": 62707.45, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594647766}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62708.1, "bidQty": 5.0, "ofr": 62708.2, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594647877}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62709.5, "bidQty": 5.0, "ofr": 62709.65, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594647957}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62709.1, "bidQty": 5.0, "ofr": 62709.2, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594648321}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62713.7, "bidQty": 5.0, "ofr": 62713.8, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594648391}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62712.2, "bidQty": 5.0, "ofr": 62712.3, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594648562}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62714.05, "bidQty": 5.0, "ofr": 62714.15, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594649720}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62714.5, "bidQty": 5.0, "ofr": 62714.6, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594649790}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62714.35, "bidQty": 5.0, "ofr": 62714.45, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594649880}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62713.75, "bidQty": 5.0, "ofr": 62713.85, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594650249}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62711.6, "bidQty": 5.0, "ofr": 62711.7, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594650257}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62711.95, "bidQty": 5.0, "ofr": 62712.05, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594650379}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62713.25, "bidQty": 5.0, "ofr": 62713.35, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594650431}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62713.85, "bidQty": 5.0, "ofr": 62713.95, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594650698}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62712.75, "bidQty": 5.0, "ofr": 62712.85, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594651488}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62711.25, "bidQty": 5.0, "ofr": 62711.35, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594654072}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62712.4, "bidQty": 5.0, "ofr": 62712.5, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594654286}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62709.5, "bidQty": 5.0, "ofr": 62709.6, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594656133}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62710.25, "bidQty": 5.0, "ofr": 62710.35, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594656336}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62711.6, "bidQty": 5.0, "ofr": 62711.7, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594656428}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62710.25, "bidQty": 5.0, "ofr": 62710.35, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594656701}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62706.5, "bidQty": 5.0, "ofr": 62706.6, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594657087}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62695.7, "bidQty": 5.0, "ofr": 62695.8, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594662379}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62698.75, "bidQty": 5.0, "ofr": 62698.85, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594662607}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62700.15, "bidQty": 5.0, "ofr": 62700.25, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594662698}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62702.05, "bidQty": 5.0, "ofr": 62702.15, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594662789}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62699.2, "bidQty": 5.0, "ofr": 62699.3, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594662799}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62697.9, "bidQty": 5.0, "ofr": 62698.0, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594665313}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62698.15, "bidQty": 5.0, "ofr": 62698.25, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594665424}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62701.25, "bidQty": 5.0, "ofr": 62701.35, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594666014}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62700.55, "bidQty": 5.0, "ofr": 62700.65, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594666670}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62702.05, "bidQty": 5.0, "ofr": 62702.15, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594666842}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62701.2, "bidQty": 5.0, "ofr": 62701.3, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594666911}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62702.05, "bidQty": 5.0, "ofr": 62702.15, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594667108}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62703.0, "bidQty": 5.0, "ofr": 62703.1, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594667139}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62701.3, "bidQty": 5.0, "ofr": 62701.4, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594667651}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62698.9, "bidQty": 5.0, "ofr": 62699.0, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594670723}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62700.95, "bidQty": 5.0, "ofr": 62701.05, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594670979}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62702.0, "bidQty": 5.0, "ofr": 62702.1, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594671483}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62704.4, "bidQty": 5.0, "ofr": 62704.5, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594671818}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62704.95, "bidQty": 5.0, "ofr": 62705.05, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594671828}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62705.6, "bidQty": 5.0, "ofr": 62705.7, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594671888}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62707.05, "bidQty": 5.0, "ofr": 62707.15, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594672048}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62713.75, "bidQty": 5.0, "ofr": 62713.85, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594672058}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62711.65, "bidQty": 5.0, "ofr": 62711.75, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594672118}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62707.8, "bidQty": 5.0, "ofr": 62707.9, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594672174}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62712.25, "bidQty": 5.0, "ofr": 62712.35, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594672394}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62712.75, "bidQty": 5.0, "ofr": 62712.85, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594672457}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62709.8, "bidQty": 5.0, "ofr": 62709.9, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594672507}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62710.7, "bidQty": 5.0, "ofr": 62710.8, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594672608}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62710.5, "bidQty": 5.0, "ofr": 62710.6, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594673574}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62708.3, "bidQty": 5.0, "ofr": 62708.4, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594674783}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62707.35, "bidQty": 5.0, "ofr": 62707.45, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594674829}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62707.85, "bidQty": 5.0, "ofr": 62707.95, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594674940}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62709.4, "bidQty": 5.0, "ofr": 62709.5, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594675196}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62705.3, "bidQty": 5.0, "ofr": 62705.4, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594675578}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62708.95, "bidQty": 5.0, "ofr": 62709.05, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594675764}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62709.45, "bidQty": 5.0, "ofr": 62709.55, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594675774}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62710.4, "bidQty": 5.0, "ofr": 62710.5, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594675819}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62708.3, "bidQty": 5.0, "ofr": 62708.4, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594675918}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62708.05, "bidQty": 5.0, "ofr": 62708.15, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594677000}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62708.9, "bidQty": 5.0, "ofr": 62709.0, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594677071}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62708.5, "bidQty": 5.0, "ofr": 62708.6, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594677111}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62708.05, "bidQty": 5.0, "ofr": 62708.15, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594677121}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62707.95, "bidQty": 5.0, "ofr": 62708.05, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594677222}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62707.55, "bidQty": 5.0, "ofr": 62707.65, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594678953}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62708.7, "bidQty": 5.0, "ofr": 62708.8, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594679200}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62709.4, "bidQty": 5.0, "ofr": 62709.5, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594679394}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62708.8, "bidQty": 5.0, "ofr": 62708.9, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594680391}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62706.7, "bidQty": 5.0, "ofr": 62706.8, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594680401}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62703.15, "bidQty": 5.0, "ofr": 62703.25, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594680477}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62705.6, "bidQty": 5.0, "ofr": 62705.7, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594680497}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62706.5, "bidQty": 5.0, "ofr": 62706.6, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594680589}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62707.5, "bidQty": 5.0, "ofr": 62707.6, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594680639}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62708.35, "bidQty": 5.0, "ofr": 62708.45, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594680695}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62708.55, "bidQty": 5.0, "ofr": 62708.65, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594680847}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62707.5, "bidQty": 5.0, "ofr": 62707.6, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594681024}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62707.75, "bidQty": 5.0, "ofr": 62707.85, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594681145}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62708.65, "bidQty": 5.0, "ofr": 62708.75, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594681429}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62707.9, "bidQty": 5.0, "ofr": 62708.0, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594682418}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62708.35, "bidQty": 5.0, "ofr": 62708.45, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594682636}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62707.9, "bidQty": 5.0, "ofr": 62708.0, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594682710}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62705.3, "bidQty": 5.0, "ofr": 62705.4, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594683279}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62708.05, "bidQty": 5.0, "ofr": 62708.15, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594683446}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62708.8, "bidQty": 5.0, "ofr": 62708.9, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594684891}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62708.0, "bidQty": 5.0, "ofr": 62708.1, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594684902}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62707.65, "bidQty": 5.0, "ofr": 62707.75, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594684920}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62705.75, "bidQty": 5.0, "ofr": 62705.85, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594684950}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62705.5, "bidQty": 5.0, "ofr": 62705.6, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594684971}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62709.7, "bidQty": 5.0, "ofr": 62709.8, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594684991}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62709.35, "bidQty": 5.0, "ofr": 62709.45, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594685031}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62707.85, "bidQty": 5.0, "ofr": 62707.95, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594685142}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62711.1, "bidQty": 5.0, "ofr": 62711.2, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594685286}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62712.3, "bidQty": 5.0, "ofr": 62712.4, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594685378}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62710.55, "bidQty": 5.0, "ofr": 62710.65, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594685960}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62712.5, "bidQty": 5.0, "ofr": 62712.6, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594687599}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62710.75, "bidQty": 5.0, "ofr": 62710.85, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594687864}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62709.95, "bidQty": 5.0, "ofr": 62710.05, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594687942}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62713.75, "bidQty": 5.0, "ofr": 62713.85, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594688035}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62718.55, "bidQty": 5.0, "ofr": 62718.65, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594688087}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62717.25, "bidQty": 5.0, "ofr": 62717.35, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594688137}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62715.0, "bidQty": 5.0, "ofr": 62715.1, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594688157}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62715.95, "bidQty": 5.0, "ofr": 62716.05, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594688353}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62715.05, "bidQty": 5.0, "ofr": 62715.15, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594689460}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62710.9, "bidQty": 5.0, "ofr": 62711.0, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594689494}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62710.8, "bidQty": 5.0, "ofr": 62710.9, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594689505}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62710.65, "bidQty": 5.0, "ofr": 62710.75, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594689514}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62710.4, "bidQty": 5.0, "ofr": 62710.5, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594689574}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62714.3, "bidQty": 5.0, "ofr": 62714.4, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594689757}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62713.65, "bidQty": 5.0, "ofr": 62713.75, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594689948}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62711.5, "bidQty": 5.0, "ofr": 62711.6, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594689958}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62711.8, "bidQty": 5.0, "ofr": 62711.9, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594690068}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62713.65, "bidQty": 5.0, "ofr": 62713.75, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594690178}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62714.1, "bidQty": 5.0, "ofr": 62714.2, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594691429}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62712.9, "bidQty": 5.0, "ofr": 62713.0, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594691635}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62709.25, "bidQty": 5.0, "ofr": 62709.35, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594691675}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62710.75, "bidQty": 5.0, "ofr": 62710.85, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594691793}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62710.85, "bidQty": 5.0, "ofr": 62710.95, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594691844}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62711.4, "bidQty": 5.0, "ofr": 62711.5, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594692434}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62711.75, "bidQty": 5.0, "ofr": 62711.85, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594694418}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62713.85, "bidQty": 5.0, "ofr": 62713.95, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594695165}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62714.25, "bidQty": 5.0, "ofr": 62714.35, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594695236}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62712.95, "bidQty": 5.0, "ofr": 62713.05, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594695909}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62712.85, "bidQty": 5.0, "ofr": 62712.95, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594695949}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62712.7, "bidQty": 5.0, "ofr": 62712.8, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594695989}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62713.25, "bidQty": 5.0, "ofr": 62713.35, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594696079}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62713.55, "bidQty": 5.0, "ofr": 62713.65, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594696604}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62714.35, "bidQty": 5.0, "ofr": 62714.45, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594697483}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62715.0, "bidQty": 5.0, "ofr": 62715.1, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594697971}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62714.85, "bidQty": 5.0, "ofr": 62714.95, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594698631}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62717.25, "bidQty": 5.0, "ofr": 62717.35, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594698794}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62717.6, "bidQty": 5.0, "ofr": 62717.7, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594698874}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62717.8, "bidQty": 5.0, "ofr": 62717.9, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594698932}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62716.35, "bidQty": 5.0, "ofr": 62716.45, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594698963}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62715.5, "bidQty": 5.0, "ofr": 62715.6, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594698972}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62715.15, "bidQty": 5.0, "ofr": 62715.25, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594699039}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62715.35, "bidQty": 5.0, "ofr": 62715.45, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594699136}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62715.75, "bidQty": 5.0, "ofr": 62715.85, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594699188}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62713.85, "bidQty": 5.0, "ofr": 62713.95, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594699198}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62715.15, "bidQty": 5.0, "ofr": 62715.25, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594699378}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62713.85, "bidQty": 5.0, "ofr": 62713.95, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594701454}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62714.85, "bidQty": 5.0, "ofr": 62714.95, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594701698}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62719.75, "bidQty": 5.0, "ofr": 62719.85, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594703090}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62720.55, "bidQty": 5.0, "ofr": 62720.7, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594703135}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62721.8, "bidQty": 5.0, "ofr": 62721.9, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594703177}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62719.5, "bidQty": 5.0, "ofr": 62719.6, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594703673}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62718.75, "bidQty": 5.0, "ofr": 62718.85, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594703734}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62716.05, "bidQty": 5.0, "ofr": 62716.15, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594704491}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62716.45, "bidQty": 5.0, "ofr": 62716.55, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594704624}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62718.15, "bidQty": 5.0, "ofr": 62718.25, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594704718}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62718.25, "bidQty": 5.0, "ofr": 62718.35, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594704850}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62719.8, "bidQty": 5.0, "ofr": 62719.9, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594704891}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62719.05, "bidQty": 5.0, "ofr": 62719.15, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594705031}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62719.5, "bidQty": 5.0, "ofr": 62719.6, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594705551}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62719.05, "bidQty": 5.0, "ofr": 62719.15, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594705677}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62716.4, "bidQty": 5.0, "ofr": 62716.5, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594705898}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62718.7, "bidQty": 5.0, "ofr": 62718.8, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594706160}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62719.8, "bidQty": 5.0, "ofr": 62719.9, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594706517}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62720.25, "bidQty": 5.0, "ofr": 62720.35, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594710280}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62720.05, "bidQty": 5.0, "ofr": 62720.15, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594710291}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62721.9, "bidQty": 5.0, "ofr": 62722.0, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594710520}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62722.15, "bidQty": 5.0, "ofr": 62722.25, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594710611}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62722.25, "bidQty": 5.0, "ofr": 62722.35, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594711296}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62720.65, "bidQty": 5.0, "ofr": 62720.75, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594711317}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62722.75, "bidQty": 5.0, "ofr": 62722.85, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594711460}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62722.65, "bidQty": 5.0, "ofr": 62722.75, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594711877}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62720.6, "bidQty": 5.0, "ofr": 62720.7, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594712062}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62721.85, "bidQty": 5.0, "ofr": 62721.95, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594712369}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62720.5, "bidQty": 5.0, "ofr": 62720.6, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594712378}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62720.15, "bidQty": 5.0, "ofr": 62720.25, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594712428}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62720.3, "bidQty": 5.0, "ofr": 62720.4, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594712578}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62718.55, "bidQty": 5.0, "ofr": 62718.65, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594714100}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62719.65, "bidQty": 5.0, "ofr": 62719.75, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594714372}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62719.95, "bidQty": 5.0, "ofr": 62720.05, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594714433}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62718.55, "bidQty": 5.0, "ofr": 62718.65, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594714482}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62719.4, "bidQty": 5.0, "ofr": 62719.5, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594714678}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62719.95, "bidQty": 5.0, "ofr": 62720.05, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594716302}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62720.45, "bidQty": 5.0, "ofr": 62720.55, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594716342}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62720.65, "bidQty": 5.0, "ofr": 62720.75, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594716362}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62722.05, "bidQty": 5.0, "ofr": 62722.15, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594716392}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62722.15, "bidQty": 5.0, "ofr": 62722.25, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594716455}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62718.95, "bidQty": 5.0, "ofr": 62719.05, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594716750}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62718.35, "bidQty": 5.0, "ofr": 62718.45, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594716820}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62718.95, "bidQty": 5.0, "ofr": 62719.05, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594716830}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62721.35, "bidQty": 5.0, "ofr": 62721.45, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594716851}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62721.8, "bidQty": 5.0, "ofr": 62721.9, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594716918}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62722.65, "bidQty": 5.0, "ofr": 62722.75, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594716989}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62720.2, "bidQty": 5.0, "ofr": 62720.3, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594717909}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62722.25, "bidQty": 5.0, "ofr": 62722.35, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594718316}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62720.0, "bidQty": 5.0, "ofr": 62720.1, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594718688}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62718.6, "bidQty": 5.0, "ofr": 62718.7, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594718779}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62720.35, "bidQty": 5.0, "ofr": 62720.45, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594718890}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62720.95, "bidQty": 5.0, "ofr": 62721.05, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594718970}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62721.25, "bidQty": 5.0, "ofr": 62721.35, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594719715}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62720.95, "bidQty": 5.0, "ofr": 62721.05, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594720397}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62721.25, "bidQty": 5.0, "ofr": 62721.35, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594720469}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62720.65, "bidQty": 5.0, "ofr": 62720.75, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594721158}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62718.6, "bidQty": 5.0, "ofr": 62718.7, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594721196}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62719.85, "bidQty": 5.0, "ofr": 62719.95, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594721405}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62720.2, "bidQty": 5.0, "ofr": 62720.3, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594721543}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62714.75, "bidQty": 5.0, "ofr": 62714.85, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594723636}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62712.3, "bidQty": 5.0, "ofr": 62712.4, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594723646}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62710.6, "bidQty": 5.0, "ofr": 62710.7, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594723929}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62710.95, "bidQty": 5.0, "ofr": 62711.05, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594723980}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62714.95, "bidQty": 5.0, "ofr": 62715.05, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594724030}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62715.55, "bidQty": 5.0, "ofr": 62715.65, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594724071}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62717.35, "bidQty": 5.0, "ofr": 62717.45, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594724221}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62720.15, "bidQty": 5.0, "ofr": 62720.25, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594724232}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62717.1, "bidQty": 5.0, "ofr": 62717.2, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594724416}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62713.85, "bidQty": 5.0, "ofr": 62713.95, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594724466}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62718.75, "bidQty": 5.0, "ofr": 62718.85, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594724526}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62721.65, "bidQty": 5.0, "ofr": 62721.8, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594724636}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62720.65, "bidQty": 5.0, "ofr": 62720.75, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594724951}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62721.05, "bidQty": 5.0, "ofr": 62721.15, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594724962}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62721.15, "bidQty": 5.0, "ofr": 62721.25, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594725220}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62719.4, "bidQty": 5.0, "ofr": 62719.5, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594725976}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62721.05, "bidQty": 5.0, "ofr": 62721.15, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594726215}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62719.45, "bidQty": 5.0, "ofr": 62719.55, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594726735}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62716.45, "bidQty": 5.0, "ofr": 62716.55, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594726917}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62713.1, "bidQty": 5.0, "ofr": 62713.2, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594726927}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62714.65, "bidQty": 5.0, "ofr": 62714.75, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594727019}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62716.9, "bidQty": 5.0, "ofr": 62717.0, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594727069}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62717.75, "bidQty": 5.0, "ofr": 62717.85, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594727176}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62718.8, "bidQty": 5.0, "ofr": 62718.9, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594727835}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62718.65, "bidQty": 5.0, "ofr": 62718.75, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594732636}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62717.95, "bidQty": 5.0, "ofr": 62718.05, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594735822}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62716.25, "bidQty": 5.0, "ofr": 62716.35, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594735833}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62716.75, "bidQty": 5.0, "ofr": 62716.85, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594735936}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62718.0, "bidQty": 5.0, "ofr": 62718.1, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594736030}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62718.35, "bidQty": 5.0, "ofr": 62718.45, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594736081}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62719.1, "bidQty": 5.0, "ofr": 62719.2, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594737432}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62719.35, "bidQty": 5.0, "ofr": 62719.45, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594737567}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62717.25, "bidQty": 5.0, "ofr": 62717.35, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594738423}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62718.75, "bidQty": 5.0, "ofr": 62718.85, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594738453}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62717.95, "bidQty": 5.0, "ofr": 62718.05, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594738512}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62723.5, "bidQty": 5.0, "ofr": 62723.6, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594738522}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62730.1, "bidQty": 5.0, "ofr": 62730.2, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594738562}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62733.25, "bidQty": 5.0, "ofr": 62733.35, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594738612}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62731.65, "bidQty": 5.0, "ofr": 62731.75, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594738653}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62730.75, "bidQty": 5.0, "ofr": 62730.85, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594738754}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62731.6, "bidQty": 5.0, "ofr": 62731.7, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594738853}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62731.95, "bidQty": 5.0, "ofr": 62732.05, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594738883}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62735.15, "bidQty": 5.0, "ofr": 62735.25, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594738903}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62735.65, "bidQty": 5.0, "ofr": 62735.75, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594738964}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62735.55, "bidQty": 5.0, "ofr": 62735.65, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594739004}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62733.85, "bidQty": 5.0, "ofr": 62733.95, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594739054}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62731.95, "bidQty": 5.0, "ofr": 62732.05, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594739094}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62731.0, "bidQty": 5.0, "ofr": 62731.1, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594739278}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62727.6, "bidQty": 5.0, "ofr": 62727.7, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594739368}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62729.95, "bidQty": 5.0, "ofr": 62730.05, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594739438}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62729.4, "bidQty": 5.0, "ofr": 62729.5, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594739593}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62730.65, "bidQty": 5.0, "ofr": 62730.75, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594739633}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62731.25, "bidQty": 5.0, "ofr": 62731.35, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594739768}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62728.85, "bidQty": 5.0, "ofr": 62728.95, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594739868}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62729.95, "bidQty": 5.0, "ofr": 62730.05, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594740095}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62727.6, "bidQty": 5.0, "ofr": 62727.7, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594740104}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62729.25, "bidQty": 5.0, "ofr": 62729.35, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594740255}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62729.65, "bidQty": 5.0, "ofr": 62729.75, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594740306}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62728.5, "bidQty": 5.0, "ofr": 62728.6, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594742625}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62728.05, "bidQty": 5.0, "ofr": 62728.15, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594743128}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62726.1, "bidQty": 5.0, "ofr": 62726.2, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594743138}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62724.15, "bidQty": 5.0, "ofr": 62724.25, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594743168}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62724.05, "bidQty": 5.0, "ofr": 62724.15, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594743198}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62724.65, "bidQty": 5.0, "ofr": 62724.75, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594743314}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62726.15, "bidQty": 5.0, "ofr": 62726.25, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594743361}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62724.65, "bidQty": 5.0, "ofr": 62724.75, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594743682}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62724.45, "bidQty": 5.0, "ofr": 62724.55, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594743733}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62725.0, "bidQty": 5.0, "ofr": 62725.1, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594743904}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62722.15, "bidQty": 5.0, "ofr": 62722.25, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594744015}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62722.6, "bidQty": 5.0, "ofr": 62722.7, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594744215}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62722.75, "bidQty": 5.0, "ofr": 62722.85, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594744296}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62723.35, "bidQty": 5.0, "ofr": 62723.45, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594744619}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62722.15, "bidQty": 5.0, "ofr": 62722.25, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594744704}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62721.5, "bidQty": 5.0, "ofr": 62721.6, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594745279}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62722.95, "bidQty": 5.0, "ofr": 62723.05, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594745526}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62725.45, "bidQty": 5.0, "ofr": 62725.55, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594745618}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62723.35, "bidQty": 5.0, "ofr": 62723.45, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594746094}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62728.2, "bidQty": 5.0, "ofr": 62728.3, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594746273}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62726.6, "bidQty": 5.0, "ofr": 62726.7, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594746374}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62730.35, "bidQty": 5.0, "ofr": 62730.45, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594746684}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62726.65, "bidQty": 5.0, "ofr": 62726.75, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594746867}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62725.5, "bidQty": 5.0, "ofr": 62725.6, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594746878}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62731.45, "bidQty": 5.0, "ofr": 62731.55, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594747245}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62733.15, "bidQty": 5.0, "ofr": 62733.25, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594747406}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62730.95, "bidQty": 5.0, "ofr": 62731.05, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594747619}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62729.35, "bidQty": 5.0, "ofr": 62729.45, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594747816}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62729.5, "bidQty": 5.0, "ofr": 62729.6, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594748371}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62723.8, "bidQty": 5.0, "ofr": 62723.9, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594748453}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62729.2, "bidQty": 5.0, "ofr": 62729.3, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594748472}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62731.05, "bidQty": 5.0, "ofr": 62731.15, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594748712}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62731.5, "bidQty": 5.0, "ofr": 62731.6, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594749332}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62734.05, "bidQty": 5.0, "ofr": 62734.15, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594749392}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62731.95, "bidQty": 5.0, "ofr": 62732.05, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594749512}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62730.6, "bidQty": 5.0, "ofr": 62730.7, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594749532}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62731.4, "bidQty": 5.0, "ofr": 62731.5, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594751413}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62732.2, "bidQty": 5.0, "ofr": 62732.3, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594751509}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62735.95, "bidQty": 5.0, "ofr": 62736.05, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594751650}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62735.55, "bidQty": 5.0, "ofr": 62735.65, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594751699}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62735.95, "bidQty": 5.0, "ofr": 62736.05, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594751719}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62732.95, "bidQty": 5.0, "ofr": 62733.05, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594751740}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62735.2, "bidQty": 5.0, "ofr": 62735.3, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594751870}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62736.25, "bidQty": 5.0, "ofr": 62736.35, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594752031}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62736.35, "bidQty": 5.0, "ofr": 62736.45, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594752091}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62735.6, "bidQty": 5.0, "ofr": 62735.7, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594752181}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62733.8, "bidQty": 5.0, "ofr": 62733.9, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594752222}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62734.45, "bidQty": 5.0, "ofr": 62734.55, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594752371}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62736.45, "bidQty": 5.0, "ofr": 62736.55, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594752433}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62736.85, "bidQty": 5.0, "ofr": 62736.95, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594752512}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62737.95, "bidQty": 5.0, "ofr": 62738.05, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594752710}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62736.65, "bidQty": 5.0, "ofr": 62736.75, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594752772}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62737.4, "bidQty": 5.0, "ofr": 62737.5, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594752813}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62736.6, "bidQty": 5.0, "ofr": 62736.7, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594752823}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62737.85, "bidQty": 5.0, "ofr": 62737.95, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594752968}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62738.55, "bidQty": 5.0, "ofr": 62738.65, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594753038}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62742.6, "bidQty": 5.0, "ofr": 62742.7, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594753246}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62740.35, "bidQty": 5.0, "ofr": 62740.45, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594753912}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62738.95, "bidQty": 5.0, "ofr": 62739.05, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594753990}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62740.15, "bidQty": 5.0, "ofr": 62740.25, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594755389}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62738.25, "bidQty": 5.0, "ofr": 62738.35, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594755569}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62738.95, "bidQty": 5.0, "ofr": 62739.05, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594755777}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62736.75, "bidQty": 5.0, "ofr": 62736.85, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594756263}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62738.65, "bidQty": 5.0, "ofr": 62738.75, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594756425}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62738.05, "bidQty": 5.0, "ofr": 62738.15, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594757114}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62735.15, "bidQty": 5.0, "ofr": 62735.25, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594757125}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62735.95, "bidQty": 5.0, "ofr": 62736.05, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594757426}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62737.75, "bidQty": 5.0, "ofr": 62737.85, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594757489}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62736.3, "bidQty": 5.0, "ofr": 62736.4, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594758693}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62737.05, "bidQty": 5.0, "ofr": 62737.15, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594758814}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62739.55, "bidQty": 5.0, "ofr": 62739.65, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594758879}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62739.65, "bidQty": 5.0, "ofr": 62739.75, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594759036}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62738.15, "bidQty": 5.0, "ofr": 62738.25, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594760510}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62735.85, "bidQty": 5.0, "ofr": 62735.95, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594760531}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62733.35, "bidQty": 5.0, "ofr": 62733.45, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594760577}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62737.2, "bidQty": 5.0, "ofr": 62737.3, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594760792}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62737.55, "bidQty": 5.0, "ofr": 62737.65, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594760914}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62737.3, "bidQty": 5.0, "ofr": 62737.4, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594762075}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62736.65, "bidQty": 5.0, "ofr": 62736.75, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594766055}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62737.05, "bidQty": 5.0, "ofr": 62737.15, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594766265}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62735.45, "bidQty": 5.0, "ofr": 62735.55, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594766275}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62735.8, "bidQty": 5.0, "ofr": 62735.9, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594766480}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62735.1, "bidQty": 5.0, "ofr": 62735.2, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594766837}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62735.65, "bidQty": 5.0, "ofr": 62735.75, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594767599}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62736.2, "bidQty": 5.0, "ofr": 62736.3, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594768301}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62735.55, "bidQty": 5.0, "ofr": 62735.65, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594769138}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62736.1, "bidQty": 5.0, "ofr": 62736.2, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594770269}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62737.05, "bidQty": 5.0, "ofr": 62737.15, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594773141}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62736.4, "bidQty": 5.0, "ofr": 62736.5, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594773809}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62737.5, "bidQty": 5.0, "ofr": 62737.6, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594774018}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62739.55, "bidQty": 5.0, "ofr": 62739.65, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594774080}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62737.0, "bidQty": 5.0, "ofr": 62737.1, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594774445}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62738.55, "bidQty": 5.0, "ofr": 62738.65, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594774545}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62740.95, "bidQty": 5.0, "ofr": 62741.05, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594774595}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62741.15, "bidQty": 5.0, "ofr": 62741.25, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594774655}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62739.05, "bidQty": 5.0, "ofr": 62739.15, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594774893}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62736.7, "bidQty": 5.0, "ofr": 62736.8, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594775857}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62738.05, "bidQty": 5.0, "ofr": 62738.15, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594776034}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62736.7, "bidQty": 5.0, "ofr": 62736.8, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594779713}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62737.55, "bidQty": 5.0, "ofr": 62737.65, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594780030}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62736.6, "bidQty": 5.0, "ofr": 62736.7, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594782313}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62733.85, "bidQty": 5.0, "ofr": 62733.95, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594782393}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62732.35, "bidQty": 5.0, "ofr": 62732.45, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594782403}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62734.35, "bidQty": 5.0, "ofr": 62734.45, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594782463}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62734.25, "bidQty": 5.0, "ofr": 62734.35, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594782503}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62733.55, "bidQty": 5.0, "ofr": 62733.65, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594782533}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62734.05, "bidQty": 5.0, "ofr": 62734.15, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594782693}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62733.05, "bidQty": 5.0, "ofr": 62733.15, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594782724}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62733.45, "bidQty": 5.0, "ofr": 62733.55, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594782997}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62730.6, "bidQty": 5.0, "ofr": 62730.7, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594784183}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62732.85, "bidQty": 5.0, "ofr": 62732.95, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594784334}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62731.95, "bidQty": 5.0, "ofr": 62732.05, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594784344}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62729.85, "bidQty": 5.0, "ofr": 62729.95, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594784364}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62730.8, "bidQty": 5.0, "ofr": 62730.9, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594784385}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62730.0, "bidQty": 5.0, "ofr": 62730.1, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594784394}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62729.75, "bidQty": 5.0, "ofr": 62729.85, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594784446}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62730.55, "bidQty": 5.0, "ofr": 62730.65, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594784519}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62730.05, "bidQty": 5.0, "ofr": 62730.15, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594784589}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62726.55, "bidQty": 5.0, "ofr": 62726.65, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594784777}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62725.4, "bidQty": 5.0, "ofr": 62725.5, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594784849}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62727.3, "bidQty": 5.0, "ofr": 62727.4, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594784918}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62728.0, "bidQty": 5.0, "ofr": 62728.1, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594785018}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62726.95, "bidQty": 5.0, "ofr": 62727.05, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594785082}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62727.1, "bidQty": 5.0, "ofr": 62727.2, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594787661}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62725.85, "bidQty": 5.0, "ofr": 62725.95, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594787753}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62728.6, "bidQty": 5.0, "ofr": 62728.7, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594787861}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62728.9, "bidQty": 5.0, "ofr": 62729.0, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594788014}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62724.85, "bidQty": 5.0, "ofr": 62724.95, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594788964}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62724.5, "bidQty": 5.0, "ofr": 62724.6, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594788975}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62723.65, "bidQty": 5.0, "ofr": 62723.75, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594789034}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62725.1, "bidQty": 5.0, "ofr": 62725.2, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594789076}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62726.9, "bidQty": 5.0, "ofr": 62727.0, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594789136}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62727.6, "bidQty": 5.0, "ofr": 62727.7, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594789187}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62728.45, "bidQty": 5.0, "ofr": 62728.55, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594789253}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62727.15, "bidQty": 5.0, "ofr": 62727.25, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594791039}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62728.95, "bidQty": 5.0, "ofr": 62729.05, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594791150}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62731.6, "bidQty": 5.0, "ofr": 62731.7, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594791262}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62731.9, "bidQty": 5.0, "ofr": 62732.0, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594791540}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62729.65, "bidQty": 5.0, "ofr": 62729.75, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594791699}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62729.95, "bidQty": 5.0, "ofr": 62730.05, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594791832}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62728.95, "bidQty": 5.0, "ofr": 62729.05, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594791842}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62730.05, "bidQty": 5.0, "ofr": 62730.15, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594792031}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62733.8, "bidQty": 5.0, "ofr": 62733.95, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594792474}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62732.45, "bidQty": 5.0, "ofr": 62732.55, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594792555}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62729.0, "bidQty": 5.0, "ofr": 62729.1, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594792564}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62731.1, "bidQty": 5.0, "ofr": 62731.2, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594792995}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62728.2, "bidQty": 5.0, "ofr": 62728.3, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594793044}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62728.7, "bidQty": 5.0, "ofr": 62728.8, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594793232}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62727.95, "bidQty": 5.0, "ofr": 62728.05, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594793305}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62728.4, "bidQty": 5.0, "ofr": 62728.5, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594793491}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62726.0, "bidQty": 5.0, "ofr": 62726.1, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594796333}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62728.15, "bidQty": 5.0, "ofr": 62728.25, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594796637}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62726.0, "bidQty": 5.0, "ofr": 62726.1, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594797128}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62728.55, "bidQty": 5.0, "ofr": 62728.65, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594797453}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62728.45, "bidQty": 5.0, "ofr": 62728.55, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594800142}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62729.5, "bidQty": 5.0, "ofr": 62729.6, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594800191}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62726.55, "bidQty": 5.0, "ofr": 62726.65, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594800584}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62729.4, "bidQty": 5.0, "ofr": 62729.5, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594800764}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62728.05, "bidQty": 5.0, "ofr": 62728.15, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594801147}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62729.9, "bidQty": 5.0, "ofr": 62730.0, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594801259}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62725.45, "bidQty": 5.0, "ofr": 62725.55, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594801688}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62728.15, "bidQty": 5.0, "ofr": 62728.25, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594801851}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62724.65, "bidQty": 5.0, "ofr": 62724.75, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594802140}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62722.45, "bidQty": 5.0, "ofr": 62722.55, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594802161}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62722.15, "bidQty": 5.0, "ofr": 62722.25, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594802226}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62721.35, "bidQty": 5.0, "ofr": 62721.45, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594802318}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62721.95, "bidQty": 5.0, "ofr": 62722.05, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594802494}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62722.35, "bidQty": 5.0, "ofr": 62722.45, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594802616}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62722.75, "bidQty": 5.0, "ofr": 62722.85, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594802712}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62722.95, "bidQty": 5.0, "ofr": 62723.05, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594802812}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62723.65, "bidQty": 5.0, "ofr": 62723.75, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594803011}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62721.05, "bidQty": 5.0, "ofr": 62721.15, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594803051}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62720.1, "bidQty": 5.0, "ofr": 62720.2, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594803141}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62719.55, "bidQty": 5.0, "ofr": 62719.65, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594803191}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62721.45, "bidQty": 5.0, "ofr": 62721.55, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594803212}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62721.55, "bidQty": 5.0, "ofr": 62721.65, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594803274}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62720.8, "bidQty": 5.0, "ofr": 62720.9, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594803314}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62722.45, "bidQty": 5.0, "ofr": 62722.55, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594803380}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62723.05, "bidQty": 5.0, "ofr": 62723.15, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594803608}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62722.65, "bidQty": 5.0, "ofr": 62722.75, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594803961}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62720.85, "bidQty": 5.0, "ofr": 62720.95, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594803991}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62721.5, "bidQty": 5.0, "ofr": 62721.6, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594804164}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62720.85, "bidQty": 5.0, "ofr": 62720.95, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594804171}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62721.25, "bidQty": 5.0, "ofr": 62721.35, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594804334}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62721.6, "bidQty": 5.0, "ofr": 62721.7, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594806773}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62723.15, "bidQty": 5.0, "ofr": 62723.25, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594806853}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62724.85, "bidQty": 5.0, "ofr": 62724.95, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594806978}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62723.15, "bidQty": 5.0, "ofr": 62723.25, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594807450}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62724.2, "bidQty": 5.0, "ofr": 62724.3, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594807551}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62724.95, "bidQty": 5.0, "ofr": 62725.05, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594807591}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62726.7, "bidQty": 5.0, "ofr": 62726.8, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594807677}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62725.5, "bidQty": 5.0, "ofr": 62725.6, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594807707}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62724.4, "bidQty": 5.0, "ofr": 62724.5, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594807718}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62725.9, "bidQty": 5.0, "ofr": 62726.0, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594807986}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62724.55, "bidQty": 5.0, "ofr": 62724.65, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594810344}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62722.5, "bidQty": 5.0, "ofr": 62722.6, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594810364}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62722.0, "bidQty": 5.0, "ofr": 62722.1, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594810424}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62722.4, "bidQty": 5.0, "ofr": 62722.5, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594810465}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62724.45, "bidQty": 5.0, "ofr": 62724.55, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594810532}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62724.9, "bidQty": 5.0, "ofr": 62725.0, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594810611}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62722.85, "bidQty": 5.0, "ofr": 62722.95, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594811306}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62721.8, "bidQty": 5.0, "ofr": 62721.9, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594811383}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62720.95, "bidQty": 5.0, "ofr": 62721.05, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594811393}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62720.45, "bidQty": 5.0, "ofr": 62720.55, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594811453}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62719.5, "bidQty": 5.0, "ofr": 62719.6, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594811514}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62719.85, "bidQty": 5.0, "ofr": 62719.95, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594811595}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62720.85, "bidQty": 5.0, "ofr": 62720.95, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594811647}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62719.85, "bidQty": 5.0, "ofr": 62719.95, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594811707}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62715.7, "bidQty": 5.0, "ofr": 62715.8, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594811718}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62718.15, "bidQty": 5.0, "ofr": 62718.25, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594811868}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62719.35, "bidQty": 5.0, "ofr": 62719.45, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594811977}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62718.05, "bidQty": 5.0, "ofr": 62718.15, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594812319}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62716.85, "bidQty": 5.0, "ofr": 62716.95, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594812572}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62713.65, "bidQty": 5.0, "ofr": 62713.75, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594812602}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62713.05, "bidQty": 5.0, "ofr": 62713.15, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594812694}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62712.45, "bidQty": 5.0, "ofr": 62712.55, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594812744}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62712.35, "bidQty": 5.0, "ofr": 62712.45, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594812794}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62712.65, "bidQty": 5.0, "ofr": 62712.75, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594812844}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62710.2, "bidQty": 5.0, "ofr": 62710.3, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594814230}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62708.7, "bidQty": 5.0, "ofr": 62708.8, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594814360}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62708.85, "bidQty": 5.0, "ofr": 62708.95, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594814401}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62709.7, "bidQty": 5.0, "ofr": 62709.8, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594814473}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62709.1, "bidQty": 5.0, "ofr": 62709.2, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594814912}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62706.2, "bidQty": 5.0, "ofr": 62706.3, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594815126}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62707.1, "bidQty": 5.0, "ofr": 62707.2, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594815290}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62709.0, "bidQty": 5.0, "ofr": 62709.1, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594815420}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62709.75, "bidQty": 5.0, "ofr": 62709.85, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594815553}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62709.15, "bidQty": 5.0, "ofr": 62709.25, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594815564}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62712.6, "bidQty": 5.0, "ofr": 62712.7, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594815715}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62711.15, "bidQty": 5.0, "ofr": 62711.25, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594815854}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62710.4, "bidQty": 5.0, "ofr": 62710.5, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594815863}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62709.9, "bidQty": 5.0, "ofr": 62710.0, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594815903}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62708.25, "bidQty": 5.0, "ofr": 62708.35, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594815913}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62710.8, "bidQty": 5.0, "ofr": 62710.9, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594816111}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62707.15, "bidQty": 5.0, "ofr": 62707.25, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594817084}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62705.55, "bidQty": 5.0, "ofr": 62705.65, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594817104}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62708.1, "bidQty": 5.0, "ofr": 62708.2, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594817215}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62709.95, "bidQty": 5.0, "ofr": 62710.05, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594817284}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62706.6, "bidQty": 5.0, "ofr": 62706.7, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594819806}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62709.55, "bidQty": 5.0, "ofr": 62709.65, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594820030}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62709.1, "bidQty": 5.0, "ofr": 62709.2, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594821604}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62709.4, "bidQty": 5.0, "ofr": 62709.5, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594821633}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62708.5, "bidQty": 5.0, "ofr": 62708.6, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594821693}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62712.45, "bidQty": 5.0, "ofr": 62712.55, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594821704}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62714.7, "bidQty": 5.0, "ofr": 62714.8, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594821804}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62714.45, "bidQty": 5.0, "ofr": 62714.55, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594821854}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62713.8, "bidQty": 5.0, "ofr": 62713.9, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594822905}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62709.25, "bidQty": 5.0, "ofr": 62709.35, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594822915}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62704.9, "bidQty": 5.0, "ofr": 62705.0, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594822924}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62706.95, "bidQty": 5.0, "ofr": 62707.05, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594823015}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62707.35, "bidQty": 5.0, "ofr": 62707.45, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594823125}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62701.5, "bidQty": 5.0, "ofr": 62701.6, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594823259}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62703.6, "bidQty": 5.0, "ofr": 62703.7, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594823312}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62707.8, "bidQty": 5.0, "ofr": 62707.9, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594823372}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62709.55, "bidQty": 5.0, "ofr": 62709.65, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594823423}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62711.45, "bidQty": 5.0, "ofr": 62711.55, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594823483}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62711.8, "bidQty": 5.0, "ofr": 62711.9, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594823558}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62711.15, "bidQty": 5.0, "ofr": 62711.25, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594823730}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62710.8, "bidQty": 5.0, "ofr": 62710.9, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594823780}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62708.9, "bidQty": 5.0, "ofr": 62709.0, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594823812}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62708.55, "bidQty": 5.0, "ofr": 62708.65, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594823932}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62708.9, "bidQty": 5.0, "ofr": 62709.0, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594823995}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62708.45, "bidQty": 5.0, "ofr": 62708.55, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594824974}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62708.75, "bidQty": 5.0, "ofr": 62708.85, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594825332}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62707.25, "bidQty": 5.0, "ofr": 62707.35, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594825537}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62706.7, "bidQty": 5.0, "ofr": 62706.8, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594825548}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62705.15, "bidQty": 5.0, "ofr": 62705.25, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594825557}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62704.95, "bidQty": 5.0, "ofr": 62705.05, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594825577}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62703.25, "bidQty": 5.0, "ofr": 62703.35, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594825587}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62704.15, "bidQty": 5.0, "ofr": 62704.25, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594825710}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62704.5, "bidQty": 5.0, "ofr": 62704.6, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594825774}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62702.5, "bidQty": 5.0, "ofr": 62702.6, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594826449}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62705.5, "bidQty": 5.0, "ofr": 62705.6, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594826556}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62707.5, "bidQty": 5.0, "ofr": 62707.6, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594826674}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62705.5, "bidQty": 5.0, "ofr": 62705.6, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594826748}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62707.05, "bidQty": 5.0, "ofr": 62707.15, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594826930}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62705.55, "bidQty": 5.0, "ofr": 62705.65, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594826960}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62703.6, "bidQty": 5.0, "ofr": 62703.7, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594826972}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62704.0, "bidQty": 5.0, "ofr": 62704.1, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594827219}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62704.65, "bidQty": 5.0, "ofr": 62704.75, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594827356}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62705.3, "bidQty": 5.0, "ofr": 62705.4, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594827861}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62704.7, "bidQty": 5.0, "ofr": 62704.8, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594828748}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62705.9, "bidQty": 5.0, "ofr": 62706.0, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594828880}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62707.75, "bidQty": 5.0, "ofr": 62707.85, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594828929}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62706.55, "bidQty": 5.0, "ofr": 62706.65, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594830381}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62708.95, "bidQty": 5.0, "ofr": 62709.05, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594830402}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62707.5, "bidQty": 5.0, "ofr": 62707.6, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594830463}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62707.0, "bidQty": 5.0, "ofr": 62707.1, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594830472}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62710.35, "bidQty": 5.0, "ofr": 62710.45, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594830493}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62704.35, "bidQty": 5.0, "ofr": 62704.45, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594830513}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62705.5, "bidQty": 5.0, "ofr": 62705.6, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594830592}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62709.25, "bidQty": 5.0, "ofr": 62709.35, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594830613}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62714.15, "bidQty": 5.0, "ofr": 62714.25, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594838663}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62718.85, "bidQty": 5.0, "ofr": 62718.95, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594838724}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62721.05, "bidQty": 5.0, "ofr": 62721.15, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594838753}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62728.65, "bidQty": 5.0, "ofr": 62728.75, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594838814}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62727.55, "bidQty": 5.0, "ofr": 62727.65, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594838833}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62726.45, "bidQty": 5.0, "ofr": 62726.55, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594838864}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62722.75, "bidQty": 5.0, "ofr": 62722.85, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594839295}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62723.65, "bidQty": 5.0, "ofr": 62723.75, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594839524}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62722.9, "bidQty": 5.0, "ofr": 62723.0, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594840750}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62720.55, "bidQty": 5.0, "ofr": 62720.65, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594840779}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62720.45, "bidQty": 5.0, "ofr": 62720.55, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594840812}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62718.25, "bidQty": 5.0, "ofr": 62718.35, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594840893}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62714.2, "bidQty": 5.0, "ofr": 62714.3, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594840903}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62715.6, "bidQty": 5.0, "ofr": 62715.7, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594840954}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62717.8, "bidQty": 5.0, "ofr": 62717.9, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594841083}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62720.15, "bidQty": 5.0, "ofr": 62720.25, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594842671}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62720.8, "bidQty": 5.0, "ofr": 62720.9, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594842762}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62719.9, "bidQty": 5.0, "ofr": 62720.0, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594842782}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62719.7, "bidQty": 5.0, "ofr": 62719.8, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594849144}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62720.5, "bidQty": 5.0, "ofr": 62720.6, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594849294}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62720.45, "bidQty": 5.0, "ofr": 62720.55, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594852674}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62724.6, "bidQty": 5.0, "ofr": 62724.7, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594852775}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62726.45, "bidQty": 5.0, "ofr": 62726.55, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594852995}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62726.7, "bidQty": 5.0, "ofr": 62726.85, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594853433}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62735.5, "bidQty": 5.0, "ofr": 62735.6, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594853568}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62734.55, "bidQty": 5.0, "ofr": 62734.65, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594853588}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62736.2, "bidQty": 5.0, "ofr": 62736.3, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594853668}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62741.1, "bidQty": 5.0, "ofr": 62741.2, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594853945}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62738.35, "bidQty": 5.0, "ofr": 62738.45, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594854060}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62737.9, "bidQty": 5.0, "ofr": 62738.0, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594854401}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62739.45, "bidQty": 5.0, "ofr": 62739.55, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594855229}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62736.8, "bidQty": 5.0, "ofr": 62736.9, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594855979}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62733.85, "bidQty": 5.0, "ofr": 62733.95, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594856020}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62732.95, "bidQty": 5.0, "ofr": 62733.05, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594856080}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62730.05, "bidQty": 5.0, "ofr": 62730.15, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594856130}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62732.05, "bidQty": 5.0, "ofr": 62732.15, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594856395}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62733.45, "bidQty": 5.0, "ofr": 62733.55, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594856455}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62731.95, "bidQty": 5.0, "ofr": 62732.05, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594856654}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62733.65, "bidQty": 5.0, "ofr": 62733.75, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594856893}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62734.35, "bidQty": 5.0, "ofr": 62734.45, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594856954}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62734.45, "bidQty": 5.0, "ofr": 62734.55, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594857034}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62734.95, "bidQty": 5.0, "ofr": 62735.05, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594857123}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62735.25, "bidQty": 5.0, "ofr": 62735.35, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594857133}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62736.1, "bidQty": 5.0, "ofr": 62736.2, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594857194}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62736.75, "bidQty": 5.0, "ofr": 62736.85, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594857401}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62737.0, "bidQty": 5.0, "ofr": 62737.1, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594857452}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62736.8, "bidQty": 5.0, "ofr": 62736.9, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594857579}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62736.25, "bidQty": 5.0, "ofr": 62736.35, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594857987}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62740.05, "bidQty": 5.0, "ofr": 62740.2, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594858078}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62738.95, "bidQty": 5.0, "ofr": 62739.05, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594858185}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62739.3, "bidQty": 5.0, "ofr": 62739.4, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594858195}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62740.5, "bidQty": 5.0, "ofr": 62740.6, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594858428}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62738.95, "bidQty": 5.0, "ofr": 62739.05, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594858438}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62739.85, "bidQty": 5.0, "ofr": 62739.95, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594859196}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62741.8, "bidQty": 5.0, "ofr": 62741.9, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594859236}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62752.5, "bidQty": 5.0, "ofr": 62752.6, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594859780}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62750.85, "bidQty": 5.0, "ofr": 62750.95, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594859911}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62749.05, "bidQty": 5.0, "ofr": 62749.15, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594860014}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62750.55, "bidQty": 5.0, "ofr": 62750.65, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594860024}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62752.05, "bidQty": 5.0, "ofr": 62752.15, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594860085}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62760.65, "bidQty": 5.0, "ofr": 62760.75, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594860391}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62760.75, "bidQty": 5.0, "ofr": 62760.85, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594860433}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62758.55, "bidQty": 5.0, "ofr": 62758.65, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594860453}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62754.45, "bidQty": 5.0, "ofr": 62754.55, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594860773}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62754.9, "bidQty": 5.0, "ofr": 62755.0, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594860832}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62754.35, "bidQty": 5.0, "ofr": 62754.45, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594861214}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62753.7, "bidQty": 5.0, "ofr": 62753.8, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594861244}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62757.9, "bidQty": 5.0, "ofr": 62758.05, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594861284}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62757.55, "bidQty": 5.0, "ofr": 62757.65, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594861546}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62758.25, "bidQty": 5.0, "ofr": 62758.4, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594861596}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62757.65, "bidQty": 5.0, "ofr": 62757.75, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594862138}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62755.9, "bidQty": 5.0, "ofr": 62756.0, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594862807}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62755.25, "bidQty": 5.0, "ofr": 62755.35, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594862857}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62753.95, "bidQty": 5.0, "ofr": 62754.05, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594862957}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62754.6, "bidQty": 5.0, "ofr": 62754.7, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594864241}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62754.95, "bidQty": 5.0, "ofr": 62755.05, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594865350}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62755.75, "bidQty": 5.0, "ofr": 62755.85, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594865399}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62755.95, "bidQty": 5.0, "ofr": 62756.05, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594865499}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62756.85, "bidQty": 5.0, "ofr": 62756.95, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594865509}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62755.4, "bidQty": 5.0, "ofr": 62755.5, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594865778}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62755.25, "bidQty": 5.0, "ofr": 62755.35, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594865828}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62755.05, "bidQty": 5.0, "ofr": 62755.15, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594865889}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62755.35, "bidQty": 5.0, "ofr": 62755.45, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594865975}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62755.65, "bidQty": 5.0, "ofr": 62755.75, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594866036}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62757.05, "bidQty": 5.0, "ofr": 62757.15, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594866630}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62756.2, "bidQty": 5.0, "ofr": 62756.3, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594867176}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62754.4, "bidQty": 5.0, "ofr": 62754.5, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594867196}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62750.5, "bidQty": 5.0, "ofr": 62750.6, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594867206}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62746.45, "bidQty": 5.0, "ofr": 62746.55, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594867596}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62745.85, "bidQty": 5.0, "ofr": 62745.95, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594867630}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62747.45, "bidQty": 5.0, "ofr": 62747.55, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594867742}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62748.7, "bidQty": 5.0, "ofr": 62748.8, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594867792}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62752.45, "bidQty": 5.0, "ofr": 62752.55, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594868646}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62751.15, "bidQty": 5.0, "ofr": 62751.25, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594868697}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62750.45, "bidQty": 5.0, "ofr": 62750.55, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594868768}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62748.35, "bidQty": 5.0, "ofr": 62748.45, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594871894}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62744.2, "bidQty": 5.0, "ofr": 62744.3, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594871967}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62746.65, "bidQty": 5.0, "ofr": 62746.75, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594874498}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62746.95, "bidQty": 5.0, "ofr": 62747.05, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594874508}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62747.25, "bidQty": 5.0, "ofr": 62747.35, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594874559}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62745.05, "bidQty": 5.0, "ofr": 62745.15, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594874674}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62747.25, "bidQty": 5.0, "ofr": 62747.35, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594875756}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62742.45, "bidQty": 5.0, "ofr": 62742.55, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594876832}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62743.9, "bidQty": 5.0, "ofr": 62744.0, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594876983}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62742.75, "bidQty": 5.0, "ofr": 62742.85, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594877032}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62742.9, "bidQty": 5.0, "ofr": 62743.0, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594877072}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62743.2, "bidQty": 5.0, "ofr": 62743.3, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594877132}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62743.1, "bidQty": 5.0, "ofr": 62743.2, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594877167}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62744.2, "bidQty": 5.0, "ofr": 62744.3, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594877186}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62743.05, "bidQty": 5.0, "ofr": 62743.15, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594877490}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62744.05, "bidQty": 5.0, "ofr": 62744.15, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594877652}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62746.6, "bidQty": 5.0, "ofr": 62746.7, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594878188}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62748.25, "bidQty": 5.0, "ofr": 62748.35, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594878370}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62745.25, "bidQty": 5.0, "ofr": 62745.35, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594878471}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62747.55, "bidQty": 5.0, "ofr": 62747.65, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594878639}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62747.05, "bidQty": 5.0, "ofr": 62747.15, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594878678}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62744.65, "bidQty": 5.0, "ofr": 62744.75, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594878699}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62747.75, "bidQty": 5.0, "ofr": 62747.85, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594878782}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62748.2, "bidQty": 5.0, "ofr": 62748.3, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594878792}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62751.15, "bidQty": 5.0, "ofr": 62751.25, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783594880981}, "status": "OK"}
|
||||
@@ -0,0 +1 @@
|
||||
{"correlationId": "probe-market-data-missing-payload", "destination": "marketData.subscribe", "payload": {"code": -1128, "msg": "Mandatory parameter 'symbols' was not sent, was empty/null, or malformed."}, "status": "ERROR"}
|
||||
@@ -0,0 +1,4 @@
|
||||
{
|
||||
"correlationId": "probe-market-data-missing-payload",
|
||||
"destination": "marketData.subscribe"
|
||||
}
|
||||
@@ -0,0 +1 @@
|
||||
{"correlationId": "probe-market-data-missing-symbols", "destination": "marketData.subscribe", "payload": {"code": -1128, "msg": "Mandatory parameter 'symbols' was not sent, was empty/null, or malformed."}, "status": "ERROR"}
|
||||
@@ -0,0 +1,5 @@
|
||||
{
|
||||
"correlationId": "probe-market-data-missing-symbols",
|
||||
"destination": "marketData.subscribe",
|
||||
"payload": {}
|
||||
}
|
||||
@@ -0,0 +1,148 @@
|
||||
{"correlationId": "probe-market-data-multi-symbol-1", "destination": "marketData.subscribe", "payload": {"subscriptions": {"BTC/USD_LEVERAGE": "PROCESSED", "ETH/USD_LEVERAGE": "PROCESSED"}}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62659.95, "bidQty": 5.0, "ofr": 62660.05, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783616094717}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62653.8, "bidQty": 5.0, "ofr": 62653.9, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783616094727}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62654.7, "bidQty": 5.0, "ofr": 62654.8, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783616094829}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62656.9, "bidQty": 5.0, "ofr": 62657.0, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783616095021}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62654.7, "bidQty": 5.0, "ofr": 62654.8, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783616095571}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62656.9, "bidQty": 5.0, "ofr": 62657.0, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783616095857}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62655.65, "bidQty": 5.0, "ofr": 62655.75, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783616096813}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62654.3, "bidQty": 5.0, "ofr": 62654.4, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783616097433}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62653.3, "bidQty": 5.0, "ofr": 62653.4, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783616100105}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62650.65, "bidQty": 5.0, "ofr": 62650.75, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783616100279}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62648.75, "bidQty": 5.0, "ofr": 62648.85, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783616100289}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 1737.35, "bidQty": 30.0, "ofr": 1737.41, "ofrQty": 30.0, "symbolName": "ETH/USD_LEVERAGE", "timestamp": 1783616100289}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 1737.25, "bidQty": 30.0, "ofr": 1737.3, "ofrQty": 30.0, "symbolName": "ETH/USD_LEVERAGE", "timestamp": 1783616100300}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 1737.01, "bidQty": 30.0, "ofr": 1737.07, "ofrQty": 30.0, "symbolName": "ETH/USD_LEVERAGE", "timestamp": 1783616100590}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 1736.86, "bidQty": 30.0, "ofr": 1736.92, "ofrQty": 30.0, "symbolName": "ETH/USD_LEVERAGE", "timestamp": 1783616101712}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 1736.88, "bidQty": 30.0, "ofr": 1736.93, "ofrQty": 30.0, "symbolName": "ETH/USD_LEVERAGE", "timestamp": 1783616101722}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62641.25, "bidQty": 5.0, "ofr": 62641.35, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783616105630}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62636.95, "bidQty": 5.0, "ofr": 62637.05, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783616105640}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62641.2, "bidQty": 5.0, "ofr": 62641.3, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783616105853}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62636.9, "bidQty": 5.0, "ofr": 62637.0, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783616108921}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 1736.63, "bidQty": 30.0, "ofr": 1736.68, "ofrQty": 30.0, "symbolName": "ETH/USD_LEVERAGE", "timestamp": 1783616108991}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 1736.64, "bidQty": 30.0, "ofr": 1736.7, "ofrQty": 30.0, "symbolName": "ETH/USD_LEVERAGE", "timestamp": 1783616109082}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62638.15, "bidQty": 5.0, "ofr": 62638.25, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783616109162}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62638.25, "bidQty": 5.0, "ofr": 62638.35, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783616109244}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62638.35, "bidQty": 5.0, "ofr": 62638.45, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783616109305}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62638.1, "bidQty": 5.0, "ofr": 62638.2, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783616109705}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62636.55, "bidQty": 5.0, "ofr": 62636.65, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783616109945}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62637.3, "bidQty": 5.0, "ofr": 62637.4, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783616110116}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62636.35, "bidQty": 5.0, "ofr": 62636.45, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783616110305}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62635.85, "bidQty": 5.0, "ofr": 62635.95, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783616110428}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62629.1, "bidQty": 5.0, "ofr": 62629.2, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783616111388}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62630.5, "bidQty": 5.0, "ofr": 62630.6, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783616111548}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62635.9, "bidQty": 5.0, "ofr": 62636.0, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783616111818}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62635.7, "bidQty": 5.0, "ofr": 62635.8, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783616111867}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62635.45, "bidQty": 5.0, "ofr": 62635.55, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783616112084}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62634.0, "bidQty": 5.0, "ofr": 62634.1, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783616113345}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62630.05, "bidQty": 5.0, "ofr": 62630.15, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783616113434}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62630.45, "bidQty": 5.0, "ofr": 62630.55, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783616113473}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62631.0, "bidQty": 5.0, "ofr": 62631.1, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783616113563}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62630.45, "bidQty": 5.0, "ofr": 62630.55, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783616113897}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62628.5, "bidQty": 5.0, "ofr": 62628.6, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783616114343}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62627.85, "bidQty": 5.0, "ofr": 62627.95, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783616114384}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62624.0, "bidQty": 5.0, "ofr": 62624.1, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783616114413}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62626.85, "bidQty": 5.0, "ofr": 62626.95, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783616114443}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62624.45, "bidQty": 5.0, "ofr": 62624.55, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783616114735}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62624.75, "bidQty": 5.0, "ofr": 62624.85, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783616114755}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62625.05, "bidQty": 5.0, "ofr": 62625.15, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783616114816}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62625.9, "bidQty": 5.0, "ofr": 62626.0, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783616115008}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62623.3, "bidQty": 5.0, "ofr": 62623.4, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783616116420}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62622.35, "bidQty": 5.0, "ofr": 62622.45, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783616116469}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62621.55, "bidQty": 5.0, "ofr": 62621.65, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783616116614}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62622.15, "bidQty": 5.0, "ofr": 62622.25, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783616116746}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62622.5, "bidQty": 5.0, "ofr": 62622.6, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783616117274}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62634.45, "bidQty": 5.0, "ofr": 62634.55, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783616117506}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 1736.65, "bidQty": 30.0, "ofr": 1736.7, "ofrQty": 30.0, "symbolName": "ETH/USD_LEVERAGE", "timestamp": 1783616117525}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62633.95, "bidQty": 5.0, "ofr": 62634.05, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783616117666}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62634.95, "bidQty": 5.0, "ofr": 62635.05, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783616117715}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62633.95, "bidQty": 5.0, "ofr": 62634.05, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783616119083}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62629.25, "bidQty": 5.0, "ofr": 62629.35, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783616119093}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62633.45, "bidQty": 5.0, "ofr": 62633.55, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783616119263}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62629.45, "bidQty": 5.0, "ofr": 62629.55, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783616121051}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62629.2, "bidQty": 5.0, "ofr": 62629.3, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783616121060}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62628.45, "bidQty": 5.0, "ofr": 62628.55, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783616121131}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62628.7, "bidQty": 5.0, "ofr": 62628.8, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783616121248}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62629.25, "bidQty": 5.0, "ofr": 62629.35, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783616121319}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62630.0, "bidQty": 5.0, "ofr": 62630.1, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783616121972}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 1736.57, "bidQty": 30.0, "ofr": 1736.63, "ofrQty": 30.0, "symbolName": "ETH/USD_LEVERAGE", "timestamp": 1783616122165}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62629.6, "bidQty": 5.0, "ofr": 62629.7, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783616122951}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62629.45, "bidQty": 5.0, "ofr": 62629.55, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783616123137}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62629.6, "bidQty": 5.0, "ofr": 62629.7, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783616123435}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62629.7, "bidQty": 5.0, "ofr": 62629.8, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783616124591}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62630.05, "bidQty": 5.0, "ofr": 62630.15, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783616124610}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62630.2, "bidQty": 5.0, "ofr": 62630.3, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783616124640}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62632.25, "bidQty": 5.0, "ofr": 62632.35, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783616124690}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62633.45, "bidQty": 5.0, "ofr": 62633.55, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783616124701}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62622.95, "bidQty": 5.0, "ofr": 62623.05, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783616125943}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62628.3, "bidQty": 5.0, "ofr": 62628.4, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783616126017}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62629.35, "bidQty": 5.0, "ofr": 62629.45, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783616126161}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62629.75, "bidQty": 5.0, "ofr": 62629.85, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783616126221}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62629.85, "bidQty": 5.0, "ofr": 62629.95, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783616126428}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62629.4, "bidQty": 5.0, "ofr": 62629.5, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783616128726}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62628.3, "bidQty": 5.0, "ofr": 62628.4, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783616128766}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62624.75, "bidQty": 5.0, "ofr": 62624.85, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783616128776}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62626.25, "bidQty": 5.0, "ofr": 62626.35, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783616128888}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62628.0, "bidQty": 5.0, "ofr": 62628.1, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783616128976}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62627.65, "bidQty": 5.0, "ofr": 62627.75, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783616129597}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62628.05, "bidQty": 5.0, "ofr": 62628.15, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783616129766}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62629.05, "bidQty": 5.0, "ofr": 62629.15, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783616129820}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62631.6, "bidQty": 5.0, "ofr": 62631.7, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783616131457}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62619.6, "bidQty": 5.0, "ofr": 62619.7, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783616133968}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62619.2, "bidQty": 5.0, "ofr": 62619.3, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783616134027}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62618.65, "bidQty": 5.0, "ofr": 62618.75, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783616134077}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62629.75, "bidQty": 5.0, "ofr": 62629.85, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783616137324}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62627.35, "bidQty": 5.0, "ofr": 62627.45, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783616137344}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62628.6, "bidQty": 5.0, "ofr": 62628.7, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783616137434}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62627.35, "bidQty": 5.0, "ofr": 62627.45, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783616137484}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62628.55, "bidQty": 5.0, "ofr": 62628.65, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783616137716}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62627.35, "bidQty": 5.0, "ofr": 62627.45, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783616140697}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62625.6, "bidQty": 5.0, "ofr": 62625.7, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783616140741}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62624.2, "bidQty": 5.0, "ofr": 62624.3, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783616140812}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 1736.52, "bidQty": 30.0, "ofr": 1736.58, "ofrQty": 30.0, "symbolName": "ETH/USD_LEVERAGE", "timestamp": 1783616140832}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62625.45, "bidQty": 5.0, "ofr": 62625.55, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783616140883}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62623.35, "bidQty": 5.0, "ofr": 62623.45, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783616140892}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62624.05, "bidQty": 5.0, "ofr": 62624.15, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783616140943}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62626.15, "bidQty": 5.0, "ofr": 62626.25, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783616141005}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62626.7, "bidQty": 5.0, "ofr": 62626.8, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783616141080}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 1736.57, "bidQty": 30.0, "ofr": 1736.62, "ofrQty": 30.0, "symbolName": "ETH/USD_LEVERAGE", "timestamp": 1783616141341}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 1736.53, "bidQty": 30.0, "ofr": 1736.58, "ofrQty": 30.0, "symbolName": "ETH/USD_LEVERAGE", "timestamp": 1783616141850}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 1736.51, "bidQty": 30.0, "ofr": 1736.57, "ofrQty": 30.0, "symbolName": "ETH/USD_LEVERAGE", "timestamp": 1783616141859}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62625.25, "bidQty": 5.0, "ofr": 62625.35, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783616141860}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62622.5, "bidQty": 5.0, "ofr": 62622.6, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783616141951}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62623.45, "bidQty": 5.0, "ofr": 62623.55, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783616142030}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62623.95, "bidQty": 5.0, "ofr": 62624.05, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783616142080}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62622.75, "bidQty": 5.0, "ofr": 62622.85, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783616142120}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62623.55, "bidQty": 5.0, "ofr": 62623.65, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783616142180}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62623.95, "bidQty": 5.0, "ofr": 62624.05, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783616142323}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62623.8, "bidQty": 5.0, "ofr": 62623.9, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783616142400}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62620.35, "bidQty": 5.0, "ofr": 62620.45, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783616142733}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62619.3, "bidQty": 5.0, "ofr": 62619.4, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783616142743}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62620.9, "bidQty": 5.0, "ofr": 62621.0, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783616142855}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62621.85, "bidQty": 5.0, "ofr": 62621.95, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783616142911}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62622.25, "bidQty": 5.0, "ofr": 62622.35, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783616143018}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62622.4, "bidQty": 5.0, "ofr": 62622.5, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783616143078}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62619.85, "bidQty": 5.0, "ofr": 62619.95, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783616143863}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62619.15, "bidQty": 5.0, "ofr": 62619.25, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783616144369}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62616.2, "bidQty": 5.0, "ofr": 62616.3, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783616144380}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62615.95, "bidQty": 5.0, "ofr": 62616.05, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783616144419}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62616.85, "bidQty": 5.0, "ofr": 62616.95, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783616144429}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62614.45, "bidQty": 5.0, "ofr": 62614.55, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783616144459}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62620.95, "bidQty": 5.0, "ofr": 62621.05, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783616145440}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62623.55, "bidQty": 5.0, "ofr": 62623.65, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783616147026}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62626.7, "bidQty": 5.0, "ofr": 62626.8, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783616147096}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62625.5, "bidQty": 5.0, "ofr": 62625.6, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783616147125}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62625.65, "bidQty": 5.0, "ofr": 62625.75, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783616147136}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62628.15, "bidQty": 5.0, "ofr": 62628.25, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783616147175}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62628.85, "bidQty": 5.0, "ofr": 62628.95, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783616147451}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62628.5, "bidQty": 5.0, "ofr": 62628.6, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783616149134}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62628.35, "bidQty": 5.0, "ofr": 62628.45, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783616149412}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62628.5, "bidQty": 5.0, "ofr": 62628.6, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783616149688}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62625.3, "bidQty": 5.0, "ofr": 62625.4, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783616149831}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62625.45, "bidQty": 5.0, "ofr": 62625.55, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783616150432}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 1736.46, "bidQty": 30.0, "ofr": 1736.52, "ofrQty": 30.0, "symbolName": "ETH/USD_LEVERAGE", "timestamp": 1783616150587}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62625.35, "bidQty": 5.0, "ofr": 62625.45, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783616151192}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62624.1, "bidQty": 5.0, "ofr": 62624.2, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783616151491}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62623.5, "bidQty": 5.0, "ofr": 62623.6, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783616151553}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62624.4, "bidQty": 5.0, "ofr": 62624.5, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783616151859}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62623.05, "bidQty": 5.0, "ofr": 62623.15, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783616154380}, "status": "OK"}
|
||||
@@ -0,0 +1,10 @@
|
||||
{
|
||||
"correlationId": "probe-market-data-multi-symbol",
|
||||
"destination": "marketData.subscribe",
|
||||
"payload": {
|
||||
"symbols": [
|
||||
"BTC/USD_LEVERAGE",
|
||||
"ETH/USD_LEVERAGE"
|
||||
]
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
{
|
||||
"correlationId": "probe-market-data-subscribe",
|
||||
"destination": "marketData.subscribe",
|
||||
"payload": {
|
||||
"symbols": [
|
||||
"BTC/USD_LEVERAGE"
|
||||
]
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1 @@
|
||||
{"correlationId": "probe-market-data-unsubscribe-1", "payload": {"errorCode": "BAD_REQUEST"}, "status": "ERROR"}
|
||||
@@ -0,0 +1,9 @@
|
||||
{
|
||||
"correlationId": "probe-market-data-unsubscribe",
|
||||
"destination": "marketData.unsubscribe",
|
||||
"payload": {
|
||||
"symbols": [
|
||||
"BTC/USD_LEVERAGE"
|
||||
]
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,171 @@
|
||||
{"correlationId": "probe-market-data-subscribe-1", "destination": "marketData.subscribe", "payload": {"subscriptions": {"BTC/USD_LEVERAGE": "PROCESSED"}}, "status": "OK"}
|
||||
{"correlationId": "probe-market-data-subscribe-2", "destination": "marketData.subscribe", "payload": {"subscriptions": {"BTC/USD_LEVERAGE": "ALREADY_SUBSCRIBED"}}, "status": "OK"}
|
||||
{"correlationId": "probe-market-data-subscribe-4", "destination": "marketData.subscribe", "payload": {"subscriptions": {"BTC/USD_LEVERAGE": "ALREADY_SUBSCRIBED"}}, "status": "OK"}
|
||||
{"correlationId": "probe-market-data-subscribe-3", "destination": "marketData.subscribe", "payload": {"subscriptions": {"BTC/USD_LEVERAGE": "ALREADY_SUBSCRIBED"}}, "status": "OK"}
|
||||
{"correlationId": "probe-market-data-subscribe-5", "destination": "marketData.subscribe", "payload": {"subscriptions": {"BTC/USD_LEVERAGE": "ALREADY_SUBSCRIBED"}}, "status": "OK"}
|
||||
{"correlationId": "probe-market-data-subscribe-8", "destination": "marketData.subscribe", "payload": {"subscriptions": {"BTC/USD_LEVERAGE": "ALREADY_SUBSCRIBED"}}, "status": "OK"}
|
||||
{"correlationId": "probe-market-data-subscribe-10", "destination": "marketData.subscribe", "payload": {"subscriptions": {"BTC/USD_LEVERAGE": "ALREADY_SUBSCRIBED"}}, "status": "OK"}
|
||||
{"correlationId": "probe-market-data-subscribe-9", "destination": "marketData.subscribe", "payload": {"subscriptions": {"BTC/USD_LEVERAGE": "ALREADY_SUBSCRIBED"}}, "status": "OK"}
|
||||
{"correlationId": "probe-market-data-subscribe-7", "destination": "marketData.subscribe", "payload": {"subscriptions": {"BTC/USD_LEVERAGE": "ALREADY_SUBSCRIBED"}}, "status": "OK"}
|
||||
{"correlationId": "probe-market-data-subscribe-6", "destination": "marketData.subscribe", "payload": {"subscriptions": {"BTC/USD_LEVERAGE": "ALREADY_SUBSCRIBED"}}, "status": "OK"}
|
||||
{"correlationId": "probe-market-data-subscribe-11", "destination": "marketData.subscribe", "payload": {"subscriptions": {"BTC/USD_LEVERAGE": "ALREADY_SUBSCRIBED"}}, "status": "OK"}
|
||||
{"correlationId": "probe-market-data-subscribe-14", "destination": "marketData.subscribe", "payload": {"subscriptions": {"BTC/USD_LEVERAGE": "ALREADY_SUBSCRIBED"}}, "status": "OK"}
|
||||
{"correlationId": "probe-market-data-subscribe-13", "destination": "marketData.subscribe", "payload": {"subscriptions": {"BTC/USD_LEVERAGE": "ALREADY_SUBSCRIBED"}}, "status": "OK"}
|
||||
{"correlationId": "probe-market-data-subscribe-12", "destination": "marketData.subscribe", "payload": {"subscriptions": {"BTC/USD_LEVERAGE": "ALREADY_SUBSCRIBED"}}, "status": "OK"}
|
||||
{"correlationId": "probe-market-data-subscribe-16", "destination": "marketData.subscribe", "payload": {"subscriptions": {"BTC/USD_LEVERAGE": "ALREADY_SUBSCRIBED"}}, "status": "OK"}
|
||||
{"correlationId": "probe-market-data-subscribe-15", "destination": "marketData.subscribe", "payload": {"subscriptions": {"BTC/USD_LEVERAGE": "ALREADY_SUBSCRIBED"}}, "status": "OK"}
|
||||
{"correlationId": "probe-market-data-subscribe-17", "destination": "marketData.subscribe", "payload": {"subscriptions": {"BTC/USD_LEVERAGE": "ALREADY_SUBSCRIBED"}}, "status": "OK"}
|
||||
{"correlationId": "probe-market-data-subscribe-20", "destination": "marketData.subscribe", "payload": {"subscriptions": {"BTC/USD_LEVERAGE": "ALREADY_SUBSCRIBED"}}, "status": "OK"}
|
||||
{"correlationId": "probe-market-data-subscribe-19", "destination": "marketData.subscribe", "payload": {"subscriptions": {"BTC/USD_LEVERAGE": "ALREADY_SUBSCRIBED"}}, "status": "OK"}
|
||||
{"correlationId": "probe-market-data-subscribe-18", "destination": "marketData.subscribe", "payload": {"subscriptions": {"BTC/USD_LEVERAGE": "ALREADY_SUBSCRIBED"}}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62916.0, "bidQty": 5.0, "ofr": 62916.1, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783613094329}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62914.75, "bidQty": 5.0, "ofr": 62914.85, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783613094340}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62913.85, "bidQty": 5.0, "ofr": 62913.95, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783613094380}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62913.95, "bidQty": 5.0, "ofr": 62914.05, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783613094390}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62915.3, "bidQty": 5.0, "ofr": 62915.4, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783613094474}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62916.65, "bidQty": 5.0, "ofr": 62916.75, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783613094482}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62914.0, "bidQty": 5.0, "ofr": 62914.1, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783613096181}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62914.25, "bidQty": 5.0, "ofr": 62914.35, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783613096242}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62916.45, "bidQty": 5.0, "ofr": 62916.55, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783613096262}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62912.3, "bidQty": 5.0, "ofr": 62912.4, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783613096321}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62916.45, "bidQty": 5.0, "ofr": 62916.55, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783613096351}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62911.8, "bidQty": 5.0, "ofr": 62911.95, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783613096391}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62911.55, "bidQty": 5.0, "ofr": 62911.65, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783613098328}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62910.75, "bidQty": 5.0, "ofr": 62910.85, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783613098357}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62910.0, "bidQty": 5.0, "ofr": 62910.15, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783613098408}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62900.2, "bidQty": 5.0, "ofr": 62900.3, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783613101146}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62896.85, "bidQty": 5.0, "ofr": 62896.95, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783613102736}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62896.65, "bidQty": 5.0, "ofr": 62896.75, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783613102755}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62898.45, "bidQty": 5.0, "ofr": 62898.55, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783613102765}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62896.95, "bidQty": 5.0, "ofr": 62897.05, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783613102943}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62897.75, "bidQty": 5.0, "ofr": 62897.85, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783613103327}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62898.85, "bidQty": 5.0, "ofr": 62898.95, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783613103336}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62898.65, "bidQty": 5.0, "ofr": 62898.75, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783613103366}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62897.95, "bidQty": 5.0, "ofr": 62898.05, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783613103417}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62897.25, "bidQty": 5.0, "ofr": 62897.35, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783613103498}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62900.2, "bidQty": 5.0, "ofr": 62900.3, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783613103765}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62898.85, "bidQty": 5.0, "ofr": 62898.95, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783613103928}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62898.25, "bidQty": 5.0, "ofr": 62898.35, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783613105344}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62898.05, "bidQty": 5.0, "ofr": 62898.15, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783613105479}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62898.95, "bidQty": 5.0, "ofr": 62899.05, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783613105735}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62901.35, "bidQty": 5.0, "ofr": 62901.45, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783613107016}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62903.1, "bidQty": 5.0, "ofr": 62903.2, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783613107056}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62905.45, "bidQty": 5.0, "ofr": 62905.55, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783613107108}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62914.25, "bidQty": 5.0, "ofr": 62914.35, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783613107590}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62916.15, "bidQty": 5.0, "ofr": 62916.3, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783613108258}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62915.45, "bidQty": 5.0, "ofr": 62915.55, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783613108440}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62914.75, "bidQty": 5.0, "ofr": 62914.9, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783613109059}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62914.95, "bidQty": 5.0, "ofr": 62915.05, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783613109732}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62916.05, "bidQty": 5.0, "ofr": 62916.2, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783613110034}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62914.6, "bidQty": 5.0, "ofr": 62914.7, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783613110937}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62914.0, "bidQty": 5.0, "ofr": 62914.15, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783613112184}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62915.2, "bidQty": 5.0, "ofr": 62915.3, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783613114886}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62914.85, "bidQty": 5.0, "ofr": 62914.95, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783613116438}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62911.85, "bidQty": 5.0, "ofr": 62911.95, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783613122559}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62914.05, "bidQty": 5.0, "ofr": 62914.15, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783613122610}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62922.65, "bidQty": 5.0, "ofr": 62922.75, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783613122660}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62924.45, "bidQty": 5.0, "ofr": 62924.55, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783613122820}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62926.8, "bidQty": 5.0, "ofr": 62926.9, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783613122850}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62929.2, "bidQty": 5.0, "ofr": 62929.3, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783613122870}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62930.95, "bidQty": 5.0, "ofr": 62931.05, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783613122942}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62929.25, "bidQty": 5.0, "ofr": 62929.35, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783613122982}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62926.75, "bidQty": 5.0, "ofr": 62926.85, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783613123042}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62926.85, "bidQty": 5.0, "ofr": 62926.95, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783613123112}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62925.95, "bidQty": 5.0, "ofr": 62926.05, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783613123142}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62926.45, "bidQty": 5.0, "ofr": 62926.55, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783613123163}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62926.15, "bidQty": 5.0, "ofr": 62926.25, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783613123183}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62925.65, "bidQty": 5.0, "ofr": 62925.75, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783613123233}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62920.95, "bidQty": 5.0, "ofr": 62921.05, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783613123442}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62922.6, "bidQty": 5.0, "ofr": 62922.7, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783613123534}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62929.45, "bidQty": 5.0, "ofr": 62929.55, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783613123665}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62925.8, "bidQty": 5.0, "ofr": 62925.9, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783613123795}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62923.2, "bidQty": 5.0, "ofr": 62923.3, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783613124489}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62922.05, "bidQty": 5.0, "ofr": 62922.15, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783613124588}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62923.85, "bidQty": 5.0, "ofr": 62923.95, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783613124598}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62922.55, "bidQty": 5.0, "ofr": 62922.65, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783613124618}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62923.85, "bidQty": 5.0, "ofr": 62923.95, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783613124658}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62924.05, "bidQty": 5.0, "ofr": 62924.15, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783613124698}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62923.15, "bidQty": 5.0, "ofr": 62923.25, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783613124769}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62922.15, "bidQty": 5.0, "ofr": 62922.25, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783613125105}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62926.85, "bidQty": 5.0, "ofr": 62926.95, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783613126312}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62925.55, "bidQty": 5.0, "ofr": 62925.65, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783613126343}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62925.45, "bidQty": 5.0, "ofr": 62925.55, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783613126403}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62924.75, "bidQty": 5.0, "ofr": 62924.85, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783613126523}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62924.5, "bidQty": 5.0, "ofr": 62924.6, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783613127246}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62925.15, "bidQty": 5.0, "ofr": 62925.25, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783613127435}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62923.6, "bidQty": 5.0, "ofr": 62923.7, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783613128236}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62922.95, "bidQty": 5.0, "ofr": 62923.05, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783613128569}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62920.1, "bidQty": 5.0, "ofr": 62920.2, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783613130447}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62912.7, "bidQty": 5.0, "ofr": 62912.8, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783613130617}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62921.15, "bidQty": 5.0, "ofr": 62921.25, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783613131968}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62921.55, "bidQty": 5.0, "ofr": 62921.65, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783613132017}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62922.2, "bidQty": 5.0, "ofr": 62922.3, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783613132140}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62919.15, "bidQty": 5.0, "ofr": 62919.25, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783613133026}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62919.55, "bidQty": 5.0, "ofr": 62919.65, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783613133103}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62919.65, "bidQty": 5.0, "ofr": 62919.75, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783613133396}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62920.5, "bidQty": 5.0, "ofr": 62920.6, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783613133406}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62923.1, "bidQty": 5.0, "ofr": 62923.2, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783613133934}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62934.05, "bidQty": 5.0, "ofr": 62934.15, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783613135135}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62932.25, "bidQty": 5.0, "ofr": 62932.35, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783613135315}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62931.55, "bidQty": 5.0, "ofr": 62931.65, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783613135346}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62931.7, "bidQty": 5.0, "ofr": 62931.8, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783613135426}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62931.55, "bidQty": 5.0, "ofr": 62931.65, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783613135467}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62931.75, "bidQty": 5.0, "ofr": 62931.85, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783613135520}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62931.85, "bidQty": 5.0, "ofr": 62931.95, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783613135601}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62930.85, "bidQty": 5.0, "ofr": 62930.95, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783613135812}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62931.05, "bidQty": 5.0, "ofr": 62931.15, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783613135865}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62934.7, "bidQty": 5.0, "ofr": 62934.8, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783613135875}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62934.75, "bidQty": 5.0, "ofr": 62934.85, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783613135895}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62937.5, "bidQty": 5.0, "ofr": 62937.6, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783613135955}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62939.2, "bidQty": 5.0, "ofr": 62939.3, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783613136007}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62937.15, "bidQty": 5.0, "ofr": 62937.25, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783613136077}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62938.6, "bidQty": 5.0, "ofr": 62938.7, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783613138343}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62938.75, "bidQty": 5.0, "ofr": 62938.85, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783613139713}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62939.3, "bidQty": 5.0, "ofr": 62939.4, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783613139768}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62939.85, "bidQty": 5.0, "ofr": 62939.95, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783613139842}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62941.9, "bidQty": 5.0, "ofr": 62942.0, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783613139892}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62947.15, "bidQty": 5.0, "ofr": 62947.25, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783613143087}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62946.3, "bidQty": 5.0, "ofr": 62946.4, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783613143243}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62947.45, "bidQty": 5.0, "ofr": 62947.55, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783613143871}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62947.65, "bidQty": 5.0, "ofr": 62947.75, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783613144338}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62947.55, "bidQty": 5.0, "ofr": 62947.65, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783613144605}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62947.65, "bidQty": 5.0, "ofr": 62947.75, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783613144766}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62947.45, "bidQty": 5.0, "ofr": 62947.55, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783613145038}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62947.65, "bidQty": 5.0, "ofr": 62947.75, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783613145177}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62947.45, "bidQty": 5.0, "ofr": 62947.55, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783613145461}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62947.65, "bidQty": 5.0, "ofr": 62947.75, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783613145598}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62947.45, "bidQty": 5.0, "ofr": 62947.55, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783613145864}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62947.65, "bidQty": 5.0, "ofr": 62947.75, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783613146016}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62946.35, "bidQty": 5.0, "ofr": 62946.45, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783613146105}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62945.75, "bidQty": 5.0, "ofr": 62945.85, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783613146367}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62945.95, "bidQty": 5.0, "ofr": 62946.05, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783613147041}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62948.05, "bidQty": 5.0, "ofr": 62948.15, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783613147419}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62945.55, "bidQty": 5.0, "ofr": 62945.65, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783613148493}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62941.6, "bidQty": 5.0, "ofr": 62941.7, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783613148603}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62936.7, "bidQty": 5.0, "ofr": 62936.8, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783613148734}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62939.2, "bidQty": 5.0, "ofr": 62939.3, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783613148784}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62942.55, "bidQty": 5.0, "ofr": 62942.65, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783613148825}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62944.35, "bidQty": 5.0, "ofr": 62944.45, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783613148916}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62941.25, "bidQty": 5.0, "ofr": 62941.35, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783613148946}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62932.05, "bidQty": 5.0, "ofr": 62932.15, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783613149157}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62931.35, "bidQty": 5.0, "ofr": 62931.45, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783613149166}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62931.65, "bidQty": 5.0, "ofr": 62931.75, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783613149187}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62927.4, "bidQty": 5.0, "ofr": 62927.5, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783613149477}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62932.15, "bidQty": 5.0, "ofr": 62932.25, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783613149958}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62930.8, "bidQty": 5.0, "ofr": 62930.9, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783613150105}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62934.05, "bidQty": 5.0, "ofr": 62934.15, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783613150216}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62933.05, "bidQty": 5.0, "ofr": 62933.15, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783613150276}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62932.25, "bidQty": 5.0, "ofr": 62932.35, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783613150377}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62929.3, "bidQty": 5.0, "ofr": 62929.4, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783613150397}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62923.4, "bidQty": 5.0, "ofr": 62923.5, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783613150606}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62926.35, "bidQty": 5.0, "ofr": 62926.45, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783613150816}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62927.45, "bidQty": 5.0, "ofr": 62927.55, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783613151315}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62924.95, "bidQty": 5.0, "ofr": 62925.05, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783613151415}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62914.0, "bidQty": 5.0, "ofr": 62914.1, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783613151426}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62916.85, "bidQty": 5.0, "ofr": 62916.95, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783613151536}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62917.95, "bidQty": 5.0, "ofr": 62918.05, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783613151565}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62920.05, "bidQty": 5.0, "ofr": 62920.15, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783613151952}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62919.3, "bidQty": 5.0, "ofr": 62919.4, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783613152717}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62916.65, "bidQty": 5.0, "ofr": 62916.75, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783613152787}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62915.9, "bidQty": 5.0, "ofr": 62916.0, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783613152987}, "status": "OK"}
|
||||
{"destination": "internal.quote", "payload": {"bid": 62915.7, "bidQty": 5.0, "ofr": 62915.8, "ofrQty": 5.0, "symbolName": "BTC/USD_LEVERAGE", "timestamp": 1783613153189}, "status": "OK"}
|
||||
@@ -0,0 +1,9 @@
|
||||
{
|
||||
"correlationId": "probe-market-data-subscribe",
|
||||
"destination": "marketData.subscribe",
|
||||
"payload": {
|
||||
"symbols": [
|
||||
"BTC/USD_LEVERAGE"
|
||||
]
|
||||
}
|
||||
}
|
||||
2
app/tools/dzengi_probe/stream_depth_market_data_probe.py
Normal file
2
app/tools/dzengi_probe/stream_depth_market_data_probe.py
Normal file
@@ -0,0 +1,2 @@
|
||||
# app/tools/dzengi_probe/stream_depth_market_data_probe.py
|
||||
|
||||
216
app/tools/dzengi_probe/stream_market_data_probe.py
Normal file
216
app/tools/dzengi_probe/stream_market_data_probe.py
Normal file
@@ -0,0 +1,216 @@
|
||||
# app/tools/dzengi_probe/stream_market_data_probe.py
|
||||
|
||||
from __future__ import annotations
|
||||
|
||||
import asyncio
|
||||
import json
|
||||
from dataclasses import dataclass
|
||||
from typing import Any
|
||||
|
||||
import websockets
|
||||
from websockets.typing import Subprotocol
|
||||
|
||||
from app.tools.dzengi_probe.config import DzengiProbeConfig
|
||||
from app.tools.dzengi_probe.response_store import append_jsonl, save_json
|
||||
|
||||
|
||||
MarketDataScenario = str
|
||||
|
||||
|
||||
@dataclass(frozen=True)
|
||||
class StreamProbeResult:
|
||||
stream: str
|
||||
output_file: str
|
||||
ok: bool
|
||||
messages_saved: int
|
||||
error: str | None = None
|
||||
|
||||
|
||||
class MarketDataStreamProbe:
|
||||
def __init__(self, config: DzengiProbeConfig) -> None:
|
||||
self.config = config
|
||||
|
||||
async def run(
|
||||
self,
|
||||
*,
|
||||
max_messages: int | None = 10,
|
||||
duration_seconds: int | None = None,
|
||||
scenario: MarketDataScenario = "valid",
|
||||
repeat: int = 1,
|
||||
) -> StreamProbeResult:
|
||||
output_file = (
|
||||
f"websocket/marketData.subscribe/"
|
||||
f"{self.config.symbol_file_name}.{scenario}.jsonl"
|
||||
)
|
||||
|
||||
request_file = (
|
||||
f"websocket/marketData.subscribe/"
|
||||
f"{self.config.symbol_file_name}.{scenario}.request.json"
|
||||
)
|
||||
|
||||
subscribe_message = self._build_subscribe_message(scenario)
|
||||
|
||||
save_json(self.config.output_dir / request_file, subscribe_message)
|
||||
|
||||
return await self._subscribe_and_save(
|
||||
subscribe_message=subscribe_message,
|
||||
output_file=output_file,
|
||||
max_messages=max_messages,
|
||||
duration_seconds=duration_seconds,
|
||||
repeat=repeat,
|
||||
)
|
||||
|
||||
def _build_subscribe_message(
|
||||
self,
|
||||
scenario: MarketDataScenario,
|
||||
) -> dict[str, Any]:
|
||||
if scenario == "valid":
|
||||
return {
|
||||
"correlationId": "probe-market-data-subscribe",
|
||||
"destination": "marketData.subscribe",
|
||||
"payload": {
|
||||
"symbols": [self.config.symbol],
|
||||
},
|
||||
}
|
||||
|
||||
if scenario == "invalid-symbol":
|
||||
return {
|
||||
"correlationId": "probe-market-data-invalid-symbol",
|
||||
"destination": "marketData.subscribe",
|
||||
"payload": {
|
||||
"symbols": ["INVALID/SYMBOL"],
|
||||
},
|
||||
}
|
||||
|
||||
if scenario == "empty-symbols":
|
||||
return {
|
||||
"correlationId": "probe-market-data-empty-symbols",
|
||||
"destination": "marketData.subscribe",
|
||||
"payload": {
|
||||
"symbols": [],
|
||||
},
|
||||
}
|
||||
|
||||
if scenario == "missing-symbols":
|
||||
return {
|
||||
"correlationId": "probe-market-data-missing-symbols",
|
||||
"destination": "marketData.subscribe",
|
||||
"payload": {},
|
||||
}
|
||||
|
||||
if scenario == "missing-payload":
|
||||
return {
|
||||
"correlationId": "probe-market-data-missing-payload",
|
||||
"destination": "marketData.subscribe",
|
||||
}
|
||||
|
||||
if scenario == "invalid-destination":
|
||||
return {
|
||||
"correlationId": "probe-market-data-invalid-destination",
|
||||
"destination": "invalid.subscribe",
|
||||
"payload": {
|
||||
"symbols": [self.config.symbol],
|
||||
},
|
||||
}
|
||||
|
||||
if scenario == "unsubscribe":
|
||||
return {
|
||||
"correlationId": "probe-market-data-unsubscribe",
|
||||
"destination": "marketData.unsubscribe",
|
||||
"payload": {
|
||||
"symbols": [self.config.symbol],
|
||||
},
|
||||
}
|
||||
|
||||
if scenario == "multi-symbol":
|
||||
return {
|
||||
"correlationId": "probe-market-data-multi-symbol",
|
||||
"destination": "marketData.subscribe",
|
||||
"payload": {
|
||||
"symbols": [
|
||||
"BTC/USD_LEVERAGE",
|
||||
"ETH/USD_LEVERAGE",
|
||||
],
|
||||
},
|
||||
}
|
||||
|
||||
raise ValueError(f"Unknown marketData.subscribe scenario: {scenario}")
|
||||
|
||||
async def _subscribe_and_save(
|
||||
self,
|
||||
*,
|
||||
subscribe_message: dict[str, Any],
|
||||
output_file: str,
|
||||
max_messages: int | None,
|
||||
duration_seconds: int | None,
|
||||
repeat: int,
|
||||
) -> StreamProbeResult:
|
||||
output_path = self.config.output_dir / output_file
|
||||
messages_saved = 0
|
||||
|
||||
if output_path.exists():
|
||||
output_path.unlink()
|
||||
|
||||
try:
|
||||
async with websockets.connect(
|
||||
self.config.ws_url,
|
||||
extra_headers={
|
||||
"Origin": self.config.base_url,
|
||||
"Content-Type": "application/json",
|
||||
},
|
||||
subprotocols=[Subprotocol("json")],
|
||||
ping_interval=20,
|
||||
ping_timeout=20,
|
||||
close_timeout=5,
|
||||
) as websocket:
|
||||
for index in range(repeat):
|
||||
message = dict(subscribe_message)
|
||||
message["correlationId"] = f"{subscribe_message.get('correlationId')}-{index + 1}"
|
||||
await websocket.send(json.dumps(message))
|
||||
|
||||
started_at = asyncio.get_running_loop().time()
|
||||
|
||||
while True:
|
||||
if max_messages is not None and messages_saved >= max_messages:
|
||||
break
|
||||
|
||||
if duration_seconds is not None:
|
||||
elapsed = asyncio.get_running_loop().time() - started_at
|
||||
if elapsed >= duration_seconds:
|
||||
break
|
||||
|
||||
try:
|
||||
raw_message = await asyncio.wait_for(
|
||||
websocket.recv(),
|
||||
timeout=self.config.timeout_seconds,
|
||||
)
|
||||
except asyncio.TimeoutError:
|
||||
if duration_seconds is not None:
|
||||
continue
|
||||
|
||||
raise
|
||||
|
||||
try:
|
||||
payload = json.loads(raw_message)
|
||||
except json.JSONDecodeError:
|
||||
payload = {"raw": raw_message}
|
||||
|
||||
print(payload)
|
||||
append_jsonl(output_path, payload)
|
||||
messages_saved += 1
|
||||
|
||||
return StreamProbeResult(
|
||||
stream="marketData.subscribe",
|
||||
output_file=str(output_path),
|
||||
ok=True,
|
||||
messages_saved=messages_saved,
|
||||
)
|
||||
|
||||
except Exception as exc:
|
||||
return StreamProbeResult(
|
||||
stream="marketData.subscribe",
|
||||
output_file=str(output_path),
|
||||
ok=False,
|
||||
messages_saved=messages_saved,
|
||||
error=str(exc),
|
||||
)
|
||||
2
app/tools/dzengi_probe/stream_ohlc_market_data_probe.py
Normal file
2
app/tools/dzengi_probe/stream_ohlc_market_data_probe.py
Normal file
@@ -0,0 +1,2 @@
|
||||
# app/tools/dzengi_probe/stream_ohlc_market_data_probe.py
|
||||
|
||||
2
app/tools/dzengi_probe/stream_trades_probe.py
Normal file
2
app/tools/dzengi_probe/stream_trades_probe.py
Normal file
@@ -0,0 +1,2 @@
|
||||
# app/tools/dzengi_probe/stream_trades_probe.py
|
||||
|
||||
135
app/tools/dzengi_probe/ticker24hr_update_probe.py
Normal file
135
app/tools/dzengi_probe/ticker24hr_update_probe.py
Normal file
@@ -0,0 +1,135 @@
|
||||
# app/tools/dzengi_probe/ticker24hr_update_probe.py
|
||||
|
||||
from __future__ import annotations
|
||||
|
||||
import asyncio
|
||||
import csv
|
||||
import json
|
||||
import time
|
||||
from dataclasses import dataclass
|
||||
from decimal import Decimal
|
||||
from pathlib import Path
|
||||
from urllib.parse import urlencode
|
||||
from urllib.request import Request, urlopen
|
||||
|
||||
from app.tools.dzengi_probe.config import DzengiProbeConfig
|
||||
|
||||
|
||||
@dataclass(frozen=True)
|
||||
class Ticker24hrSample:
|
||||
sample: int
|
||||
local_time_ms: int
|
||||
ask_price: str | None
|
||||
bid_price: str | None
|
||||
last_price: str | None
|
||||
close_time: int | None
|
||||
|
||||
|
||||
class Ticker24hrUpdateProbe:
|
||||
def __init__(self, config: DzengiProbeConfig) -> None:
|
||||
self.config = config
|
||||
|
||||
async def run(
|
||||
self,
|
||||
*,
|
||||
samples: int = 300,
|
||||
interval_seconds: float = 0.2,
|
||||
) -> Path:
|
||||
output_path = (
|
||||
self.config.output_dir
|
||||
/ "reports"
|
||||
/ f"ticker24hr_update_{self.config.symbol_file_name}.csv"
|
||||
)
|
||||
output_path.parent.mkdir(parents=True, exist_ok=True)
|
||||
|
||||
rows: list[Ticker24hrSample] = []
|
||||
|
||||
for index in range(1, samples + 1):
|
||||
payload = self._get_ticker24hr()
|
||||
|
||||
rows.append(
|
||||
Ticker24hrSample(
|
||||
sample=index,
|
||||
local_time_ms=int(time.time() * 1000),
|
||||
ask_price=self._decimal_str(payload.get("askPrice")),
|
||||
bid_price=self._decimal_str(payload.get("bidPrice")),
|
||||
last_price=self._decimal_str(payload.get("lastPrice")),
|
||||
close_time=self._int_or_none(payload.get("closeTime")),
|
||||
)
|
||||
)
|
||||
|
||||
await asyncio.sleep(interval_seconds)
|
||||
|
||||
self._save_csv(output_path, rows)
|
||||
return output_path
|
||||
|
||||
def _get_ticker24hr(self) -> dict:
|
||||
query = urlencode({"symbol": self.config.symbol})
|
||||
url = (
|
||||
f"{self.config.base_url}"
|
||||
f"/api/{self.config.api_version}/ticker/24hr"
|
||||
f"?{query}"
|
||||
)
|
||||
|
||||
request = Request(
|
||||
url=url,
|
||||
method="GET",
|
||||
headers={
|
||||
"Accept": "application/json",
|
||||
"User-Agent": "dzentra-dzengi-probe/1.0",
|
||||
},
|
||||
)
|
||||
|
||||
with urlopen(request, timeout=self.config.timeout_seconds) as response:
|
||||
return json.loads(response.read().decode("utf-8"))
|
||||
|
||||
def _decimal_str(self, value: object) -> str | None:
|
||||
if value is None:
|
||||
return None
|
||||
return str(Decimal(str(value)))
|
||||
|
||||
def _int_or_none(self, value: object) -> int | None:
|
||||
if value is None:
|
||||
return None
|
||||
|
||||
return int(str(value))
|
||||
|
||||
def _save_csv(self, path: Path, rows: list[Ticker24hrSample]) -> None:
|
||||
with path.open("w", encoding="utf-8", newline="") as file:
|
||||
writer = csv.writer(file)
|
||||
writer.writerow(
|
||||
[
|
||||
"sample",
|
||||
"local_time_ms",
|
||||
"close_time",
|
||||
"ask_price",
|
||||
"bid_price",
|
||||
"last_price",
|
||||
"ask_changed",
|
||||
"bid_changed",
|
||||
"last_changed",
|
||||
"close_time_changed",
|
||||
"last_equals_bid",
|
||||
]
|
||||
)
|
||||
|
||||
previous: Ticker24hrSample | None = None
|
||||
|
||||
for row in rows:
|
||||
writer.writerow(
|
||||
[
|
||||
row.sample,
|
||||
row.local_time_ms,
|
||||
row.close_time,
|
||||
row.ask_price,
|
||||
row.bid_price,
|
||||
row.last_price,
|
||||
previous is not None and row.ask_price != previous.ask_price,
|
||||
previous is not None and row.bid_price != previous.bid_price,
|
||||
previous is not None and row.last_price != previous.last_price,
|
||||
previous is not None and row.close_time != previous.close_time,
|
||||
row.last_price == row.bid_price,
|
||||
]
|
||||
)
|
||||
|
||||
previous = row
|
||||
134
app/tools/dzengi_probe/websocket_probe.py
Normal file
134
app/tools/dzengi_probe/websocket_probe.py
Normal file
@@ -0,0 +1,134 @@
|
||||
# app/tools/dzengi_probe/websocket_probe.py
|
||||
|
||||
from __future__ import annotations
|
||||
|
||||
import asyncio
|
||||
import json
|
||||
from dataclasses import dataclass
|
||||
from typing import Any
|
||||
|
||||
import websockets
|
||||
from websockets.typing import Subprotocol
|
||||
|
||||
from app.tools.dzengi_probe.config import DzengiProbeConfig
|
||||
from app.tools.dzengi_probe.response_store import append_jsonl, save_json
|
||||
|
||||
|
||||
@dataclass(frozen=True)
|
||||
class WebSocketProbeResult:
|
||||
stream: str
|
||||
output_file: str
|
||||
ok: bool
|
||||
messages_saved: int
|
||||
error: str | None = None
|
||||
|
||||
|
||||
class DzengiWebSocketProbe:
|
||||
def __init__(self, config: DzengiProbeConfig) -> None:
|
||||
self.config = config
|
||||
|
||||
async def probe_market_data(self, *, max_messages: int = 10) -> WebSocketProbeResult:
|
||||
output_file = (
|
||||
f"websocket/marketData.subscribe/"
|
||||
f"{self.config.symbol_file_name}.jsonl"
|
||||
)
|
||||
|
||||
request_file = (
|
||||
f"websocket/marketData.subscribe/"
|
||||
f"{self.config.symbol_file_name}.request.json"
|
||||
)
|
||||
|
||||
subscribe_message: dict[str, Any] = {
|
||||
"correlationId": "probe-market-data-subscribe",
|
||||
"destination": "marketData.subscribe",
|
||||
"payload": {
|
||||
"symbols": [self.config.symbol],
|
||||
},
|
||||
}
|
||||
|
||||
save_json(self.config.output_dir / request_file, subscribe_message)
|
||||
|
||||
return await self._subscribe_and_save(
|
||||
stream="marketData.subscribe",
|
||||
subscribe_message=subscribe_message,
|
||||
output_file=output_file,
|
||||
max_messages=max_messages,
|
||||
)
|
||||
|
||||
async def _subscribe_and_save(
|
||||
self,
|
||||
*,
|
||||
stream: str,
|
||||
subscribe_message: dict[str, Any],
|
||||
output_file: str,
|
||||
max_messages: int,
|
||||
) -> WebSocketProbeResult:
|
||||
output_path = self.config.output_dir / output_file
|
||||
messages_saved = 0
|
||||
|
||||
if output_path.exists():
|
||||
output_path.unlink()
|
||||
|
||||
try:
|
||||
async with websockets.connect(
|
||||
self.config.ws_url,
|
||||
extra_headers={
|
||||
"Origin": self.config.base_url,
|
||||
"Content-Type": "application/json",
|
||||
},
|
||||
subprotocols=[Subprotocol("json")],
|
||||
ping_interval=20,
|
||||
ping_timeout=20,
|
||||
close_timeout=5,
|
||||
) as websocket:
|
||||
await websocket.send(json.dumps(subscribe_message))
|
||||
|
||||
while messages_saved < max_messages:
|
||||
raw_message = await asyncio.wait_for(
|
||||
websocket.recv(),
|
||||
timeout=self.config.timeout_seconds,
|
||||
)
|
||||
|
||||
try:
|
||||
payload = json.loads(raw_message)
|
||||
except json.JSONDecodeError:
|
||||
payload = {"raw": raw_message}
|
||||
|
||||
print(payload)
|
||||
append_jsonl(output_path, payload)
|
||||
messages_saved += 1
|
||||
|
||||
return WebSocketProbeResult(
|
||||
stream=stream,
|
||||
output_file=str(output_path),
|
||||
ok=True,
|
||||
messages_saved=messages_saved,
|
||||
)
|
||||
|
||||
except Exception as exc:
|
||||
return WebSocketProbeResult(
|
||||
stream=stream,
|
||||
output_file=str(output_path),
|
||||
ok=False,
|
||||
messages_saved=messages_saved,
|
||||
error=str(exc),
|
||||
)
|
||||
|
||||
async def probe_depth_request(self) -> WebSocketProbeResult:
|
||||
output_file = f"websocket/depth/{self.config.symbol_file_name}.jsonl"
|
||||
|
||||
request_message: dict[str, Any] = {
|
||||
"correlationId": "probe-depth-request",
|
||||
"destination": f"/api/{self.config.api_version}/depth",
|
||||
"payload": {
|
||||
"symbol": self.config.symbol,
|
||||
"limit": int(self.config.depth_limit),
|
||||
},
|
||||
}
|
||||
|
||||
return await self._subscribe_and_save(
|
||||
stream="wss:/api/v1/depth",
|
||||
subscribe_message=request_message,
|
||||
output_file=output_file,
|
||||
max_messages=1,
|
||||
)
|
||||
Reference in New Issue
Block a user