{"info":{"_postman_id":"41185017-8172-4754-95e3-05337848d8d5","name":"JAYX-API","description":"<html><head></head><body><p>This is the API documentation for <a href=\"https://jayx.com\">JayX </a> If you encounter any error or need support, please contact the developer community on Telegram or Discord.</p>\n<h3 id=\"header-keys\">Header Keys</h3>\n<p>All interfaces requiring signature verification (spot account and trading part interfaces) must include the following HTTP header keys:</p>\n<ol>\n<li><p><code>JAYX-ACCESS-KEY</code> - The API Key from your JayX API page</p>\n</li>\n<li><p><code>JAYX-ACCESS-SIGN</code> - The signature of the request (see below)</p>\n</li>\n<li><p><code>JAYX-ACCESS-TIMESTAMP -</code>UTC millisecond timestamp</p>\n</li>\n</ol>\n<h4 id=\"signature-jayx-access-sign\">Signature (JAYX-ACCESS-SIGN)</h4>\n<p>The <code>JAYX-ACCESS-SIGN</code> request header is the HMAC SHA256 encryption of the string composed of <code>timestamp + method + requestPath + body (+ indicates string concatenation)</code>, signed with the secret key, encoded in base 64.</p>\n<ol>\n<li><p><strong>timestamp</strong> has the same value as the JAYX-ACCESS-TIMESTAMP request header, which is the UTC millisecond timestamp.</p>\n</li>\n<li><p><strong>method</strong> is the request method, in uppercase letters: <code>GET</code>or <code>POST</code></p>\n</li>\n<li><p><strong>requestPath</strong> is the request interface path, e.g., <code>/api/v1/trader/order</code>.</p>\n</li>\n<li><p><strong>body</strong> refers to the string of the request body. If there is no body in the request (usually for GET requests), the body can be omitted, e.g. <code>{\"symbol\":\"BTCUSDT\",\"type\":1,\"price\":\"10000\",\"amount\":\"1\",\"side\":1,\"executionType\":0}</code></p>\n</li>\n<li><p><strong>secret key</strong> is the secret key obtained from your JayX API page (you will need to create an API key pair first).</p>\n</li>\n</ol>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-javascript\">// sign.js - example script to generate a signature of the header\n// usage: node sign.js\nlet CryptoJS = require(\"crypto-js\")\nlet timestamp = new Date().getTime() //e.g. 1724316503123\nlet secretKey = \"05eyg..copy..from...api..page...4p1c2\"\nlet body = JSON.stringify({\"symbol\":\"BTCUSDT\",\"type\":1,\"price\":\"10000\",\"amount\":\"1\",\"side\":1,\"executionType\":0})\nlet signature = crypto\n      .createHmac('sha256', secretKey)\n      .update(timestamp + 'POST' + '/api/v1/trader/order' + body)\n      .digest('hex');\nconsole.log(\"Request Body: \" + body)\nconsole.log(\"JAYX-ACCESS-TIMESTAMP: \" + timestamp)\nconsole.log(\"JAYX-ACCESS-SIGN: \" + signature) // signature is 44b5c238b85034a9e08f7f77b2d2cc4263ab84591e8615b820d0f9963a5cc460\nconsole.log(\"JAYX-ACCESS-KEY: get this from your API page where you got the secret key\")\n\n</code></pre>\n<h2 id=\"common-structure-for-response\">Common Structure for Response</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"data\": {}, // data\n    \"code\": 0, // 0 means success, otherwise fail\n    \"msg\": \"\" // error information when code is not 0\n}\n\n</code></pre>\n<h2 id=\"limits\">Limits</h2>\n<p>If usage exists rate limit, users receives <code>429</code> . Repeating violation of <code>429</code> will result in an automatic ban with error code <code>418</code> with a <code>Retry-After</code> header giving the duration that the IP or user is banned in seconds. Detail info of rate limits can be found by querying the exchange info <code>/api/v1/public/exchangeInfo</code></p>\n<h3 id=\"headers\"><strong>Headers</strong></h3>\n<p>API Responses will carry the following header to give clients information on number of orders, requests and weights used so they can make sure they do not exceed the limits.</p>\n<p><code>X-ORDER-COUNT-(intervalNum)(intervalLetter)</code> - order count in this interval</p>\n<p><code>X-USED-WEIGHT-(intervalNum)(intervalLetter)</code> - weights used in this interval</p>\n<p><code>X-REQUEST-COUNT-(intervalNum)(intervalLetter)</code> - request counts in this interval</p>\n<h3 id=\"rate-limiters\"><strong>Rate Limiters</strong></h3>\n<p>There are three types of rate limits:</p>\n<ol>\n<li><p>RAW_REQUEST - the total number of requests made within the time frame defined</p>\n</li>\n<li><p>REQUEST_WEIGHT - the total weight of the requests made within the time frame defined</p>\n</li>\n<li><p>ORDER - the number of order related requests within the time frame defined</p>\n</li>\n</ol>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">// Weighted requests\n{\n      \"rateLimitType\": \"REQUEST_WEIGHT\",\n      \"interval\": \"MINUTE\",\n      \"intervalNum\": 1,\n      \"limit\": 30000\n    }\n// Order related requests\n{\n      \"rateLimitType\": \"ORDERS\",\n      \"interval\": \"SECOND\",\n      \"intervalNum\": 10,\n      \"limit\": 500\n   },\n// Raw request counts\n {\n      \"rateLimitType\": \"RAW_REQUESTS\",\n      \"interval\": \"MINUTE\",\n      \"intervalNum\": 1,\n      \"limit\": 5000\n    }\n\n</code></pre>\n</body></html>","schema":"https://schema.getpostman.com/json/collection/v2.0.0/collection.json","toc":[],"owner":"5975131","collectionId":"41185017-8172-4754-95e3-05337848d8d5","publishedId":"2sA3BuXpLQ","public":true,"customColor":{"top-bar":"FFFFFF","right-sidebar":"303030","highlight":"FF6C37"},"publishDate":"2024-04-29T15:34:41.000Z"},"item":[{"name":"Market","item":[{"name":"Test Server Connection","id":"f4c5409c-7b6c-43ad-acbd-ba09a15d3c01","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://v3api.jayxstaging.com/api/v1/public/ping","urlObject":{"path":["api","v1","public","ping"],"host":["https://v3api.jayxstaging.com"],"query":[],"variable":[]}},"response":[{"id":"bbb039ae-3cc1-4e89-aa80-73be5c6caa29","name":"success","originalRequest":{"method":"GET","header":[],"url":"https://v3api.jayxstaging.com/api/v1/public/ping"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 24 May 2024 03:03:50 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"31"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Origin"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-USED-REQUEST_WEIGHT-1MINUTE","value":"11"},{"key":"X-USED-RAW_REQUESTS-5MINUTE","value":"11"},{"key":"X-USED-ORDERS-10SECOND","value":"0"},{"key":"X-USED-ORDERS-1DAY","value":"37"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": null,\n    \"code\": 0,\n    \"msg\": \"\"\n}"}],"_postman_id":"f4c5409c-7b6c-43ad-acbd-ba09a15d3c01"},{"name":"Exchange Info","id":"05a08ba0-07dd-4243-b32b-4d95add2410b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://v3api.jayxstaging.com/api/v1/public/exchangeInfo?category=spot","description":"<h3 id=\"get-apiv1publicexchangeinfo\">GET /api/v1/public/exchangeInfo</h3>\n<p>This endpoint retrieves exchange information for the specified category.</p>\n<h4 id=\"request\">Request</h4>\n<ul>\n<li><p>Method: GET</p>\n</li>\n<li><p>URL: <code>https://v3api.jayxstaging.com/api/v1/public/exchangeInfo</code></p>\n</li>\n<li><p>Query Parameters:</p>\n<ul>\n<li>category (string, required) - The category for which exchange information is requested. value enum: (spot, perpetual)</li>\n</ul>\n</li>\n</ul>\n<h4 id=\"response\">Response</h4>\n<p>The response for this request follows the JSON schema below:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"code\": 0,\n    \"msg\": null,\n    \"data\": [\n        {\n            \"id\": 2,\n            \"matchEngine\": \"stark\",\n            \"market\": \"BELUSDT\",\n            \"baseAsset\": \"BEL\",\n            \"quoteAsset\": \"USDT\",\n            \"maxLeverage\": 20,\n            \"minAmount\": 0.0001,\n            \"makerFee\": 0.001,\n            \"takerFee\": 0.0015,\n            \"priceScale\": 0.0001,\n            \"priceScaleReciprocal\": \"10000\",\n            \"amountScale\": 0.1,\n            \"amountScaleReciprocal\": \"10\",\n            \"createTime\": \"2024-06-07T06:25:13.000+00:00\",\n            \"lastModified\": \"2024-05-12T15:33:47.000+00:00\",\n            \"marketType\": \"spot\"\n        },\n        {\n            \"id\": 3,\n            \"matchEngine\": \"stark\",\n            \"market\": \"BOMEUSDT\",\n            \"baseAsset\": \"BOME\",\n            \"quoteAsset\": \"USDT\",\n            \"maxLeverage\": 20,\n            \"minAmount\": 0.0001,\n            \"makerFee\": 0.001,\n            \"takerFee\": 0.0015,\n            \"priceScale\": 0.000001,\n            \"priceScaleReciprocal\": \"1000000\",\n            \"amountScale\": 1,\n            \"amountScaleReciprocal\": \"1\",\n            \"createTime\": \"2024-06-07T06:25:13.000+00:00\",\n            \"lastModified\": \"2024-05-12T15:23:05.000+00:00\",\n            \"marketType\": \"spot\"\n        },\n        {\n            \"id\": 4,\n            \"matchEngine\": \"stark\",\n            \"market\": \"BTCUSDT\",\n            \"baseAsset\": \"BTC\",\n            \"quoteAsset\": \"USDT\",\n            \"maxLeverage\": 20,\n            \"minAmount\": 0.0001,\n            \"makerFee\": 0.0005,\n            \"takerFee\": 0.001,\n            \"priceScale\": 0.01,\n            \"priceScaleReciprocal\": \"100\",\n            \"amountScale\": 0.00001,\n            \"amountScaleReciprocal\": \"100000\",\n            \"createTime\": \"2024-06-07T06:25:13.000+00:00\",\n            \"lastModified\": \"2024-05-06T13:41:47.000+00:00\",\n            \"marketType\": \"spot\"\n        },\n        {\n            \"id\": 5,\n            \"matchEngine\": \"stark\",\n            \"market\": \"CVXUSDT\",\n            \"baseAsset\": \"CVX\",\n            \"quoteAsset\": \"USDT\",\n            \"maxLeverage\": 20,\n            \"minAmount\": 0.0001,\n            \"makerFee\": 0.001,\n            \"takerFee\": 0.0015,\n            \"priceScale\": 0.001,\n            \"priceScaleReciprocal\": \"1000\",\n            \"amountScale\": 0.001,\n            \"amountScaleReciprocal\": \"1000\",\n            \"createTime\": \"2024-06-07T06:25:13.000+00:00\",\n            \"lastModified\": \"2024-05-12T15:13:32.000+00:00\",\n            \"marketType\": \"spot\"\n        },\n        {\n            \"id\": 6,\n            \"matchEngine\": \"stark\",\n            \"market\": \"DOGEUSDT\",\n            \"baseAsset\": \"DOGE\",\n            \"quoteAsset\": \"USDT\",\n            \"maxLeverage\": 20,\n            \"minAmount\": 0.0001,\n            \"makerFee\": 0.001,\n            \"takerFee\": 0.0015,\n            \"priceScale\": 0.00001,\n            \"priceScaleReciprocal\": \"100000\",\n            \"amountScale\": 1,\n            \"amountScaleReciprocal\": \"1\",\n            \"createTime\": \"2024-06-07T06:25:13.000+00:00\",\n            \"lastModified\": \"2024-05-10T15:36:06.000+00:00\",\n            \"marketType\": \"spot\"\n        },\n        {\n            \"id\": 7,\n            \"matchEngine\": \"stark\",\n            \"market\": \"ENAUSDT\",\n            \"baseAsset\": \"ENA\",\n            \"quoteAsset\": \"USDT\",\n            \"maxLeverage\": 20,\n            \"minAmount\": 0.0001,\n            \"makerFee\": 0.001,\n            \"takerFee\": 0.0015,\n            \"priceScale\": 0.001,\n            \"priceScaleReciprocal\": \"1000\",\n            \"amountScale\": 0.01,\n            \"amountScaleReciprocal\": \"100\",\n            \"createTime\": \"2024-06-07T06:25:13.000+00:00\",\n            \"lastModified\": \"2024-05-10T15:43:33.000+00:00\",\n            \"marketType\": \"spot\"\n        },\n        {\n            \"id\": 8,\n            \"matchEngine\": \"stark\",\n            \"market\": \"ERNUSDT\",\n            \"baseAsset\": \"ERN\",\n            \"quoteAsset\": \"USDT\",\n            \"maxLeverage\": 20,\n            \"minAmount\": 0.0001,\n            \"makerFee\": 0.001,\n            \"takerFee\": 0.0015,\n            \"priceScale\": 0.001,\n            \"priceScaleReciprocal\": \"1000\",\n            \"amountScale\": 0.1,\n            \"amountScaleReciprocal\": \"10\",\n            \"createTime\": \"2024-06-07T06:25:13.000+00:00\",\n            \"lastModified\": \"2024-05-12T15:06:29.000+00:00\",\n            \"marketType\": \"spot\"\n        },\n        {\n            \"id\": 9,\n            \"matchEngine\": \"stark\",\n            \"market\": \"ETCUSDT\",\n            \"baseAsset\": \"ETC\",\n            \"quoteAsset\": \"USDT\",\n            \"maxLeverage\": 20,\n            \"minAmount\": 0.0001,\n            \"makerFee\": 0,\n            \"takerFee\": 0,\n            \"priceScale\": 0.01,\n            \"priceScaleReciprocal\": \"100\",\n            \"amountScale\": 0.01,\n            \"amountScaleReciprocal\": \"100\",\n            \"createTime\": \"2024-06-07T06:25:13.000+00:00\",\n            \"lastModified\": \"2024-05-06T14:51:31.000+00:00\",\n            \"marketType\": \"spot\"\n        },\n        {\n            \"id\": 10,\n            \"matchEngine\": \"stark\",\n            \"market\": \"ETHUSDT\",\n            \"baseAsset\": \"ETH\",\n            \"quoteAsset\": \"USDT\",\n            \"maxLeverage\": 20,\n            \"minAmount\": 0.0001,\n            \"makerFee\": 0.0005,\n            \"takerFee\": 0.001,\n            \"priceScale\": 0.01,\n            \"priceScaleReciprocal\": \"100\",\n            \"amountScale\": 0.0001,\n            \"amountScaleReciprocal\": \"10000\",\n            \"createTime\": \"2024-06-07T06:25:13.000+00:00\",\n            \"lastModified\": \"2024-05-06T14:47:59.000+00:00\",\n            \"marketType\": \"spot\"\n        },\n        {\n            \"id\": 11,\n            \"matchEngine\": \"stark\",\n            \"market\": \"FARMUSDT\",\n            \"baseAsset\": \"FARM\",\n            \"quoteAsset\": \"USDT\",\n            \"maxLeverage\": 20,\n            \"minAmount\": 0.0001,\n            \"makerFee\": 0.001,\n            \"takerFee\": 0.0015,\n            \"priceScale\": 0.01,\n            \"priceScaleReciprocal\": \"100\",\n            \"amountScale\": 0.001,\n            \"amountScaleReciprocal\": \"1000\",\n            \"createTime\": \"2024-06-07T06:25:13.000+00:00\",\n            \"lastModified\": \"2024-05-10T15:53:18.000+00:00\",\n            \"marketType\": \"spot\"\n        },\n        {\n            \"id\": 12,\n            \"matchEngine\": \"stark\",\n            \"market\": \"FRONTUSDT\",\n            \"baseAsset\": \"FRONT\",\n            \"quoteAsset\": \"USDT\",\n            \"maxLeverage\": 20,\n            \"minAmount\": 0.0001,\n            \"makerFee\": 0.001,\n            \"takerFee\": 0.0015,\n            \"priceScale\": 0.0001,\n            \"priceScaleReciprocal\": \"10000\",\n            \"amountScale\": 1,\n            \"amountScaleReciprocal\": \"1\",\n            \"createTime\": \"2024-06-07T06:25:13.000+00:00\",\n            \"lastModified\": \"2024-05-08T09:00:23.000+00:00\",\n            \"marketType\": \"spot\"\n        },\n        {\n            \"id\": 13,\n            \"matchEngine\": \"stark\",\n            \"market\": \"FTTUSDT\",\n            \"baseAsset\": \"FTT\",\n            \"quoteAsset\": \"USDT\",\n            \"maxLeverage\": 20,\n            \"minAmount\": 0.0001,\n            \"makerFee\": 0.001,\n            \"takerFee\": 0.0015,\n            \"priceScale\": 0.0001,\n            \"priceScaleReciprocal\": \"10000\",\n            \"amountScale\": 0.01,\n            \"amountScaleReciprocal\": \"100\",\n            \"createTime\": \"2024-06-07T06:25:13.000+00:00\",\n            \"lastModified\": \"2024-05-08T08:23:08.000+00:00\",\n            \"marketType\": \"spot\"\n        },\n        {\n            \"id\": 14,\n            \"matchEngine\": \"stark\",\n            \"market\": \"LUNAUSDT\",\n            \"baseAsset\": \"LUNA\",\n            \"quoteAsset\": \"USDT\",\n            \"maxLeverage\": 20,\n            \"minAmount\": 0.0001,\n            \"makerFee\": 0.001,\n            \"takerFee\": 0.0015,\n            \"priceScale\": 0.0001,\n            \"priceScaleReciprocal\": \"10000\",\n            \"amountScale\": 0.01,\n            \"amountScaleReciprocal\": \"100\",\n            \"createTime\": \"2024-06-07T06:25:13.000+00:00\",\n            \"lastModified\": \"2024-05-12T15:16:34.000+00:00\",\n            \"marketType\": \"spot\"\n        },\n        {\n            \"id\": 15,\n            \"matchEngine\": \"stark\",\n            \"market\": \"ORNUSDT\",\n            \"baseAsset\": \"ORN\",\n            \"quoteAsset\": \"USDT\",\n            \"maxLeverage\": 20,\n            \"minAmount\": 0.0001,\n            \"makerFee\": 0.001,\n            \"takerFee\": 0.0015,\n            \"priceScale\": 0.0001,\n            \"priceScaleReciprocal\": \"10000\",\n            \"amountScale\": 0.1,\n            \"amountScaleReciprocal\": \"10\",\n            \"createTime\": \"2024-06-07T06:25:13.000+00:00\",\n            \"lastModified\": \"2024-05-12T15:37:40.000+00:00\",\n            \"marketType\": \"spot\"\n        },\n        {\n            \"id\": 16,\n            \"matchEngine\": \"stark\",\n            \"market\": \"PEOPLEUSDT\",\n            \"baseAsset\": \"PEOPLE\",\n            \"quoteAsset\": \"USDT\",\n            \"maxLeverage\": 20,\n            \"minAmount\": 0.0001,\n            \"makerFee\": 0.001,\n            \"takerFee\": 0.0015,\n            \"priceScale\": 0.00001,\n            \"priceScaleReciprocal\": \"100000\",\n            \"amountScale\": 0.1,\n            \"amountScaleReciprocal\": \"10\",\n            \"createTime\": \"2024-06-07T06:25:13.000+00:00\",\n            \"lastModified\": \"2024-05-12T15:30:00.000+00:00\",\n            \"marketType\": \"spot\"\n        },\n        {\n            \"id\": 17,\n            \"matchEngine\": \"stark\",\n            \"market\": \"PEPEUSDT\",\n            \"baseAsset\": \"PEPE\",\n            \"quoteAsset\": \"USDT\",\n            \"maxLeverage\": 20,\n            \"minAmount\": 0.0001,\n            \"makerFee\": 0.001,\n            \"takerFee\": 0.0015,\n            \"priceScale\": 1e-8,\n            \"priceScaleReciprocal\": \"100000000\",\n            \"amountScale\": 1,\n            \"amountScaleReciprocal\": \"1\",\n            \"createTime\": \"2024-06-07T06:25:13.000+00:00\",\n            \"lastModified\": \"2024-05-09T01:56:55.000+00:00\",\n            \"marketType\": \"spot\"\n        },\n        {\n            \"id\": 18,\n            \"matchEngine\": \"stark\",\n            \"market\": \"SOLUSDT\",\n            \"baseAsset\": \"SOL\",\n            \"quoteAsset\": \"USDT\",\n            \"maxLeverage\": 20,\n            \"minAmount\": 0.0001,\n            \"makerFee\": 0.001,\n            \"takerFee\": 0.0015,\n            \"priceScale\": 0.01,\n            \"priceScaleReciprocal\": \"100\",\n            \"amountScale\": 0.001,\n            \"amountScaleReciprocal\": \"1000\",\n            \"createTime\": \"2024-06-07T06:25:13.000+00:00\",\n            \"lastModified\": \"2024-05-09T01:48:35.000+00:00\",\n            \"marketType\": \"spot\"\n        },\n        {\n            \"id\": 19,\n            \"matchEngine\": \"stark\",\n            \"market\": \"TRBUSDT\",\n            \"baseAsset\": \"TRB\",\n            \"quoteAsset\": \"USDT\",\n            \"maxLeverage\": 20,\n            \"minAmount\": 0.0001,\n            \"makerFee\": 0.001,\n            \"takerFee\": 0.0015,\n            \"priceScale\": 0.01,\n            \"priceScaleReciprocal\": \"100\",\n            \"amountScale\": 0.01,\n            \"amountScaleReciprocal\": \"100\",\n            \"createTime\": \"2024-06-07T06:25:13.000+00:00\",\n            \"lastModified\": \"2024-05-08T08:53:24.000+00:00\",\n            \"marketType\": \"spot\"\n        },\n        {\n            \"id\": 20,\n            \"matchEngine\": \"stark02\",\n            \"market\": \"TRXUSDT\",\n            \"baseAsset\": \"TRX\",\n            \"quoteAsset\": \"USDT\",\n            \"maxLeverage\": 20,\n            \"minAmount\": 0.0001,\n            \"makerFee\": 0,\n            \"takerFee\": 0,\n            \"priceScale\": 0.00001,\n            \"priceScaleReciprocal\": \"100000\",\n            \"amountScale\": 0.1,\n            \"amountScaleReciprocal\": \"10\",\n            \"createTime\": \"2024-06-07T06:25:13.000+00:00\",\n            \"lastModified\": \"2024-05-06T14:55:03.000+00:00\",\n            \"marketType\": \"spot\"\n        },\n        {\n            \"id\": 21,\n            \"matchEngine\": \"stark\",\n            \"market\": \"UNFIUSDT\",\n            \"baseAsset\": \"UNFI\",\n            \"quoteAsset\": \"USDT\",\n            \"maxLeverage\": 20,\n            \"minAmount\": 0.0001,\n            \"makerFee\": 0.001,\n            \"takerFee\": 0.0015,\n            \"priceScale\": 0.001,\n            \"priceScaleReciprocal\": \"1000\",\n            \"amountScale\": 0.1,\n            \"amountScaleReciprocal\": \"10\",\n            \"createTime\": \"2024-06-07T06:25:13.000+00:00\",\n            \"lastModified\": \"2024-05-10T05:41:51.000+00:00\",\n            \"marketType\": \"spot\"\n        },\n        {\n            \"id\": 22,\n            \"matchEngine\": \"stark\",\n            \"market\": \"USDTFTT\",\n            \"baseAsset\": \"USDT\",\n            \"quoteAsset\": \"FTT\",\n            \"maxLeverage\": 20,\n            \"minAmount\": 0.0001,\n            \"makerFee\": 0.001,\n            \"takerFee\": 0.0015,\n            \"priceScale\": 0.0001,\n            \"priceScaleReciprocal\": \"10000\",\n            \"amountScale\": 0.01,\n            \"amountScaleReciprocal\": \"100\",\n            \"createTime\": \"2024-06-07T06:25:13.000+00:00\",\n            \"lastModified\": \"2024-05-08T08:20:01.000+00:00\",\n            \"marketType\": \"spot\"\n        },\n        {\n            \"id\": 23,\n            \"matchEngine\": \"stark\",\n            \"market\": \"WIFUSDT\",\n            \"baseAsset\": \"WIF\",\n            \"quoteAsset\": \"USDT\",\n            \"maxLeverage\": 20,\n            \"minAmount\": 0.0001,\n            \"makerFee\": 0.001,\n            \"takerFee\": 0.0015,\n            \"priceScale\": 0.0001,\n            \"priceScaleReciprocal\": \"10000\",\n            \"amountScale\": 0.01,\n            \"amountScaleReciprocal\": \"100\",\n            \"createTime\": \"2024-06-07T06:25:13.000+00:00\",\n            \"lastModified\": \"2024-05-09T01:59:27.000+00:00\",\n            \"marketType\": \"spot\"\n        },\n        {\n            \"id\": 24,\n            \"matchEngine\": \"stark\",\n            \"market\": \"WLDUSDT\",\n            \"baseAsset\": \"WLD\",\n            \"quoteAsset\": \"USDT\",\n            \"maxLeverage\": 20,\n            \"minAmount\": 0.0001,\n            \"makerFee\": 0.001,\n            \"takerFee\": 0.0015,\n            \"priceScale\": 0.001,\n            \"priceScaleReciprocal\": \"1000\",\n            \"amountScale\": 0.1,\n            \"amountScaleReciprocal\": \"10\",\n            \"createTime\": \"2024-06-07T06:25:13.000+00:00\",\n            \"lastModified\": \"2024-05-12T15:20:38.000+00:00\",\n            \"marketType\": \"spot\"\n        }\n    ]\n}\n\n</code></pre>\n","urlObject":{"path":["api","v1","public","exchangeInfo"],"host":["https://v3api.jayxstaging.com"],"query":[{"description":{"content":"<p>spot、perpetual</p>\n","type":"text/plain"},"key":"category","value":"spot"}],"variable":[]}},"response":[{"id":"cd913ecc-3447-41f2-ab7d-cf0e71424227","name":"success","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://v3api.jayxstaging.com/api/v1/public/exchangeInfo?category=spot","host":["https://v3api.jayxstaging.com"],"path":["api","v1","public","exchangeInfo"],"query":[{"key":"category","value":"spot","description":"spot、perpetual"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Vary","value":"Origin"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-USED-REQUEST_WEIGHT-1MINUTE","value":"10"},{"key":"X-USED-RAW_REQUESTS-1MINUTE","value":"2"},{"key":"X-USED-ORDERS-10SECOND","value":"0"},{"key":"X-USED-ORDERS-1DAY","value":"0"},{"key":"Content-Type","value":"application/json","description":"","type":"text"},{"key":"Content-Length","value":"10201"},{"key":"Date","value":"Wed, 21 Aug 2024 04:15:24 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"code\": 0,\n    \"msg\": null,\n    \"data\": [\n        {\n            \"id\": 2,\n            \"matchEngine\": \"stark\",\n            \"market\": \"BELUSDT\",\n            \"baseAsset\": \"BEL\",\n            \"quoteAsset\": \"USDT\",\n            \"maxLeverage\": 20,\n            \"minAmount\": 0.0001,\n            \"makerFee\": 0.001,\n            \"takerFee\": 0.0015,\n            \"priceScale\": 0.0001,\n            \"priceScaleReciprocal\": \"10000\",\n            \"amountScale\": 0.1,\n            \"amountScaleReciprocal\": \"10\",\n            \"createTime\": \"2024-06-07T06:25:13.000+00:00\",\n            \"lastModified\": \"2024-05-12T15:33:47.000+00:00\",\n            \"marketType\": \"spot\"\n        },\n        {\n            \"id\": 3,\n            \"matchEngine\": \"stark\",\n            \"market\": \"BOMEUSDT\",\n            \"baseAsset\": \"BOME\",\n            \"quoteAsset\": \"USDT\",\n            \"maxLeverage\": 20,\n            \"minAmount\": 0.0001,\n            \"makerFee\": 0.001,\n            \"takerFee\": 0.0015,\n            \"priceScale\": 0.000001,\n            \"priceScaleReciprocal\": \"1000000\",\n            \"amountScale\": 1,\n            \"amountScaleReciprocal\": \"1\",\n            \"createTime\": \"2024-06-07T06:25:13.000+00:00\",\n            \"lastModified\": \"2024-05-12T15:23:05.000+00:00\",\n            \"marketType\": \"spot\"\n        },\n        {\n            \"id\": 4,\n            \"matchEngine\": \"stark\",\n            \"market\": \"BTCUSDT\",\n            \"baseAsset\": \"BTC\",\n            \"quoteAsset\": \"USDT\",\n            \"maxLeverage\": 20,\n            \"minAmount\": 0.0001,\n            \"makerFee\": 0.0005,\n            \"takerFee\": 0.001,\n            \"priceScale\": 0.01,\n            \"priceScaleReciprocal\": \"100\",\n            \"amountScale\": 0.00001,\n            \"amountScaleReciprocal\": \"100000\",\n            \"createTime\": \"2024-06-07T06:25:13.000+00:00\",\n            \"lastModified\": \"2024-05-06T13:41:47.000+00:00\",\n            \"marketType\": \"spot\"\n        },\n        {\n            \"id\": 5,\n            \"matchEngine\": \"stark\",\n            \"market\": \"CVXUSDT\",\n            \"baseAsset\": \"CVX\",\n            \"quoteAsset\": \"USDT\",\n            \"maxLeverage\": 20,\n            \"minAmount\": 0.0001,\n            \"makerFee\": 0.001,\n            \"takerFee\": 0.0015,\n            \"priceScale\": 0.001,\n            \"priceScaleReciprocal\": \"1000\",\n            \"amountScale\": 0.001,\n            \"amountScaleReciprocal\": \"1000\",\n            \"createTime\": \"2024-06-07T06:25:13.000+00:00\",\n            \"lastModified\": \"2024-05-12T15:13:32.000+00:00\",\n            \"marketType\": \"spot\"\n        },\n        {\n            \"id\": 6,\n            \"matchEngine\": \"stark\",\n            \"market\": \"DOGEUSDT\",\n            \"baseAsset\": \"DOGE\",\n            \"quoteAsset\": \"USDT\",\n            \"maxLeverage\": 20,\n            \"minAmount\": 0.0001,\n            \"makerFee\": 0.001,\n            \"takerFee\": 0.0015,\n            \"priceScale\": 0.00001,\n            \"priceScaleReciprocal\": \"100000\",\n            \"amountScale\": 1,\n            \"amountScaleReciprocal\": \"1\",\n            \"createTime\": \"2024-06-07T06:25:13.000+00:00\",\n            \"lastModified\": \"2024-05-10T15:36:06.000+00:00\",\n            \"marketType\": \"spot\"\n        },\n        {\n            \"id\": 7,\n            \"matchEngine\": \"stark\",\n            \"market\": \"ENAUSDT\",\n            \"baseAsset\": \"ENA\",\n            \"quoteAsset\": \"USDT\",\n            \"maxLeverage\": 20,\n            \"minAmount\": 0.0001,\n            \"makerFee\": 0.001,\n            \"takerFee\": 0.0015,\n            \"priceScale\": 0.001,\n            \"priceScaleReciprocal\": \"1000\",\n            \"amountScale\": 0.01,\n            \"amountScaleReciprocal\": \"100\",\n            \"createTime\": \"2024-06-07T06:25:13.000+00:00\",\n            \"lastModified\": \"2024-05-10T15:43:33.000+00:00\",\n            \"marketType\": \"spot\"\n        },\n        {\n            \"id\": 8,\n            \"matchEngine\": \"stark\",\n            \"market\": \"ERNUSDT\",\n            \"baseAsset\": \"ERN\",\n            \"quoteAsset\": \"USDT\",\n            \"maxLeverage\": 20,\n            \"minAmount\": 0.0001,\n            \"makerFee\": 0.001,\n            \"takerFee\": 0.0015,\n            \"priceScale\": 0.001,\n            \"priceScaleReciprocal\": \"1000\",\n            \"amountScale\": 0.1,\n            \"amountScaleReciprocal\": \"10\",\n            \"createTime\": \"2024-06-07T06:25:13.000+00:00\",\n            \"lastModified\": \"2024-05-12T15:06:29.000+00:00\",\n            \"marketType\": \"spot\"\n        },\n        {\n            \"id\": 9,\n            \"matchEngine\": \"stark\",\n            \"market\": \"ETCUSDT\",\n            \"baseAsset\": \"ETC\",\n            \"quoteAsset\": \"USDT\",\n            \"maxLeverage\": 20,\n            \"minAmount\": 0.0001,\n            \"makerFee\": 0,\n            \"takerFee\": 0,\n            \"priceScale\": 0.01,\n            \"priceScaleReciprocal\": \"100\",\n            \"amountScale\": 0.01,\n            \"amountScaleReciprocal\": \"100\",\n            \"createTime\": \"2024-06-07T06:25:13.000+00:00\",\n            \"lastModified\": \"2024-05-06T14:51:31.000+00:00\",\n            \"marketType\": \"spot\"\n        },\n        {\n            \"id\": 10,\n            \"matchEngine\": \"stark\",\n            \"market\": \"ETHUSDT\",\n            \"baseAsset\": \"ETH\",\n            \"quoteAsset\": \"USDT\",\n            \"maxLeverage\": 20,\n            \"minAmount\": 0.0001,\n            \"makerFee\": 0.0005,\n            \"takerFee\": 0.001,\n            \"priceScale\": 0.01,\n            \"priceScaleReciprocal\": \"100\",\n            \"amountScale\": 0.0001,\n            \"amountScaleReciprocal\": \"10000\",\n            \"createTime\": \"2024-06-07T06:25:13.000+00:00\",\n            \"lastModified\": \"2024-05-06T14:47:59.000+00:00\",\n            \"marketType\": \"spot\"\n        },\n        {\n            \"id\": 11,\n            \"matchEngine\": \"stark\",\n            \"market\": \"FARMUSDT\",\n            \"baseAsset\": \"FARM\",\n            \"quoteAsset\": \"USDT\",\n            \"maxLeverage\": 20,\n            \"minAmount\": 0.0001,\n            \"makerFee\": 0.001,\n            \"takerFee\": 0.0015,\n            \"priceScale\": 0.01,\n            \"priceScaleReciprocal\": \"100\",\n            \"amountScale\": 0.001,\n            \"amountScaleReciprocal\": \"1000\",\n            \"createTime\": \"2024-06-07T06:25:13.000+00:00\",\n            \"lastModified\": \"2024-05-10T15:53:18.000+00:00\",\n            \"marketType\": \"spot\"\n        },\n        {\n            \"id\": 12,\n            \"matchEngine\": \"stark\",\n            \"market\": \"FRONTUSDT\",\n            \"baseAsset\": \"FRONT\",\n            \"quoteAsset\": \"USDT\",\n            \"maxLeverage\": 20,\n            \"minAmount\": 0.0001,\n            \"makerFee\": 0.001,\n            \"takerFee\": 0.0015,\n            \"priceScale\": 0.0001,\n            \"priceScaleReciprocal\": \"10000\",\n            \"amountScale\": 1,\n            \"amountScaleReciprocal\": \"1\",\n            \"createTime\": \"2024-06-07T06:25:13.000+00:00\",\n            \"lastModified\": \"2024-05-08T09:00:23.000+00:00\",\n            \"marketType\": \"spot\"\n        },\n        {\n            \"id\": 13,\n            \"matchEngine\": \"stark\",\n            \"market\": \"FTTUSDT\",\n            \"baseAsset\": \"FTT\",\n            \"quoteAsset\": \"USDT\",\n            \"maxLeverage\": 20,\n            \"minAmount\": 0.0001,\n            \"makerFee\": 0.001,\n            \"takerFee\": 0.0015,\n            \"priceScale\": 0.0001,\n            \"priceScaleReciprocal\": \"10000\",\n            \"amountScale\": 0.01,\n            \"amountScaleReciprocal\": \"100\",\n            \"createTime\": \"2024-06-07T06:25:13.000+00:00\",\n            \"lastModified\": \"2024-05-08T08:23:08.000+00:00\",\n            \"marketType\": \"spot\"\n        },\n        {\n            \"id\": 14,\n            \"matchEngine\": \"stark\",\n            \"market\": \"LUNAUSDT\",\n            \"baseAsset\": \"LUNA\",\n            \"quoteAsset\": \"USDT\",\n            \"maxLeverage\": 20,\n            \"minAmount\": 0.0001,\n            \"makerFee\": 0.001,\n            \"takerFee\": 0.0015,\n            \"priceScale\": 0.0001,\n            \"priceScaleReciprocal\": \"10000\",\n            \"amountScale\": 0.01,\n            \"amountScaleReciprocal\": \"100\",\n            \"createTime\": \"2024-06-07T06:25:13.000+00:00\",\n            \"lastModified\": \"2024-05-12T15:16:34.000+00:00\",\n            \"marketType\": \"spot\"\n        },\n        {\n            \"id\": 15,\n            \"matchEngine\": \"stark\",\n            \"market\": \"ORNUSDT\",\n            \"baseAsset\": \"ORN\",\n            \"quoteAsset\": \"USDT\",\n            \"maxLeverage\": 20,\n            \"minAmount\": 0.0001,\n            \"makerFee\": 0.001,\n            \"takerFee\": 0.0015,\n            \"priceScale\": 0.0001,\n            \"priceScaleReciprocal\": \"10000\",\n            \"amountScale\": 0.1,\n            \"amountScaleReciprocal\": \"10\",\n            \"createTime\": \"2024-06-07T06:25:13.000+00:00\",\n            \"lastModified\": \"2024-05-12T15:37:40.000+00:00\",\n            \"marketType\": \"spot\"\n        },\n        {\n            \"id\": 16,\n            \"matchEngine\": \"stark\",\n            \"market\": \"PEOPLEUSDT\",\n            \"baseAsset\": \"PEOPLE\",\n            \"quoteAsset\": \"USDT\",\n            \"maxLeverage\": 20,\n            \"minAmount\": 0.0001,\n            \"makerFee\": 0.001,\n            \"takerFee\": 0.0015,\n            \"priceScale\": 0.00001,\n            \"priceScaleReciprocal\": \"100000\",\n            \"amountScale\": 0.1,\n            \"amountScaleReciprocal\": \"10\",\n            \"createTime\": \"2024-06-07T06:25:13.000+00:00\",\n            \"lastModified\": \"2024-05-12T15:30:00.000+00:00\",\n            \"marketType\": \"spot\"\n        },\n        {\n            \"id\": 17,\n            \"matchEngine\": \"stark\",\n            \"market\": \"PEPEUSDT\",\n            \"baseAsset\": \"PEPE\",\n            \"quoteAsset\": \"USDT\",\n            \"maxLeverage\": 20,\n            \"minAmount\": 0.0001,\n            \"makerFee\": 0.001,\n            \"takerFee\": 0.0015,\n            \"priceScale\": 1e-8,\n            \"priceScaleReciprocal\": \"100000000\",\n            \"amountScale\": 1,\n            \"amountScaleReciprocal\": \"1\",\n            \"createTime\": \"2024-06-07T06:25:13.000+00:00\",\n            \"lastModified\": \"2024-05-09T01:56:55.000+00:00\",\n            \"marketType\": \"spot\"\n        },\n        {\n            \"id\": 18,\n            \"matchEngine\": \"stark\",\n            \"market\": \"SOLUSDT\",\n            \"baseAsset\": \"SOL\",\n            \"quoteAsset\": \"USDT\",\n            \"maxLeverage\": 20,\n            \"minAmount\": 0.0001,\n            \"makerFee\": 0.001,\n            \"takerFee\": 0.0015,\n            \"priceScale\": 0.01,\n            \"priceScaleReciprocal\": \"100\",\n            \"amountScale\": 0.001,\n            \"amountScaleReciprocal\": \"1000\",\n            \"createTime\": \"2024-06-07T06:25:13.000+00:00\",\n            \"lastModified\": \"2024-05-09T01:48:35.000+00:00\",\n            \"marketType\": \"spot\"\n        },\n        {\n            \"id\": 19,\n            \"matchEngine\": \"stark\",\n            \"market\": \"TRBUSDT\",\n            \"baseAsset\": \"TRB\",\n            \"quoteAsset\": \"USDT\",\n            \"maxLeverage\": 20,\n            \"minAmount\": 0.0001,\n            \"makerFee\": 0.001,\n            \"takerFee\": 0.0015,\n            \"priceScale\": 0.01,\n            \"priceScaleReciprocal\": \"100\",\n            \"amountScale\": 0.01,\n            \"amountScaleReciprocal\": \"100\",\n            \"createTime\": \"2024-06-07T06:25:13.000+00:00\",\n            \"lastModified\": \"2024-05-08T08:53:24.000+00:00\",\n            \"marketType\": \"spot\"\n        },\n        {\n            \"id\": 20,\n            \"matchEngine\": \"stark02\",\n            \"market\": \"TRXUSDT\",\n            \"baseAsset\": \"TRX\",\n            \"quoteAsset\": \"USDT\",\n            \"maxLeverage\": 20,\n            \"minAmount\": 0.0001,\n            \"makerFee\": 0,\n            \"takerFee\": 0,\n            \"priceScale\": 0.00001,\n            \"priceScaleReciprocal\": \"100000\",\n            \"amountScale\": 0.1,\n            \"amountScaleReciprocal\": \"10\",\n            \"createTime\": \"2024-06-07T06:25:13.000+00:00\",\n            \"lastModified\": \"2024-05-06T14:55:03.000+00:00\",\n            \"marketType\": \"spot\"\n        },\n        {\n            \"id\": 21,\n            \"matchEngine\": \"stark\",\n            \"market\": \"UNFIUSDT\",\n            \"baseAsset\": \"UNFI\",\n            \"quoteAsset\": \"USDT\",\n            \"maxLeverage\": 20,\n            \"minAmount\": 0.0001,\n            \"makerFee\": 0.001,\n            \"takerFee\": 0.0015,\n            \"priceScale\": 0.001,\n            \"priceScaleReciprocal\": \"1000\",\n            \"amountScale\": 0.1,\n            \"amountScaleReciprocal\": \"10\",\n            \"createTime\": \"2024-06-07T06:25:13.000+00:00\",\n            \"lastModified\": \"2024-05-10T05:41:51.000+00:00\",\n            \"marketType\": \"spot\"\n        },\n        {\n            \"id\": 22,\n            \"matchEngine\": \"stark\",\n            \"market\": \"USDTFTT\",\n            \"baseAsset\": \"USDT\",\n            \"quoteAsset\": \"FTT\",\n            \"maxLeverage\": 20,\n            \"minAmount\": 0.0001,\n            \"makerFee\": 0.001,\n            \"takerFee\": 0.0015,\n            \"priceScale\": 0.0001,\n            \"priceScaleReciprocal\": \"10000\",\n            \"amountScale\": 0.01,\n            \"amountScaleReciprocal\": \"100\",\n            \"createTime\": \"2024-06-07T06:25:13.000+00:00\",\n            \"lastModified\": \"2024-05-08T08:20:01.000+00:00\",\n            \"marketType\": \"spot\"\n        },\n        {\n            \"id\": 23,\n            \"matchEngine\": \"stark\",\n            \"market\": \"WIFUSDT\",\n            \"baseAsset\": \"WIF\",\n            \"quoteAsset\": \"USDT\",\n            \"maxLeverage\": 20,\n            \"minAmount\": 0.0001,\n            \"makerFee\": 0.001,\n            \"takerFee\": 0.0015,\n            \"priceScale\": 0.0001,\n            \"priceScaleReciprocal\": \"10000\",\n            \"amountScale\": 0.01,\n            \"amountScaleReciprocal\": \"100\",\n            \"createTime\": \"2024-06-07T06:25:13.000+00:00\",\n            \"lastModified\": \"2024-05-09T01:59:27.000+00:00\",\n            \"marketType\": \"spot\"\n        },\n        {\n            \"id\": 24,\n            \"matchEngine\": \"stark\",\n            \"market\": \"WLDUSDT\",\n            \"baseAsset\": \"WLD\",\n            \"quoteAsset\": \"USDT\",\n            \"maxLeverage\": 20,\n            \"minAmount\": 0.0001,\n            \"makerFee\": 0.001,\n            \"takerFee\": 0.0015,\n            \"priceScale\": 0.001,\n            \"priceScaleReciprocal\": \"1000\",\n            \"amountScale\": 0.1,\n            \"amountScaleReciprocal\": \"10\",\n            \"createTime\": \"2024-06-07T06:25:13.000+00:00\",\n            \"lastModified\": \"2024-05-12T15:20:38.000+00:00\",\n            \"marketType\": \"spot\"\n        }\n    ]\n}"}],"_postman_id":"05a08ba0-07dd-4243-b32b-4d95add2410b"},{"name":"Latest Prices of All Symbols","id":"e3529a41-24ea-435c-a164-d7b7e60f178c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://v3api.jayxstaging.com/api/v1/public/tickers?category=spot","urlObject":{"path":["api","v1","public","tickers"],"host":["https://v3api.jayxstaging.com"],"query":[{"description":{"content":"<p>spot、perpetual</p>\n","type":"text/plain"},"key":"category","value":"spot"}],"variable":[]}},"response":[{"id":"f049d665-0092-406c-a3f6-be6c1186a922","name":"success","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://v3api.jayxstaging.com/api/v1/public/tickers?category=spot","host":["https://v3api.jayxstaging.com"],"path":["api","v1","public","tickers"],"query":[{"key":"category","value":"spot"}]}},"status":"OK","code":200,"_postman_previewlanguage":"plain","header":[{"key":"Vary","value":"Origin"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-USED-REQUEST_WEIGHT-1MINUTE","value":"5"},{"key":"X-USED-RAW_REQUESTS-1MINUTE","value":"1"},{"key":"X-USED-ORDERS-10SECOND","value":"0"},{"key":"X-USED-ORDERS-1DAY","value":"0"},{"key":"Content-Type","value":"text/plain; charset=utf-8"},{"key":"Content-Length","value":"4840"},{"key":"Date","value":"Wed, 21 Aug 2024 05:36:40 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\"code\":0,\"msg\":null,\"data\":[{\"market\":\"BELUSDT\",\"lots\":null,\"ticks\":null,\"created\":null,\"ask\":null,\"askLots\":null,\"bid\":null,\"bidLots\":null,\"last24\":{\"market\":\"BELUSDT\",\"high\":null,\"low\":null,\"tail\":null,\"vol\":\"0\"}},{\"market\":\"BOMEUSDT\",\"lots\":null,\"ticks\":null,\"created\":null,\"ask\":null,\"askLots\":null,\"bid\":null,\"bidLots\":null,\"last24\":{\"market\":\"BOMEUSDT\",\"high\":null,\"low\":null,\"tail\":null,\"vol\":\"0\"}},{\"market\":\"BTCUSDT\",\"lots\":null,\"ticks\":null,\"created\":null,\"ask\":null,\"askLots\":null,\"bid\":null,\"bidLots\":null,\"last24\":{\"market\":\"BTCUSDT\",\"high\":\"98889\",\"low\":\"45000\",\"tail\":\"0\",\"vol\":\"10410063192.53\"}},{\"market\":\"CVXUSDT\",\"lots\":null,\"ticks\":null,\"created\":null,\"ask\":null,\"askLots\":null,\"bid\":null,\"bidLots\":null,\"last24\":{\"market\":\"CVXUSDT\",\"high\":null,\"low\":null,\"tail\":null,\"vol\":\"0\"}},{\"market\":\"DOGEUSDT\",\"lots\":null,\"ticks\":null,\"created\":null,\"ask\":null,\"askLots\":null,\"bid\":null,\"bidLots\":null,\"last24\":{\"market\":\"DOGEUSDT\",\"high\":null,\"low\":null,\"tail\":null,\"vol\":\"0\"}},{\"market\":\"ENAUSDT\",\"lots\":null,\"ticks\":null,\"created\":null,\"ask\":null,\"askLots\":null,\"bid\":null,\"bidLots\":null,\"last24\":{\"market\":\"ENAUSDT\",\"high\":null,\"low\":null,\"tail\":null,\"vol\":\"0\"}},{\"market\":\"ERNUSDT\",\"lots\":null,\"ticks\":null,\"created\":null,\"ask\":null,\"askLots\":null,\"bid\":null,\"bidLots\":null,\"last24\":{\"market\":\"ERNUSDT\",\"high\":null,\"low\":null,\"tail\":null,\"vol\":\"0\"}},{\"market\":\"ETCUSDT\",\"lots\":null,\"ticks\":null,\"created\":null,\"ask\":null,\"askLots\":null,\"bid\":null,\"bidLots\":null,\"last24\":{\"market\":\"ETCUSDT\",\"high\":\"10.99\",\"low\":\"10.4\",\"tail\":\"0\",\"vol\":\"3057759.95\"}},{\"market\":\"ETHUSDT\",\"lots\":null,\"ticks\":null,\"created\":null,\"ask\":null,\"askLots\":null,\"bid\":null,\"bidLots\":null,\"last24\":{\"market\":\"ETHUSDT\",\"high\":\"88888\",\"low\":\"88888\",\"tail\":\"0\",\"vol\":\"4000\"}},{\"market\":\"FARMUSDT\",\"lots\":null,\"ticks\":null,\"created\":null,\"ask\":null,\"askLots\":null,\"bid\":null,\"bidLots\":null,\"last24\":{\"market\":\"FARMUSDT\",\"high\":null,\"low\":null,\"tail\":null,\"vol\":\"0\"}},{\"market\":\"FRONTUSDT\",\"lots\":null,\"ticks\":null,\"created\":null,\"ask\":null,\"askLots\":null,\"bid\":null,\"bidLots\":null,\"last24\":{\"market\":\"FRONTUSDT\",\"high\":null,\"low\":null,\"tail\":null,\"vol\":\"0\"}},{\"market\":\"FTTUSDT\",\"lots\":null,\"ticks\":null,\"created\":null,\"ask\":null,\"askLots\":null,\"bid\":null,\"bidLots\":null,\"last24\":{\"market\":\"FTTUSDT\",\"high\":null,\"low\":null,\"tail\":null,\"vol\":\"0\"}},{\"market\":\"LUNAUSDT\",\"lots\":null,\"ticks\":null,\"created\":null,\"ask\":null,\"askLots\":null,\"bid\":null,\"bidLots\":null,\"last24\":{\"market\":\"LUNAUSDT\",\"high\":null,\"low\":null,\"tail\":null,\"vol\":\"0\"}},{\"market\":\"ORNUSDT\",\"lots\":null,\"ticks\":null,\"created\":null,\"ask\":null,\"askLots\":null,\"bid\":null,\"bidLots\":null,\"last24\":{\"market\":\"ORNUSDT\",\"high\":null,\"low\":null,\"tail\":null,\"vol\":\"0\"}},{\"market\":\"PEOPLEUSDT\",\"lots\":null,\"ticks\":null,\"created\":null,\"ask\":null,\"askLots\":null,\"bid\":null,\"bidLots\":null,\"last24\":{\"market\":\"PEOPLEUSDT\",\"high\":null,\"low\":null,\"tail\":null,\"vol\":\"0\"}},{\"market\":\"PEPEUSDT\",\"lots\":null,\"ticks\":null,\"created\":null,\"ask\":null,\"askLots\":null,\"bid\":null,\"bidLots\":null,\"last24\":{\"market\":\"PEPEUSDT\",\"high\":null,\"low\":null,\"tail\":null,\"vol\":\"0\"}},{\"market\":\"SOLUSDT\",\"lots\":null,\"ticks\":null,\"created\":null,\"ask\":null,\"askLots\":null,\"bid\":null,\"bidLots\":null,\"last24\":{\"market\":\"SOLUSDT\",\"high\":null,\"low\":null,\"tail\":null,\"vol\":\"0\"}},{\"market\":\"TRBUSDT\",\"lots\":null,\"ticks\":null,\"created\":null,\"ask\":null,\"askLots\":null,\"bid\":null,\"bidLots\":null,\"last24\":{\"market\":\"TRBUSDT\",\"high\":null,\"low\":null,\"tail\":null,\"vol\":\"0\"}},{\"market\":\"TRXUSDT\",\"lots\":null,\"ticks\":null,\"created\":null,\"ask\":null,\"askLots\":null,\"bid\":null,\"bidLots\":null,\"last24\":{\"market\":\"TRXUSDT\",\"high\":\"10.99998\",\"low\":\"10.69\",\"tail\":\"0\",\"vol\":\"257.81633\"}},{\"market\":\"UNFIUSDT\",\"lots\":null,\"ticks\":null,\"created\":null,\"ask\":null,\"askLots\":null,\"bid\":null,\"bidLots\":null,\"last24\":{\"market\":\"UNFIUSDT\",\"high\":null,\"low\":null,\"tail\":null,\"vol\":\"0\"}},{\"market\":\"USDTFTT\",\"lots\":null,\"ticks\":null,\"created\":null,\"ask\":null,\"askLots\":null,\"bid\":null,\"bidLots\":null,\"last24\":{\"market\":\"USDTFTT\",\"high\":null,\"low\":null,\"tail\":null,\"vol\":\"0\"}},{\"market\":\"WIFUSDT\",\"lots\":null,\"ticks\":null,\"created\":null,\"ask\":null,\"askLots\":null,\"bid\":null,\"bidLots\":null,\"last24\":{\"market\":\"WIFUSDT\",\"high\":null,\"low\":null,\"tail\":null,\"vol\":\"0\"}},{\"market\":\"WLDUSDT\",\"lots\":null,\"ticks\":null,\"created\":null,\"ask\":null,\"askLots\":null,\"bid\":null,\"bidLots\":null,\"last24\":{\"market\":\"WLDUSDT\",\"high\":null,\"low\":null,\"tail\":null,\"vol\":\"0\"}},{\"market\":\"BTCUSDT_PERP\",\"lots\":null,\"ticks\":null,\"created\":null,\"ask\":null,\"askLots\":null,\"bid\":null,\"bidLots\":null,\"last24\":{\"market\":\"BTCUSDT_PERP\",\"high\":\"67999\",\"low\":\"62999\",\"tail\":\"0\",\"vol\":\"3493387.5\"}},{\"market\":\"ETCUSDT_PERP\",\"lots\":null,\"ticks\":null,\"created\":null,\"ask\":null,\"askLots\":null,\"bid\":null,\"bidLots\":null,\"last24\":{\"market\":\"ETCUSDT_PERP\",\"high\":\"20\",\"low\":\"20\",\"tail\":\"0\",\"vol\":\"57\"}}]}"}],"_postman_id":"e3529a41-24ea-435c-a164-d7b7e60f178c"},{"name":"Tickers of a Symbol","id":"3cdc6832-7b80-43fd-b625-5f00122336d4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://v3api.jayxstaging.com/api/v1/public/ticker?category=spot&symbol=BTCUSDT","urlObject":{"path":["api","v1","public","ticker"],"host":["https://v3api.jayxstaging.com"],"query":[{"description":{"content":"<p>spot、perpetual</p>\n","type":"text/plain"},"key":"category","value":"spot"},{"description":{"content":"<p>symbol</p>\n","type":"text/plain"},"key":"symbol","value":"BTCUSDT"}],"variable":[]}},"response":[{"id":"9386db70-ec64-4995-8274-02e1a7b2f004","name":"success","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://v3api.jayxstaging.com/api/v1/public/ticker?category=spot&symbol=BTCUSDT","host":["https://v3api.jayxstaging.com"],"path":["api","v1","public","ticker"],"query":[{"key":"category","value":"spot","description":"spot"},{"key":"symbol","value":"BTCUSDT","description":"symbol"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Vary","value":"Origin"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-USED-REQUEST_WEIGHT-1MINUTE","value":"5"},{"key":"X-USED-RAW_REQUESTS-1MINUTE","value":"1"},{"key":"X-USED-ORDERS-10SECOND","value":"0"},{"key":"X-USED-ORDERS-1DAY","value":"0"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"251"},{"key":"Date","value":"Wed, 21 Aug 2024 06:00:01 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"market\": \"BTCUSDT\",\n        \"amount\": null,\n        \"price\": null,\n        \"created\": null,\n        \"askPrice\": \"10000\",\n        \"askAmount\": \"7\",\n        \"bidPrice\": \"55\",\n        \"bidAmount\": \"0.2\",\n        \"last24\": {\n            \"market\": \"BTCUSDT\",\n            \"high\": \"98889\",\n            \"low\": \"45000\",\n            \"tail\": \"0\",\n            \"vol\": \"10410063192.53\"\n        }\n    },\n    \"code\": 0,\n    \"msg\": \"\"\n}"}],"_postman_id":"3cdc6832-7b80-43fd-b625-5f00122336d4"},{"name":"Orderbook of a Symbol","id":"39b500a7-588a-4bb1-82d4-94cbb0e5115a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://v3api.jayxstaging.com/api/v1/public/orderbook?category=spot&symbol=BTCUSDT&count=1","urlObject":{"path":["api","v1","public","orderbook"],"host":["https://v3api.jayxstaging.com"],"query":[{"description":{"content":"<p>spot、perpetual</p>\n","type":"text/plain"},"key":"category","value":"spot"},{"description":{"content":"<p>symbol</p>\n","type":"text/plain"},"key":"symbol","value":"BTCUSDT"},{"description":{"content":"<p>orderbook depth to query</p>\n","type":"text/plain"},"key":"count","value":"1"}],"variable":[]}},"response":[{"id":"b6050e6d-516f-48ae-95c1-52bc602f371e","name":"success","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://v3api.jayxstaging.com/api/v1/public/orderbook?category=spot&symbol=BTCUSDT&count=1","host":["https://v3api.jayxstaging.com"],"path":["api","v1","public","orderbook"],"query":[{"key":"category","value":"spot","description":"spot"},{"key":"symbol","value":"BTCUSDT","description":"symbol"},{"key":"count","value":"1","description":"orderbook depth to query"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Vary","value":"Origin"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-USED-REQUEST_WEIGHT-1MINUTE","value":"5"},{"key":"X-USED-RAW_REQUESTS-1MINUTE","value":"1"},{"key":"X-USED-ORDERS-10SECOND","value":"0"},{"key":"X-USED-ORDERS-1DAY","value":"0"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"493"},{"key":"Date","value":"Wed, 21 Aug 2024 07:30:46 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"market\": \"BTCUSDT\",\n        \"tickSize\": 1,\n        \"bids\": [\n            {\n                \"price\": \"55\",\n                \"amount\": \"0.2\",\n                \"count\": 1\n            },\n            {\n                \"price\": \"22\",\n                \"amount\": \"820.065\",\n                \"count\": 2\n            },\n            {\n                \"price\": \"12\",\n                \"amount\": \"818.06\",\n                \"count\": 1\n            },\n            {\n                \"price\": \"2\",\n                \"amount\": \"1\",\n                \"count\": 1\n            },\n            {\n                \"price\": \"1\",\n                \"amount\": \"2\",\n                \"count\": 2\n            }\n        ],\n        \"asks\": [\n            {\n                \"price\": \"10000\",\n                \"amount\": \"25\",\n                \"count\": 25\n            },\n            {\n                \"price\": \"64000\",\n                \"amount\": \"1.9\",\n                \"count\": 1\n            },\n            {\n                \"price\": \"65000\",\n                \"amount\": \"2\",\n                \"count\": 1\n            },\n            {\n                \"price\": \"999999\",\n                \"amount\": \"1\",\n                \"count\": 1\n            },\n            {\n                \"price\": \"4444444\",\n                \"amount\": \"444\",\n                \"count\": 1\n            }\n        ]\n    },\n    \"code\": 0,\n    \"msg\": \"\"\n}"}],"_postman_id":"39b500a7-588a-4bb1-82d4-94cbb0e5115a"},{"name":"(In progress) Recent Orders of a Symbol","id":"49fe5b82-865a-4950-bb56-f7fe8c5549ae","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://v3api.jayxstaging.com/api/v1/public/trades?category=spot&symbol=BTCUSDT","urlObject":{"path":["api","v1","public","trades"],"host":["https://v3api.jayxstaging.com"],"query":[{"description":{"content":"<p>spot、perpetual</p>\n","type":"text/plain"},"key":"category","value":"spot"},{"description":{"content":"<p>symbol</p>\n","type":"text/plain"},"key":"symbol","value":"BTCUSDT"}],"variable":[]}},"response":[],"_postman_id":"49fe5b82-865a-4950-bb56-f7fe8c5549ae"},{"name":"K-Line of a Symbol","id":"243fecdc-3f87-4d65-bc2e-0730fb916c0b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://v3api.jayxstaging.com/api/v1/public/klines?category=spot&symbol=BTCUSDT","urlObject":{"path":["api","v1","public","klines"],"host":["https://v3api.jayxstaging.com"],"query":[{"description":{"content":"<p>spot、perpetual</p>\n","type":"text/plain"},"key":"category","value":"spot"},{"description":{"content":"<p>symbol</p>\n","type":"text/plain"},"key":"symbol","value":"BTCUSDT"}],"variable":[]}},"response":[{"id":"f6bc9529-fd00-4027-92a3-1ffd22038138","name":"success","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://v3api.jayxstaging.com/api/v1/public/klines?category=spot&symbol=BTCUSDT","host":["https://v3api.jayxstaging.com"],"path":["api","v1","public","klines"],"query":[{"key":"category","value":"spot","description":"spot"},{"key":"symbol","value":"BTCUSDT","description":"symbol"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Vary","value":"Origin"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-USED-REQUEST_WEIGHT-1MINUTE","value":"5"},{"key":"X-USED-RAW_REQUESTS-1MINUTE","value":"1"},{"key":"X-USED-ORDERS-10SECOND","value":"0"},{"key":"X-USED-ORDERS-1DAY","value":"0"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"39684"},{"key":"Date","value":"Wed, 21 Aug 2024 07:35:16 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"12h\": [\n            {\n                \"_id\": \"66c57f53f79dcb2ad043d1ba\",\n                \"created\": 1724198400000,\n                \"market\": \"BTCUSDT\",\n                \"c\": 6110000,\n                \"h\": 6110000,\n                \"l\": 6110000,\n                \"m\": 1724219219862,\n                \"o\": 6110000,\n                \"v\": 200000\n            },\n            {\n                \"_id\": \"66c4a34bf79dcb2ad036faa3\",\n                \"created\": 1724155200000,\n                \"market\": \"BTCUSDT\",\n                \"c\": 1000000,\n                \"h\": 1000000,\n                \"l\": 88800,\n                \"m\": 1724206761017,\n                \"o\": 88800,\n                \"v\": 790000\n            },\n            {\n                \"_id\": \"66c43201f79dcb2ad03064bb\",\n                \"created\": 1724112000000,\n                \"market\": \"BTCUSDT\",\n                \"c\": 6099900,\n                \"h\": 6099900,\n                \"l\": 1000000,\n                \"m\": 1724161298572,\n                \"o\": 3000000,\n                \"v\": 400000\n            },\n            {\n                \"_id\": \"66c34ed3f79dcb2ad083dc5d\",\n                \"created\": 1724068800000,\n                \"market\": \"BTCUSDT\",\n                \"c\": 1200,\n                \"h\": 53400,\n                \"l\": 1200,\n                \"m\": 1724077318451,\n                \"o\": 53400,\n                \"v\": 1100000\n            },\n            {\n                \"_id\": \"66c2a458f79dcb2ad0d1c269\",\n                \"created\": 1724025600000,\n                \"market\": \"BTCUSDT\",\n                \"c\": 53400,\n                \"h\": 6000000,\n                \"l\": 53400,\n                \"m\": 1724071550485,\n                \"o\": 1000000,\n                \"v\": 840000\n            },\n            {\n                \"_id\": \"66c1fbc3f79dcb2ad0225f58\",\n                \"created\": 1723982400000,\n                \"market\": \"BTCUSDT\",\n                \"c\": 6000000,\n                \"h\": 6000000,\n                \"l\": 2850,\n                \"m\": 1724031986288,\n                \"o\": 2850,\n                \"v\": 380000\n            },\n            {\n                \"_id\": \"66c00bdaf79dcb2ad02543f2\",\n                \"created\": 1723852800000,\n                \"market\": \"BTCUSDT\",\n                \"c\": 2400,\n                \"h\": 1000000,\n                \"l\": 2400,\n                \"m\": 1723988912884,\n                \"o\": 1000000,\n                \"v\": 388000\n            },\n            {\n                \"_id\": \"66bef92af79dcb2ad055e864\",\n                \"created\": 1723766400000,\n                \"market\": \"BTCUSDT\",\n                \"c\": 1000000,\n                \"h\": 1000000,\n                \"l\": 1000000,\n                \"m\": 1723861521888,\n                \"o\": 1000000,\n                \"v\": 1700000\n            },\n            {\n                \"_id\": \"66bcb220f79dcb2ad045445d\",\n                \"created\": 1723636800000,\n                \"market\": \"BTCUSDT\",\n                \"c\": 1000000,\n                \"h\": 7999900,\n                \"l\": 1000000,\n                \"m\": 1723791421485,\n                \"o\": 7999900,\n                \"v\": 900000\n            },\n            {\n                \"_id\": \"66bc0f78f79dcb2ad0975483\",\n                \"created\": 1723593600000,\n                \"market\": \"BTCUSDT\",\n                \"c\": 6011100,\n                \"h\": 7999900,\n                \"l\": 100,\n                \"m\": 1723636971376,\n                \"o\": 100,\n                \"v\": 1100000\n            },\n            {\n                \"_id\": \"66bb6aacf79dcb2ad0e60308\",\n                \"created\": 1723550400000,\n                \"market\": \"BTCUSDT\",\n                \"c\": 1000000,\n                \"h\": 1000000,\n                \"l\": 1000000,\n                \"m\": 1723599196075,\n                \"o\": 1000000,\n                \"v\": 1030000\n            },\n            {\n                \"_id\": \"66bac500f79dcb2ad030549c\",\n                \"created\": 1723507200000,\n                \"market\": \"BTCUSDT\",\n                \"c\": 1000000,\n                \"h\": 1000000,\n                \"l\": 1000000,\n                \"m\": 1723558441043,\n                \"o\": 1000000,\n                \"v\": 5270000\n            },\n            {\n                \"_id\": \"66b9faa0f79dcb2ad00f42f0\",\n                \"created\": 1723464000000,\n                \"market\": \"BTCUSDT\",\n                \"c\": 1000000,\n                \"h\": 8888800,\n                \"l\": 1000000,\n                \"m\": 1723516122448,\n                \"o\": 1000000,\n                \"v\": 3620000\n            },\n            {\n                \"_id\": \"66b9c3e3f79dcb2ad07b9592\",\n                \"created\": 1723420800000,\n                \"market\": \"BTCUSDT\",\n                \"c\": 6500000,\n                \"h\": 6500000,\n                \"l\": 1000000,\n                \"m\": 1723457288885,\n                \"o\": 1000000,\n                \"v\": 2052000\n            },\n            {\n                \"_id\": \"66b32442f79dcb2ad0492931\",\n                \"created\": 1722988800000,\n                \"market\": \"BTCUSDT\",\n                \"c\": 1000000,\n                \"h\": 1000000,\n                \"l\": 1000,\n                \"m\": 1723016613761,\n                \"o\": 1000,\n                \"v\": 700000\n            },\n            {\n                \"_id\": \"66b0c4f8f79dcb2ad06f23f9\",\n                \"created\": 1722859200000,\n                \"market\": \"BTCUSDT\",\n                \"c\": 1000,\n                \"h\": 10100,\n                \"l\": 1000,\n                \"m\": 1723002464994,\n                \"o\": 1000,\n                \"v\": 7400000\n            },\n            {\n                \"_id\": \"66b08247f79dcb2ad0ac20ee\",\n                \"created\": 1722816000000,\n                \"market\": \"BTCUSDT\",\n                \"c\": 1000,\n                \"h\": 1000,\n                \"l\": 1000,\n                \"m\": 1722860732510,\n                \"o\": 1000,\n                \"v\": 4500000\n            },\n            {\n                \"_id\": \"66ac905cf79dcb2ad0bfe271\",\n                \"created\": 1722556800000,\n                \"market\": \"BTCUSDT\",\n                \"c\": 1000,\n                \"h\": 1000,\n                \"l\": 1000,\n                \"m\": 1722843667868,\n                \"o\": 1000,\n                \"v\": 400000\n            },\n            {\n                \"_id\": \"66ab8dcaf79dcb2ad0817557\",\n                \"created\": 1722513600000,\n                \"market\": \"BTCUSDT\",\n                \"c\": 1000000,\n                \"h\": 1000000,\n                \"l\": 1000000,\n                \"m\": 1722585069676,\n                \"o\": 1000000,\n                \"v\": 500000\n            },\n            {\n                \"_id\": \"66ab0141f79dcb2ad0d03b2d\",\n                \"created\": 1722470400000,\n                \"market\": \"BTCUSDT\",\n                \"c\": 8888800,\n                \"h\": 8888800,\n                \"l\": 8888800,\n                \"m\": 1722518948206,\n                \"o\": 8888800,\n                \"v\": 200000\n            },\n            {\n                \"_id\": \"66aa4f25f79dcb2ad0b5987a\",\n                \"created\": 1722427200000,\n                \"market\": \"BTCUSDT\",\n                \"c\": 2000100,\n                \"h\": 2000100,\n                \"l\": 1000700,\n                \"m\": 1722481035248,\n                \"o\": 1000900,\n                \"v\": 1100000\n            },\n            {\n                \"_id\": \"66a97e81f79dcb2ad01ae9f2\",\n                \"created\": 1722384000000,\n                \"market\": \"BTCUSDT\",\n                \"c\": 1029,\n                \"h\": 1099,\n                \"l\": 1000,\n                \"m\": 1722437375873,\n                \"o\": 1038,\n                \"v\": 8787374000\n            },\n            {\n                \"_id\": \"66a8d5c0f79dcb2ad04b7a1e\",\n                \"created\": 1722340800000,\n                \"market\": \"BTCUSDT\",\n                \"c\": 1024,\n                \"h\": 1099,\n                \"l\": 1000,\n                \"m\": 1722384000296,\n                \"o\": 1047,\n                \"v\": 91115664000\n            },\n            {\n                \"_id\": \"66a8962df79dcb2ad07c64ff\",\n                \"created\": 1722297600000,\n                \"market\": \"BTCUSDT\",\n                \"c\": 1047,\n                \"h\": 1099,\n                \"l\": 1000,\n                \"m\": 1722340800067,\n                \"o\": 1061,\n                \"v\": 5776626000\n            },\n            {\n                \"_id\": \"66a78440f79dcb2ad0f1de80\",\n                \"created\": 1722254400000,\n                \"market\": \"BTCUSDT\",\n                \"c\": 1084,\n                \"h\": 1099,\n                \"l\": 1000,\n                \"m\": 1722266667852,\n                \"o\": 1085,\n                \"v\": 23644992000\n            },\n            {\n                \"_id\": \"66a72ebdf79dcb2ad07ab460\",\n                \"created\": 1722211200000,\n                \"market\": \"BTCUSDT\",\n                \"c\": 1070,\n                \"h\": 1099,\n                \"l\": 1000,\n                \"m\": 1722254400586,\n                \"o\": 1050,\n                \"v\": 16476056000\n            },\n            {\n                \"_id\": \"669dbb1cf79dcb2ad0b8bb47\",\n                \"created\": 1721606400000,\n                \"market\": \"BTCUSDT\",\n                \"c\": 4500000,\n                \"h\": 4500000,\n                \"l\": 4500000,\n                \"m\": 1721613065064,\n                \"o\": 4500000,\n                \"v\": 2000000\n            },\n            {\n                \"_id\": \"6699cf4ff79dcb2ad0f6a24e\",\n                \"created\": 1721347200000,\n                \"market\": \"BTCUSDT\",\n                \"c\": 600,\n                \"h\": 9888900,\n                \"l\": 100,\n                \"m\": 1721375406945,\n                \"o\": 6053,\n                \"v\": 17661548562\n            },\n            {\n                \"_id\": \"6695e15ef79dcb2ad0b7377b\",\n                \"created\": 1721088000000,\n                \"market\": \"BTCUSDT\",\n                \"c\": 1054,\n                \"h\": 1099,\n                \"l\": 1000,\n                \"m\": 1721122837912,\n                \"o\": 1013,\n                \"v\": 435358761748\n            },\n            {\n                \"_id\": \"66952bbef79dcb2ad0089ba3\",\n                \"created\": 1721044800000,\n                \"market\": \"BTCUSDT\",\n                \"c\": 1000000,\n                \"h\": 1000000,\n                \"l\": 1000000,\n                \"m\": 1721098590872,\n                \"o\": 1000000,\n                \"v\": 500000\n            },\n            {\n                \"_id\": \"6694d153f79dcb2ad0b5d5de\",\n                \"created\": 1721001600000,\n                \"market\": \"BTCUSDT\",\n                \"c\": 1000000,\n                \"h\": 1000000,\n                \"l\": 1000000,\n                \"m\": 1721046817407,\n                \"o\": 1000000,\n                \"v\": 1000000\n            },\n            {\n                \"_id\": \"66908476f79dcb2ad0907969\",\n                \"created\": 1720742400000,\n                \"market\": \"BTCUSDT\",\n                \"c\": 0,\n                \"h\": 1000000,\n                \"l\": 1000,\n                \"m\": 1724219137326,\n                \"o\": 1000000,\n                \"v\": 505778718876\n            },\n            {\n                \"_id\": \"6699e200f79dcb2ad045b79f\",\n                \"created\": 0,\n                \"market\": \"BTCUSDT\",\n                \"c\": 0,\n                \"h\": 4500000,\n                \"l\": 4500000,\n                \"m\": 1721614323707,\n                \"o\": 4500000,\n                \"v\": 1000000\n            }\n        ],\n        \"15m\": [\n            {\n                \"_id\": \"66c57f53f79dcb2ad043d1c4\",\n                \"created\": 1724219100000,\n                \"market\": \"BTCUSDT\",\n                \"c\": 6110000,\n                \"h\": 6110000,\n                \"l\": 6110000,\n                \"m\": 1724219219863,\n                \"o\": 6110000,\n                \"v\": 200000\n            },\n            {\n                \"_id\": \"66c4a34bf79dcb2ad036fb00\",\n                \"created\": 1724162400000,\n                \"market\": \"BTCUSDT\",\n                \"c\": 1000000,\n                \"h\": 1000000,\n                \"l\": 88800,\n                \"m\": 1724206761017,\n                \"o\": 88800,\n                \"v\": 690000\n            },\n            {\n                \"_id\": \"66c4a34bf79dcb2ad036faac\",\n                \"created\": 1724160600000,\n                \"market\": \"BTCUSDT\",\n                \"c\": 88800,\n                \"h\": 88800,\n                \"l\": 88800,\n                \"m\": 1724162891597,\n                \"o\": 88800,\n                \"v\": 20000\n            },\n            {\n                \"_id\": \"66c4442ef79dcb2ad0317713\",\n                \"created\": 1724138100000,\n                \"market\": \"BTCUSDT\",\n                \"c\": 6099900,\n                \"h\": 6099900,\n                \"l\": 1000000,\n                \"m\": 1724161298572,\n                \"o\": 3000000,\n                \"v\": 400000\n            },\n            {\n                \"_id\": \"66c43201f79dcb2ad03064c0\",\n                \"created\": 1724133600000,\n                \"market\": \"BTCUSDT\",\n                \"c\": 3000000,\n                \"h\": 3000000,\n                \"l\": 1000000,\n                \"m\": 1724133889960,\n                \"o\": 1000000,\n                \"v\": 200000\n            },\n            {\n                \"_id\": \"66c35488f79dcb2ad0929215\",\n                \"created\": 1724076900000,\n                \"market\": \"BTCUSDT\",\n                \"c\": 1200,\n                \"h\": 1900,\n                \"l\": 1200,\n                \"m\": 1724077318452,\n                \"o\": 1900,\n                \"v\": 500000\n            },\n            {\n                \"_id\": \"66c34ed3f79dcb2ad083dc67\",\n                \"created\": 1724075100000,\n                \"market\": \"BTCUSDT\",\n                \"c\": 53400,\n                \"h\": 53400,\n                \"l\": 53400,\n                \"m\": 1724076329007,\n                \"o\": 53400,\n                \"v\": 500000\n            },\n            {\n                \"_id\": \"66c30140f79dcb2ad0be0f9b\",\n                \"created\": 1724055300000,\n                \"market\": \"BTCUSDT\",\n                \"c\": 53400,\n                \"h\": 6000000,\n                \"l\": 53400,\n                \"m\": 1724071550486,\n                \"o\": 6000000,\n                \"v\": 500000\n            },\n            {\n                \"_id\": \"66c2a458f79dcb2ad0d1c276\",\n                \"created\": 1724031900000,\n                \"market\": \"BTCUSDT\",\n                \"c\": 6000000,\n                \"h\": 6000000,\n                \"l\": 1000000,\n                \"m\": 1724034225766,\n                \"o\": 1000000,\n                \"v\": 240000\n            },\n            {\n                \"_id\": \"66c1fbb0f79dcb2ad022301d\",\n                \"created\": 1723988700000,\n                \"market\": \"BTCUSDT\",\n                \"c\": 6000000,\n                \"h\": 6000000,\n                \"l\": 2400,\n                \"m\": 1724031986288,\n                \"o\": 2400,\n                \"v\": 500000\n            },\n            {\n                \"_id\": \"66c00bdaf79dcb2ad02543f8\",\n                \"created\": 1723860900000,\n                \"market\": \"BTCUSDT\",\n                \"c\": 1000000,\n                \"h\": 1000000,\n                \"l\": 1000000,\n                \"m\": 1723861978003,\n                \"o\": 1000000,\n                \"v\": 188000\n            },\n            {\n                \"_id\": \"66bf27c5f79dcb2ad0cf0607\",\n                \"created\": 1723803300000,\n                \"market\": \"BTCUSDT\",\n                \"c\": 1000000,\n                \"h\": 1000000,\n                \"l\": 1000000,\n                \"m\": 1723861521888,\n                \"o\": 1000000,\n                \"v\": 788000\n            },\n            {\n                \"_id\": \"66bef92af79dcb2ad055e876\",\n                \"created\": 1723791600000,\n                \"market\": \"BTCUSDT\",\n                \"c\": 1000000,\n                \"h\": 1000000,\n                \"l\": 1000000,\n                \"m\": 1723803324985,\n                \"o\": 1000000,\n                \"v\": 900000\n            },\n            {\n                \"_id\": \"66bcebd8f79dcb2ad0df999f\",\n                \"created\": 1723656600000,\n                \"market\": \"BTCUSDT\",\n                \"c\": 1000000,\n                \"h\": 6000000,\n                \"l\": 1000000,\n                \"m\": 1723791421486,\n                \"o\": 6000000,\n                \"v\": 500000\n            },\n            {\n                \"_id\": \"66bcb220f79dcb2ad0454467\",\n                \"created\": 1723642200000,\n                \"market\": \"BTCUSDT\",\n                \"c\": 1000000,\n                \"h\": 7999900,\n                \"l\": 1000000,\n                \"m\": 1723657165859,\n                \"o\": 7999900,\n                \"v\": 300000\n            },\n            {\n                \"_id\": \"66bc8e43f79dcb2ad0e54495\",\n                \"created\": 1723633200000,\n                \"market\": \"BTCUSDT\",\n                \"c\": 6011100,\n                \"h\": 7999900,\n                \"l\": 100,\n                \"m\": 1723636971376,\n                \"o\": 100,\n                \"v\": 1200000\n            },\n            {\n                \"_id\": \"66bc1794f79dcb2ad0ac87f0\",\n                \"created\": 1723602600000,\n                \"market\": \"BTCUSDT\",\n                \"c\": 1000000,\n                \"h\": 1000000,\n                \"l\": 1000000,\n                \"m\": 1723603175567,\n                \"o\": 1000000,\n                \"v\": 930000\n            },\n            {\n                \"_id\": \"66bc0f7ef79dcb2ad0976265\",\n                \"created\": 1723599900000,\n                \"market\": \"BTCUSDT\",\n                \"c\": 1000000,\n                \"h\": 1000000,\n                \"l\": 1000000,\n                \"m\": 1723602690776,\n                \"o\": 1000000,\n                \"v\": 130000\n            },\n            {\n                \"_id\": \"66bc0f78f79dcb2ad097548c\",\n                \"created\": 1723599000000,\n                \"market\": \"BTCUSDT\",\n                \"c\": 1000000,\n                \"h\": 1000000,\n                \"l\": 1000000,\n                \"m\": 1723600760878,\n                \"o\": 1000000,\n                \"v\": 130000\n            },\n            {\n                \"_id\": \"66bb79e9f79dcb2ad00e527b\",\n                \"created\": 1723562100000,\n                \"market\": \"BTCUSDT\",\n                \"c\": 1000000,\n                \"h\": 1000000,\n                \"l\": 1000000,\n                \"m\": 1723599196076,\n                \"o\": 1000000,\n                \"v\": 830000\n            },\n            {\n                \"_id\": \"66bb6aacf79dcb2ad0e6030d\",\n                \"created\": 1723557600000,\n                \"market\": \"BTCUSDT\",\n                \"c\": 1000000,\n                \"h\": 1000000,\n                \"l\": 1000000,\n                \"m\": 1723558572585,\n                \"o\": 1000000,\n                \"v\": 100000\n            },\n            {\n                \"_id\": \"66bafde0f79dcb2ad0c79ea5\",\n                \"created\": 1723530600000,\n                \"market\": \"BTCUSDT\",\n                \"c\": 1000000,\n                \"h\": 1000000,\n                \"l\": 1000000,\n                \"m\": 1723558441043,\n                \"o\": 1000000,\n                \"v\": 1470000\n            },\n            {\n                \"_id\": \"66bafabcf79dcb2ad0bf4588\",\n                \"created\": 1723529700000,\n                \"market\": \"BTCUSDT\",\n                \"c\": 1000000,\n                \"h\": 1000000,\n                \"l\": 1000000,\n                \"m\": 1723530717521,\n                \"o\": 1000000,\n                \"v\": 830000\n            },\n            {\n                \"_id\": \"66bada77f79dcb2ad0699e3d\",\n                \"created\": 1723521600000,\n                \"market\": \"BTCUSDT\",\n                \"c\": 1000000,\n                \"h\": 1000000,\n                \"l\": 1000000,\n                \"m\": 1723529871344,\n                \"o\": 1000000,\n                \"v\": 670000\n            },\n            {\n                \"_id\": \"66bad55ef79dcb2ad05c042f\",\n                \"created\": 1723519800000,\n                \"market\": \"BTCUSDT\",\n                \"c\": 1000000,\n                \"h\": 1000000,\n                \"l\": 1000000,\n                \"m\": 1723521582672,\n                \"o\": 1000000,\n                \"v\": 1030000\n            },\n            {\n                \"_id\": \"66bac5e2f79dcb2ad032ae84\",\n                \"created\": 1723516200000,\n                \"market\": \"BTCUSDT\",\n                \"c\": 1000000,\n                \"h\": 1000000,\n                \"l\": 1000000,\n                \"m\": 1723520346951,\n                \"o\": 1000000,\n                \"v\": 770000\n            },\n            {\n                \"_id\": \"66bac500f79dcb2ad03054a2\",\n                \"created\": 1723515300000,\n                \"market\": \"BTCUSDT\",\n                \"c\": 1000000,\n                \"h\": 1000000,\n                \"l\": 1000000,\n                \"m\": 1723516295833,\n                \"o\": 1000000,\n                \"v\": 270000\n            },\n            {\n                \"_id\": \"66ba13acf79dcb2ad052ae42\",\n                \"created\": 1723470300000,\n                \"market\": \"BTCUSDT\",\n                \"c\": 1000000,\n                \"h\": 1000000,\n                \"l\": 1000000,\n                \"m\": 1723516122448,\n                \"o\": 1000000,\n                \"v\": 630000\n            },\n            {\n                \"_id\": \"66ba0f6ef79dcb2ad0472665\",\n                \"created\": 1723469400000,\n                \"market\": \"BTCUSDT\",\n                \"c\": 1000000,\n                \"h\": 1000000,\n                \"l\": 1000000,\n                \"m\": 1723470744101,\n                \"o\": 1000000,\n                \"v\": 900000\n            },\n            {\n                \"_id\": \"66ba0c2df79dcb2ad03e70bb\",\n                \"created\": 1723468500000,\n                \"market\": \"BTCUSDT\",\n                \"c\": 1000000,\n                \"h\": 6888800,\n                \"l\": 1000000,\n                \"m\": 1723469561358,\n                \"o\": 6888800,\n                \"v\": 570000\n            },\n            {\n                \"_id\": \"66ba044ff79dcb2ad0295226\",\n                \"created\": 1723466700000,\n                \"market\": \"BTCUSDT\",\n                \"c\": 6888800,\n                \"h\": 8888800,\n                \"l\": 6888800,\n                \"m\": 1723468766931,\n                \"o\": 8888800,\n                \"v\": 490000\n            },\n            {\n                \"_id\": \"66ba032ef79dcb2ad0264a1f\",\n                \"created\": 1723465800000,\n                \"market\": \"BTCUSDT\",\n                \"c\": 8888800,\n                \"h\": 8888800,\n                \"l\": 6380000,\n                \"m\": 1723466801541,\n                \"o\": 6380000,\n                \"v\": 130000\n            },\n            {\n                \"_id\": \"66b9fbc7f79dcb2ad0125e3d\",\n                \"created\": 1723464000000,\n                \"market\": \"BTCUSDT\",\n                \"c\": 1000000,\n                \"h\": 1000000,\n                \"l\": 1000000,\n                \"m\": 1723466517050,\n                \"o\": 1000000,\n                \"v\": 500000\n            },\n            {\n                \"_id\": \"66b9ddc7f79dcb2ad0c13c98\",\n                \"created\": 1723456800000,\n                \"market\": \"BTCUSDT\",\n                \"c\": 6500000,\n                \"h\": 6500000,\n                \"l\": 6250000,\n                \"m\": 1723457288885,\n                \"o\": 6250000,\n                \"v\": 550000\n            },\n            {\n                \"_id\": \"66b9dd51f79dcb2ad0c0022f\",\n                \"created\": 1723455900000,\n                \"market\": \"BTCUSDT\",\n                \"c\": 6300000,\n                \"h\": 6300000,\n                \"l\": 6300000,\n                \"m\": 1723456849738,\n                \"o\": 6300000,\n                \"v\": 100000\n            },\n            {\n                \"_id\": \"66b9d793f79dcb2ad0b098dc\",\n                \"created\": 1723455000000,\n                \"market\": \"BTCUSDT\",\n                \"c\": 6300000,\n                \"h\": 6500000,\n                \"l\": 6300000,\n                \"m\": 1723456734352,\n                \"o\": 6300000,\n                \"v\": 340000\n            },\n            {\n                \"_id\": \"66b9d35ef79dcb2ad0a54760\",\n                \"created\": 1723454100000,\n                \"market\": \"BTCUSDT\",\n                \"c\": 6500000,\n                \"h\": 6500000,\n                \"l\": 6500000,\n                \"m\": 1723455207662,\n                \"o\": 6500000,\n                \"v\": 362000\n            },\n            {\n                \"_id\": \"66b9cd6af79dcb2ad095381a\",\n                \"created\": 1723452300000,\n                \"market\": \"BTCUSDT\",\n                \"c\": 6500000,\n                \"h\": 6500000,\n                \"l\": 1000000,\n                \"m\": 1723453949667,\n                \"o\": 1000000,\n                \"v\": 600000\n            },\n            {\n                \"_id\": \"66b9c3e3f79dcb2ad07b959d\",\n                \"created\": 1723449600000,\n                \"market\": \"BTCUSDT\",\n                \"c\": 1000000,\n                \"h\": 1000000,\n                \"l\": 1000000,\n                \"m\": 1723450353398,\n                \"o\": 1000000,\n                \"v\": 700000\n            },\n            {\n                \"_id\": \"66b32442f79dcb2ad049293c\",\n                \"created\": 1723015800000,\n                \"market\": \"BTCUSDT\",\n                \"c\": 1000000,\n                \"h\": 1000000,\n                \"l\": 1000,\n                \"m\": 1723016613761,\n                \"o\": 1000,\n                \"v\": 700000\n            },\n            {\n                \"_id\": \"66b0cb62f79dcb2ad084298f\",\n                \"created\": 1722861900000,\n                \"market\": \"BTCUSDT\",\n                \"c\": 1000,\n                \"h\": 3000,\n                \"l\": 1000,\n                \"m\": 1723002464994,\n                \"o\": 3000,\n                \"v\": 3100000\n            },\n            {\n                \"_id\": \"66b0c67df79dcb2ad075c1dc\",\n                \"created\": 1722861000000,\n                \"market\": \"BTCUSDT\",\n                \"c\": 2000,\n                \"h\": 10100,\n                \"l\": 1000,\n                \"m\": 1722861975413,\n                \"o\": 1000,\n                \"v\": 3700000\n            },\n            {\n                \"_id\": \"66b0c4f8f79dcb2ad06f2403\",\n                \"created\": 1722860100000,\n                \"market\": \"BTCUSDT\",\n                \"c\": 1000,\n                \"h\": 1000,\n                \"l\": 1000,\n                \"m\": 1722861038743,\n                \"o\": 1000,\n                \"v\": 600000\n            },\n            {\n                \"_id\": \"66b084cff79dcb2ad0b386ec\",\n                \"created\": 1722843900000,\n                \"market\": \"BTCUSDT\",\n                \"c\": 1000,\n                \"h\": 1000,\n                \"l\": 1000,\n                \"m\": 1722860732510,\n                \"o\": 1000,\n                \"v\": 300000\n            },\n            {\n                \"_id\": \"66b08247f79dcb2ad0ac20fa\",\n                \"created\": 1722843000000,\n                \"market\": \"BTCUSDT\",\n                \"c\": 1000,\n                \"h\": 1000,\n                \"l\": 1000,\n                \"m\": 1722843920932,\n                \"o\": 1000,\n                \"v\": 4100000\n            },\n            {\n                \"_id\": \"66ac905cf79dcb2ad0bfe27c\",\n                \"created\": 1722584700000,\n                \"market\": \"BTCUSDT\",\n                \"c\": 1000,\n                \"h\": 1000,\n                \"l\": 1000,\n                \"m\": 1722843667868,\n                \"o\": 1000,\n                \"v\": 400000\n            },\n            {\n                \"_id\": \"66ac8fedf79dcb2ad0be9aa2\",\n                \"created\": 1722519000000,\n                \"market\": \"BTCUSDT\",\n                \"c\": 1000000,\n                \"h\": 1000000,\n                \"l\": 1000000,\n                \"m\": 1722585069676,\n                \"o\": 1000000,\n                \"v\": 200000\n            },\n            {\n                \"_id\": \"66ab8da4f79dcb2ad0810242\",\n                \"created\": 1722518100000,\n                \"market\": \"BTCUSDT\",\n                \"c\": 1000000,\n                \"h\": 8888800,\n                \"l\": 1000000,\n                \"m\": 1722519084687,\n                \"o\": 8888800,\n                \"v\": 500000\n            },\n            {\n                \"_id\": \"66ab2b7af79dcb2ad04e2f8b\",\n                \"created\": 1722493800000,\n                \"market\": \"BTCUSDT\",\n                \"c\": 1000000,\n                \"h\": 1000000,\n                \"l\": 1000000,\n                \"m\": 1722493818113,\n                \"o\": 1000000,\n                \"v\": 300000\n            },\n            {\n                \"_id\": \"66ab0df0f79dcb2ad0f633be\",\n                \"created\": 1722483900000,\n                \"market\": \"BTCUSDT\",\n                \"c\": 1000000,\n                \"h\": 1000000,\n                \"l\": 1000000,\n                \"m\": 1722486256968,\n                \"o\": 1000000,\n                \"v\": 200000\n            }\n        ],\n        \"1d\": [\n            {\n                \"_id\": \"66c57f53f79dcb2ad043d1dc\",\n                \"created\": 1724198400000,\n                \"market\": \"BTCUSDT\",\n                \"c\": 6110000,\n                \"h\": 6110000,\n                \"l\": 6110000,\n                \"m\": 1724219219867,\n                \"o\": 6110000,\n                \"v\": 200000\n            },\n            {\n                \"_id\": \"66c43201f79dcb2ad03064d9\",\n                \"created\": 1724112000000,\n                \"market\": \"BTCUSDT\",\n                \"c\": 1000000,\n                \"h\": 6099900,\n                \"l\": 88800,\n                \"m\": 1724206761018,\n                \"o\": 3000000,\n                \"v\": 1200000\n            },\n            {\n                \"_id\": \"66c2a458f79dcb2ad0d1c29b\",\n                \"created\": 1724025600000,\n                \"market\": \"BTCUSDT\",\n                \"c\": 1200,\n                \"h\": 6000000,\n                \"l\": 1200,\n                \"m\": 1724077318453,\n                \"o\": 1000000,\n                \"v\": 1940000\n            },\n            {\n                \"_id\": \"66c1fbc3f79dcb2ad0225f86\",\n                \"created\": 1723939200000,\n                \"market\": \"BTCUSDT\",\n                \"c\": 6000000,\n                \"h\": 6000000,\n                \"l\": 2850,\n                \"m\": 1724031986289,\n                \"o\": 2850,\n                \"v\": 380000\n            },\n            {\n                \"_id\": \"66c00bdaf79dcb2ad025440f\",\n                \"created\": 1723852800000,\n                \"market\": \"BTCUSDT\",\n                \"c\": 2400,\n                \"h\": 1000000,\n                \"l\": 2400,\n                \"m\": 1723988912885,\n                \"o\": 1000000,\n                \"v\": 388000\n            },\n            {\n                \"_id\": \"66bef92af79dcb2ad055e898\",\n                \"created\": 1723766400000,\n                \"market\": \"BTCUSDT\",\n                \"c\": 1000000,\n                \"h\": 1000000,\n                \"l\": 1000000,\n                \"m\": 1723861521889,\n                \"o\": 1000000,\n                \"v\": 1800000\n            },\n            {\n                \"_id\": \"66bc0f78f79dcb2ad09754a9\",\n                \"created\": 1723593600000,\n                \"market\": \"BTCUSDT\",\n                \"c\": 1000000,\n                \"h\": 7999900,\n                \"l\": 100,\n                \"m\": 1723791421486,\n                \"o\": 100,\n                \"v\": 2100000\n            },\n            {\n                \"_id\": \"66bac500f79dcb2ad03054c4\",\n                \"created\": 1723507200000,\n                \"market\": \"BTCUSDT\",\n                \"c\": 1000000,\n                \"h\": 1000000,\n                \"l\": 1000000,\n                \"m\": 1723599196077,\n                \"o\": 1000000,\n                \"v\": 6330000\n            },\n            {\n                \"_id\": \"66b9c3e3f79dcb2ad07b95cb\",\n                \"created\": 1723420800000,\n                \"market\": \"BTCUSDT\",\n                \"c\": 1000000,\n                \"h\": 8888800,\n                \"l\": 1000000,\n                \"m\": 1723516122449,\n                \"o\": 1000000,\n                \"v\": 3520000\n            },\n            {\n                \"_id\": \"66b32442f79dcb2ad049295e\",\n                \"created\": 1722988800000,\n                \"market\": \"BTCUSDT\",\n                \"c\": 1000000,\n                \"h\": 1000000,\n                \"l\": 1000,\n                \"m\": 1723016613762,\n                \"o\": 1000,\n                \"v\": 700000\n            },\n            {\n                \"_id\": \"66b08247f79dcb2ad0ac2118\",\n                \"created\": 1722816000000,\n                \"market\": \"BTCUSDT\",\n                \"c\": 1000,\n                \"h\": 10100,\n                \"l\": 1000,\n                \"m\": 1723002464994,\n                \"o\": 1000,\n                \"v\": 11900000\n            },\n            {\n                \"_id\": \"66ac905cf79dcb2ad0bfe2a5\",\n                \"created\": 1722556800000,\n                \"market\": \"BTCUSDT\",\n                \"c\": 1000,\n                \"h\": 1000,\n                \"l\": 1000,\n                \"m\": 1722843667869,\n                \"o\": 1000,\n                \"v\": 400000\n            },\n            {\n                \"_id\": \"66ab0141f79dcb2ad0d03b5a\",\n                \"created\": 1722470400000,\n                \"market\": \"BTCUSDT\",\n                \"c\": 1000000,\n                \"h\": 8888800,\n                \"l\": 1000000,\n                \"m\": 1722585069676,\n                \"o\": 8888800,\n                \"v\": 700000\n            },\n            {\n                \"_id\": \"66a97e81f79dcb2ad01aea1c\",\n                \"created\": 1722384000000,\n                \"market\": \"BTCUSDT\",\n                \"c\": 2000100,\n                \"h\": 2000100,\n                \"l\": 1000,\n                \"m\": 1722481035249,\n                \"o\": 1038,\n                \"v\": 8788256000\n            },\n            {\n                \"_id\": \"66a89654f79dcb2ad07cdabc\",\n                \"created\": 1722297600000,\n                \"market\": \"BTCUSDT\",\n                \"c\": 1024,\n                \"h\": 1099,\n                \"l\": 1000,\n                \"m\": 1722384000297,\n                \"o\": 1061,\n                \"v\": 96892596000\n            },\n            {\n                \"_id\": \"66a72ebdf79dcb2ad07ab57f\",\n                \"created\": 1722211200000,\n                \"market\": \"BTCUSDT\",\n                \"c\": 1084,\n                \"h\": 1099,\n                \"l\": 1000,\n                \"m\": 1722266667853,\n                \"o\": 1085,\n                \"v\": 23644640000\n            },\n            {\n                \"_id\": \"6699cf4ff79dcb2ad0f6a20b\",\n                \"created\": 1721347200000,\n                \"market\": \"BTCUSDT\",\n                \"c\": 600,\n                \"h\": 9888900,\n                \"l\": 100,\n                \"m\": 1721375406946,\n                \"o\": 6043,\n                \"v\": 17662035039\n            },\n            {\n                \"_id\": \"6695e15ff79dcb2ad0b73888\",\n                \"created\": 1721088000000,\n                \"market\": \"BTCUSDT\",\n                \"c\": 1054,\n                \"h\": 1099,\n                \"l\": 1000,\n                \"m\": 1721122843129,\n                \"o\": 1013,\n                \"v\": 435358309174\n            },\n            {\n                \"_id\": \"6694d9d6f79dcb2ad0d74861\",\n                \"created\": 1721001600000,\n                \"market\": \"BTCUSDT\",\n                \"c\": 1000000,\n                \"h\": 1000000,\n                \"l\": 1000000,\n                \"m\": 1721098590876,\n                \"o\": 1000000,\n                \"v\": 1500000\n            },\n            {\n                \"_id\": \"66908476f79dcb2ad09079d1\",\n                \"created\": 1720742400000,\n                \"market\": \"BTCUSDT\",\n                \"c\": 0,\n                \"h\": 1000000,\n                \"l\": 1000,\n                \"m\": 1724219137331,\n                \"o\": 1000000,\n                \"v\": 505778718876\n            },\n            {\n                \"_id\": \"669dbb1ff79dcb2ad0b8c5cf\",\n                \"created\": 0,\n                \"market\": \"BTCUSDT\",\n                \"c\": 0,\n                \"h\": 4500000,\n                \"l\": 4500000,\n                \"m\": 1721614369942,\n                \"o\": 4500000,\n                \"v\": 1000000\n            }\n        ],\n        \"1h\": [\n            {\n                \"_id\": \"66c57f53f79dcb2ad043d1ec\",\n                \"created\": 1724216400000,\n                \"market\": \"BTCUSDT\",\n                \"c\": 6110000,\n                \"h\": 6110000,\n                \"l\": 6110000,\n                \"m\": 1724219219869,\n                \"o\": 6110000,\n                \"v\": 200000\n            },\n            {\n                \"_id\": \"66c4a34bf79dcb2ad036fae3\",\n                \"created\": 1724162400000,\n                \"market\": \"BTCUSDT\",\n                \"c\": 1000000,\n                \"h\": 1000000,\n                \"l\": 88800,\n                \"m\": 1724206761018,\n                \"o\": 88800,\n                \"v\": 790000\n            },\n            {\n                \"_id\": \"66c4442ef79dcb2ad0317735\",\n                \"created\": 1724137200000,\n                \"market\": \"BTCUSDT\",\n                \"c\": 6099900,\n                \"h\": 6099900,\n                \"l\": 1000000,\n                \"m\": 1724161298575,\n                \"o\": 3000000,\n                \"v\": 400000\n            },\n            {\n                \"_id\": \"66c43201f79dcb2ad03064e9\",\n                \"created\": 1724133600000,\n                \"market\": \"BTCUSDT\",\n                \"c\": 3000000,\n                \"h\": 3000000,\n                \"l\": 1000000,\n                \"m\": 1724133889964,\n                \"o\": 1000000,\n                \"v\": 200000\n            },\n            {\n                \"_id\": \"66c35488f79dcb2ad092924c\",\n                \"created\": 1724076000000,\n                \"market\": \"BTCUSDT\",\n                \"c\": 1200,\n                \"h\": 1900,\n                \"l\": 1200,\n                \"m\": 1724077318453,\n                \"o\": 1900,\n                \"v\": 500000\n            },\n            {\n                \"_id\": \"66c34ed3f79dcb2ad083dc99\",\n                \"created\": 1724072400000,\n                \"market\": \"BTCUSDT\",\n                \"c\": 53400,\n                \"h\": 53400,\n                \"l\": 53400,\n                \"m\": 1724076329009,\n                \"o\": 53400,\n                \"v\": 500000\n            },\n            {\n                \"_id\": \"66c30140f79dcb2ad0be0fc5\",\n                \"created\": 1724054400000,\n                \"market\": \"BTCUSDT\",\n                \"c\": 53400,\n                \"h\": 6000000,\n                \"l\": 53400,\n                \"m\": 1724071550487,\n                \"o\": 6000000,\n                \"v\": 500000\n            },\n            {\n                \"_id\": \"66c2a458f79dcb2ad0d1c2aa\",\n                \"created\": 1724029200000,\n                \"market\": \"BTCUSDT\",\n                \"c\": 6000000,\n                \"h\": 6000000,\n                \"l\": 1000000,\n                \"m\": 1724034225767,\n                \"o\": 1000000,\n                \"v\": 140000\n            },\n            {\n                \"_id\": \"66c1fbc3f79dcb2ad0225f9d\",\n                \"created\": 1723986000000,\n                \"market\": \"BTCUSDT\",\n                \"c\": 6000000,\n                \"h\": 6000000,\n                \"l\": 2850,\n                \"m\": 1724031986290,\n                \"o\": 2850,\n                \"v\": 380000\n            },\n            {\n                \"_id\": \"66c00bdaf79dcb2ad025442a\",\n                \"created\": 1723860000000,\n                \"market\": \"BTCUSDT\",\n                \"c\": 2400,\n                \"h\": 1000000,\n                \"l\": 2400,\n                \"m\": 1723988912885,\n                \"o\": 1000000,\n                \"v\": 388000\n            },\n            {\n                \"_id\": \"66bf27c5f79dcb2ad0cf0639\",\n                \"created\": 1723802400000,\n                \"market\": \"BTCUSDT\",\n                \"c\": 1000000,\n                \"h\": 1000000,\n                \"l\": 1000000,\n                \"m\": 1723861521889,\n                \"o\": 1000000,\n                \"v\": 788000\n            },\n            {\n                \"_id\": \"66bef92af79dcb2ad055e8a8\",\n                \"created\": 1723791600000,\n                \"market\": \"BTCUSDT\",\n                \"c\": 1000000,\n                \"h\": 1000000,\n                \"l\": 1000000,\n                \"m\": 1723803324986,\n                \"o\": 1000000,\n                \"v\": 900000\n            },\n            {\n                \"_id\": \"66bcebd8f79dcb2ad0df99db\",\n                \"created\": 1723654800000,\n                \"market\": \"BTCUSDT\",\n                \"c\": 1000000,\n                \"h\": 6000000,\n                \"l\": 1000000,\n                \"m\": 1723791421487,\n                \"o\": 6000000,\n                \"v\": 500000\n            },\n            {\n                \"_id\": \"66bcb220f79dcb2ad04544a3\",\n                \"created\": 1723640400000,\n                \"market\": \"BTCUSDT\",\n                \"c\": 1000000,\n                \"h\": 7999900,\n                \"l\": 1000000,\n                \"m\": 1723657165861,\n                \"o\": 7999900,\n                \"v\": 300000\n            },\n            {\n                \"_id\": \"66bc8e43f79dcb2ad0e544be\",\n                \"created\": 1723633200000,\n                \"market\": \"BTCUSDT\",\n                \"c\": 6011100,\n                \"h\": 7999900,\n                \"l\": 100,\n                \"m\": 1723636971378,\n                \"o\": 100,\n                \"v\": 1100000\n            },\n            {\n                \"_id\": \"66bc1794f79dcb2ad0ac8819\",\n                \"created\": 1723600800000,\n                \"market\": \"BTCUSDT\",\n                \"c\": 1000000,\n                \"h\": 1000000,\n                \"l\": 1000000,\n                \"m\": 1723603175567,\n                \"o\": 1000000,\n                \"v\": 930000\n            },\n            {\n                \"_id\": \"66bc0f78f79dcb2ad09754b9\",\n                \"created\": 1723597200000,\n                \"market\": \"BTCUSDT\",\n                \"c\": 1000000,\n                \"h\": 1000000,\n                \"l\": 1000000,\n                \"m\": 1723602690778,\n                \"o\": 1000000,\n                \"v\": 330000\n            },\n            {\n                \"_id\": \"66bb7ae0f79dcb2ad010de82\",\n                \"created\": 1723561200000,\n                \"market\": \"BTCUSDT\",\n                \"c\": 1000000,\n                \"h\": 1000000,\n                \"l\": 1000000,\n                \"m\": 1723599196077,\n                \"o\": 1000000,\n                \"v\": 730000\n            },\n            {\n                \"_id\": \"66bb6aacf79dcb2ad0e60334\",\n                \"created\": 1723557600000,\n                \"market\": \"BTCUSDT\",\n                \"c\": 1000000,\n                \"h\": 1000000,\n                \"l\": 1000000,\n                \"m\": 1723562473747,\n                \"o\": 1000000,\n                \"v\": 90000\n            },\n            {\n                \"_id\": \"66bafabcf79dcb2ad0bf45c2\",\n                \"created\": 1723528800000,\n                \"market\": \"BTCUSDT\",\n                \"c\": 1000000,\n                \"h\": 1000000,\n                \"l\": 1000000,\n                \"m\": 1723558441045,\n                \"o\": 1000000,\n                \"v\": 2370000\n            },\n            {\n                \"_id\": \"66badb96f79dcb2ad06c9c12\",\n                \"created\": 1723521600000,\n                \"market\": \"BTCUSDT\",\n                \"c\": 1000000,\n                \"h\": 1000000,\n                \"l\": 1000000,\n                \"m\": 1723529871346,\n                \"o\": 1000000,\n                \"v\": 500000\n            },\n            {\n                \"_id\": \"66bad55ef79dcb2ad05c0452\",\n                \"created\": 1723518000000,\n                \"market\": \"BTCUSDT\",\n                \"c\": 1000000,\n                \"h\": 1000000,\n                \"l\": 1000000,\n                \"m\": 1723521655599,\n                \"o\": 1000000,\n                \"v\": 1170000\n            },\n            {\n                \"_id\": \"66bac500f79dcb2ad03054da\",\n                \"created\": 1723514400000,\n                \"market\": \"BTCUSDT\",\n                \"c\": 1000000,\n                \"h\": 1000000,\n                \"l\": 1000000,\n                \"m\": 1723520346953,\n                \"o\": 1000000,\n                \"v\": 1070000\n            },\n            {\n                \"_id\": \"66ba0c2df79dcb2ad03e70e7\",\n                \"created\": 1723467600000,\n                \"market\": \"BTCUSDT\",\n                \"c\": 1000000,\n                \"h\": 6888800,\n                \"l\": 1000000,\n                \"m\": 1723516122450,\n                \"o\": 6888800,\n                \"v\": 2230000\n            },\n            {\n                \"_id\": \"66b9fbc7f79dcb2ad0125e62\",\n                \"created\": 1723464000000,\n                \"market\": \"BTCUSDT\",\n                \"c\": 7788800,\n                \"h\": 8888800,\n                \"l\": 1000000,\n                \"m\": 1723468766933,\n                \"o\": 1000000,\n                \"v\": 1260000\n            },\n            {\n                \"_id\": \"66b9ddc7f79dcb2ad0c13cf8\",\n                \"created\": 1723456800000,\n                \"market\": \"BTCUSDT\",\n                \"c\": 6500000,\n                \"h\": 6500000,\n                \"l\": 6250000,\n                \"m\": 1723457288888,\n                \"o\": 6250000,\n                \"v\": 580000\n            },\n            {\n                \"_id\": \"66b9d35ef79dcb2ad0a547a1\",\n                \"created\": 1723453200000,\n                \"market\": \"BTCUSDT\",\n                \"c\": 6300000,\n                \"h\": 6500000,\n                \"l\": 6300000,\n                \"m\": 1723456849740,\n                \"o\": 6500000,\n                \"v\": 872000\n            },\n            {\n                \"_id\": \"66b9c3e3f79dcb2ad07b95e2\",\n                \"created\": 1723449600000,\n                \"market\": \"BTCUSDT\",\n                \"c\": 6500000,\n                \"h\": 6500000,\n                \"l\": 1000000,\n                \"m\": 1723453949669,\n                \"o\": 1000000,\n                \"v\": 600000\n            },\n            {\n                \"_id\": \"66b32442f79dcb2ad0492976\",\n                \"created\": 1723014000000,\n                \"market\": \"BTCUSDT\",\n                \"c\": 1000000,\n                \"h\": 1000000,\n                \"l\": 1000,\n                \"m\": 1723016613762,\n                \"o\": 1000,\n                \"v\": 700000\n            },\n            {\n                \"_id\": \"66b0c4f8f79dcb2ad06f242d\",\n                \"created\": 1722859200000,\n                \"market\": \"BTCUSDT\",\n                \"c\": 1000,\n                \"h\": 10100,\n                \"l\": 1000,\n                \"m\": 1723002464994,\n                \"o\": 1000,\n                \"v\": 7300000\n            },\n            {\n                \"_id\": \"66b08247f79dcb2ad0ac2129\",\n                \"created\": 1722841200000,\n                \"market\": \"BTCUSDT\",\n                \"c\": 1000,\n                \"h\": 1000,\n                \"l\": 1000,\n                \"m\": 1722860732511,\n                \"o\": 1000,\n                \"v\": 4500000\n            },\n            {\n                \"_id\": \"66ac905cf79dcb2ad0bfe2bb\",\n                \"created\": 1722582000000,\n                \"market\": \"BTCUSDT\",\n                \"c\": 1000,\n                \"h\": 1000,\n                \"l\": 1000,\n                \"m\": 1722843667869,\n                \"o\": 1000,\n                \"v\": 400000\n            },\n            {\n                \"_id\": \"66ab8da4f79dcb2ad081026e\",\n                \"created\": 1722517200000,\n                \"market\": \"BTCUSDT\",\n                \"c\": 1000000,\n                \"h\": 8888800,\n                \"l\": 1000000,\n                \"m\": 1722585069677,\n                \"o\": 8888800,\n                \"v\": 700000\n            },\n            {\n                \"_id\": \"66ab2b7af79dcb2ad04e2fc7\",\n                \"created\": 1722492000000,\n                \"market\": \"BTCUSDT\",\n                \"c\": 1000000,\n                \"h\": 1000000,\n                \"l\": 1000000,\n                \"m\": 1722493818114,\n                \"o\": 1000000,\n                \"v\": 300000\n            },\n            {\n                \"_id\": \"66ab0141f79dcb2ad0d03b6c\",\n                \"created\": 1722481200000,\n                \"market\": \"BTCUSDT\",\n                \"c\": 1000000,\n                \"h\": 2000100,\n                \"l\": 1000000,\n                \"m\": 1722486256969,\n                \"o\": 2000100,\n                \"v\": 1900000\n            },\n            {\n                \"_id\": \"66aa4f25f79dcb2ad0b598b2\",\n                \"created\": 1722434400000,\n                \"market\": \"BTCUSDT\",\n                \"c\": 2000100,\n                \"h\": 2000100,\n                \"l\": 1000700,\n                \"m\": 1722481035249,\n                \"o\": 1000900,\n                \"v\": 1200000\n            },\n            {\n                \"_id\": \"66a98c90f79dcb2ad056ced2\",\n                \"created\": 1722387600000,\n                \"market\": \"BTCUSDT\",\n                \"c\": 1029,\n                \"h\": 1099,\n                \"l\": 1000,\n                \"m\": 1722437375874,\n                \"o\": 1048,\n                \"v\": 1169816000\n            },\n            {\n                \"_id\": \"66a97e81f79dcb2ad01aea2d\",\n                \"created\": 1722384000000,\n                \"market\": \"BTCUSDT\",\n                \"c\": 1048,\n                \"h\": 1099,\n                \"l\": 1000,\n                \"m\": 1722387600152,\n                \"o\": 1038,\n                \"v\": 7617240000\n            },\n            {\n                \"_id\": \"66a97071f79dcb2ad0dfbe34\",\n                \"created\": 1722380400000,\n                \"market\": \"BTCUSDT\",\n                \"c\": 1024,\n                \"h\": 1099,\n                \"l\": 1000,\n                \"m\": 1722384000297,\n                \"o\": 1055,\n                \"v\": 7525584000\n            },\n            {\n                \"_id\": \"66a96261f79dcb2ad0a46c97\",\n                \"created\": 1722376800000,\n                \"market\": \"BTCUSDT\",\n                \"c\": 1060,\n                \"h\": 1099,\n                \"l\": 1000,\n                \"m\": 1722380400305,\n                \"o\": 1013,\n                \"v\": 7607388000\n            },\n            {\n                \"_id\": \"66a95450f79dcb2ad0690771\",\n                \"created\": 1722373200000,\n                \"market\": \"BTCUSDT\",\n                \"c\": 1088,\n                \"h\": 1099,\n                \"l\": 1000,\n                \"m\": 1722376801433,\n                \"o\": 1043,\n                \"v\": 7669662000\n            },\n            {\n                \"_id\": \"66a94640f79dcb2ad02d3648\",\n                \"created\": 1722369600000,\n                \"market\": \"BTCUSDT\",\n                \"c\": 1058,\n                \"h\": 1099,\n                \"l\": 1000,\n                \"m\": 1722373200127,\n                \"o\": 1020,\n                \"v\": 7688851000\n            },\n            {\n                \"_id\": \"66a93831f79dcb2ad0f12f85\",\n                \"created\": 1722366000000,\n                \"market\": \"BTCUSDT\",\n                \"c\": 1072,\n                \"h\": 1099,\n                \"l\": 1000,\n                \"m\": 1722369600451,\n                \"o\": 1033,\n                \"v\": 7536383000\n            },\n            {\n                \"_id\": \"66a92a20f79dcb2ad0b4d12e\",\n                \"created\": 1722362400000,\n                \"market\": \"BTCUSDT\",\n                \"c\": 1036,\n                \"h\": 1099,\n                \"l\": 1000,\n                \"m\": 1722366000143,\n                \"o\": 1054,\n                \"v\": 7742659000\n            },\n            {\n                \"_id\": \"66a91c10f79dcb2ad078717d\",\n                \"created\": 1722358800000,\n                \"market\": \"BTCUSDT\",\n                \"c\": 1048,\n                \"h\": 1099,\n                \"l\": 1000,\n                \"m\": 1722362400382,\n                \"o\": 1073,\n                \"v\": 7642962000\n            },\n            {\n                \"_id\": \"66a90e00f79dcb2ad03c797b\",\n                \"created\": 1722355200000,\n                \"market\": \"BTCUSDT\",\n                \"c\": 1060,\n                \"h\": 1099,\n                \"l\": 1000,\n                \"m\": 1722358800323,\n                \"o\": 1045,\n                \"v\": 7589621000\n            },\n            {\n                \"_id\": \"66a8fff0f79dcb2ad0005d90\",\n                \"created\": 1722351600000,\n                \"market\": \"BTCUSDT\",\n                \"c\": 1038,\n                \"h\": 1099,\n                \"l\": 1000,\n                \"m\": 1722355200311,\n                \"o\": 1069,\n                \"v\": 7470157000\n            },\n            {\n                \"_id\": \"66a8f1e1f79dcb2ad0c401fe\",\n                \"created\": 1722348000000,\n                \"market\": \"BTCUSDT\",\n                \"c\": 1069,\n                \"h\": 1099,\n                \"l\": 1000,\n                \"m\": 1722351600170,\n                \"o\": 1093,\n                \"v\": 7461559000\n            },\n            {\n                \"_id\": \"66a8e3d0f79dcb2ad087b97e\",\n                \"created\": 1722344400000,\n                \"market\": \"BTCUSDT\",\n                \"c\": 1007,\n                \"h\": 1099,\n                \"l\": 1000,\n                \"m\": 1722348000668,\n                \"o\": 1085,\n                \"v\": 7593808000\n            },\n            {\n                \"_id\": \"66a8d5c0f79dcb2ad04b7a57\",\n                \"created\": 1722340800000,\n                \"market\": \"BTCUSDT\",\n                \"c\": 1041,\n                \"h\": 1099,\n                \"l\": 1000,\n                \"m\": 1722344400255,\n                \"o\": 1047,\n                \"v\": 7582161000\n            }\n        ],\n        \"1m\": [\n            {\n                \"_id\": \"66c57f53f79dcb2ad043d1fc\",\n                \"created\": 1724219160000,\n                \"market\": \"BTCUSDT\",\n                \"c\": 6110000,\n                \"h\": 6110000,\n                \"l\": 6110000,\n                \"m\": 1724219219871,\n                \"o\": 6110000,\n                \"v\": 200000\n            },\n            {\n                \"_id\": \"66c4a34bf79dcb2ad036faf4\",\n                \"created\": 1724162880000,\n                \"market\": \"BTCUSDT\",\n                \"c\": 1000000,\n                \"h\": 1000000,\n                \"l\": 88800,\n                \"m\": 1724206761020,\n                \"o\": 88800,\n                \"v\": 790000\n            },\n            {\n                \"_id\": \"66c4442ef79dcb2ad0317745\",\n                \"created\": 1724138520000,\n                \"market\": \"BTCUSDT\",\n                \"c\": 6099900,\n                \"h\": 6099900,\n                \"l\": 1000000,\n                \"m\": 1724161298576,\n                \"o\": 3000000,\n                \"v\": 400000\n            },\n            {\n                \"_id\": \"66c43202f79dcb2ad03064f8\",\n                \"created\": 1724133840000,\n                \"market\": \"BTCUSDT\",\n                \"c\": 3000000,\n                \"h\": 3000000,\n                \"l\": 1000000,\n                \"m\": 1724133889965,\n                \"o\": 1000000,\n                \"v\": 200000\n            },\n            {\n                \"_id\": \"66c35506f79dcb2ad093d700\",\n                \"created\": 1724077260000,\n                \"market\": \"BTCUSDT\",\n                \"c\": 1200,\n                \"h\": 1200,\n                \"l\": 1200,\n                \"m\": 1724077318453,\n                \"o\": 1200,\n                \"v\": 300000\n            },\n            {\n                \"_id\": \"66c35129f79dcb2ad089e1da\",\n                \"created\": 1724076300000,\n                \"market\": \"BTCUSDT\",\n                \"c\": 1900,\n                \"h\": 53400,\n                \"l\": 1900,\n                \"m\": 1724077192646,\n                \"o\": 53400,\n                \"v\": 300000\n            },\n            {\n                \"_id\": \"66c34ed3f79dcb2ad083dcb5\",\n                \"created\": 1724075700000,\n                \"market\": \"BTCUSDT\",\n                \"c\": 53400,\n                \"h\": 53400,\n                \"l\": 53400,\n                \"m\": 1724075803500,\n                \"o\": 53400,\n                \"v\": 300000\n            },\n            {\n                \"_id\": \"66c30143f79dcb2ad0be15e5\",\n                \"created\": 1724055840000,\n                \"market\": \"BTCUSDT\",\n                \"c\": 53400,\n                \"h\": 53400,\n                \"l\": 53400,\n                \"m\": 1724071550487,\n                \"o\": 53400,\n                \"v\": 300000\n            },\n            {\n                \"_id\": \"66c2acb1f79dcb2ad0e70746\",\n                \"created\": 1724034180000,\n                \"market\": \"BTCUSDT\",\n                \"c\": 6000000,\n                \"h\": 6000000,\n                \"l\": 6000000,\n                \"m\": 1724055872892,\n                \"o\": 6000000,\n                \"v\": 220000\n            },\n            {\n                \"_id\": \"66c2a458f79dcb2ad0d1c2ba\",\n                \"created\": 1724031960000,\n                \"market\": \"BTCUSDT\",\n                \"c\": 1000000,\n                \"h\": 1000000,\n                \"l\": 1000000,\n                \"m\": 1724032088885,\n                \"o\": 1000000,\n                \"v\": 200000\n            },\n            {\n                \"_id\": \"66c1fbb0f79dcb2ad022306a\",\n                \"created\": 1723988880000,\n                \"market\": \"BTCUSDT\",\n                \"c\": 6000000,\n                \"h\": 6000000,\n                \"l\": 2400,\n                \"m\": 1724031986290,\n                \"o\": 2400,\n                \"v\": 500000\n            },\n            {\n                \"_id\": \"66c00a11f79dcb2ad020a8bc\",\n                \"created\": 1723861500000,\n                \"market\": \"BTCUSDT\",\n                \"c\": 1000000,\n                \"h\": 1000000,\n                \"l\": 1000000,\n                \"m\": 1723861978004,\n                \"o\": 1000000,\n                \"v\": 288000\n            },\n            {\n                \"_id\": \"66bf2802f79dcb2ad0cfa5a1\",\n                \"created\": 1723803600000,\n                \"market\": \"BTCUSDT\",\n                \"c\": 1000000,\n                \"h\": 1000000,\n                \"l\": 1000000,\n                \"m\": 1723803673140,\n                \"o\": 1000000,\n                \"v\": 288000\n            },\n            {\n                \"_id\": \"66bf26bdf79dcb2ad0cc523c\",\n                \"created\": 1723803300000,\n                \"market\": \"BTCUSDT\",\n                \"c\": 1000000,\n                \"h\": 1000000,\n                \"l\": 1000000,\n                \"m\": 1723803589290,\n                \"o\": 1000000,\n                \"v\": 288000\n            },\n            {\n                \"_id\": \"66bef95af79dcb2ad0566853\",\n                \"created\": 1723791660000,\n                \"market\": \"BTCUSDT\",\n                \"c\": 1000000,\n                \"h\": 1000000,\n                \"l\": 1000000,\n                \"m\": 1723792092594,\n                \"o\": 1000000,\n                \"v\": 212000\n            },\n            {\n                \"_id\": \"66bef92af79dcb2ad055e8b8\",\n                \"created\": 1723791600000,\n                \"market\": \"BTCUSDT\",\n                \"c\": 1000000,\n                \"h\": 1000000,\n                \"l\": 1000000,\n                \"m\": 1723791675054,\n                \"o\": 1000000,\n                \"v\": 300000\n            },\n            {\n                \"_id\": \"66bcebd8f79dcb2ad0df99f5\",\n                \"created\": 1723657140000,\n                \"market\": \"BTCUSDT\",\n                \"c\": 1000000,\n                \"h\": 6000000,\n                \"l\": 1000000,\n                \"m\": 1723791421487,\n                \"o\": 6000000,\n                \"v\": 500000\n            },\n            {\n                \"_id\": \"66bcb220f79dcb2ad04544ca\",\n                \"created\": 1723642380000,\n                \"market\": \"BTCUSDT\",\n                \"c\": 1000000,\n                \"h\": 7999900,\n                \"l\": 1000000,\n                \"m\": 1723657165861,\n                \"o\": 7999900,\n                \"v\": 300000\n            },\n            {\n                \"_id\": \"66bc8f0af79dcb2ad0e75b0e\",\n                \"created\": 1723633380000,\n                \"market\": \"BTCUSDT\",\n                \"c\": 6011100,\n                \"h\": 7999900,\n                \"l\": 6011100,\n                \"m\": 1723636971379,\n                \"o\": 7999900,\n                \"v\": 500000\n            },\n            {\n                \"_id\": \"66bc8e43f79dcb2ad0e544d4\",\n                \"created\": 1723633200000,\n                \"market\": \"BTCUSDT\",\n                \"c\": 7011100,\n                \"h\": 7011100,\n                \"l\": 100,\n                \"m\": 1723633404658,\n                \"o\": 100,\n                \"v\": 600000\n            },\n            {\n                \"_id\": \"66bc1873f79dcb2ad0aece28\",\n                \"created\": 1723603020000,\n                \"market\": \"BTCUSDT\",\n                \"c\": 1000000,\n                \"h\": 1000000,\n                \"l\": 1000000,\n                \"m\": 1723603175567,\n                \"o\": 1000000,\n                \"v\": 230000\n            },\n            {\n                \"_id\": \"66bc17fcf79dcb2ad0ad95b3\",\n                \"created\": 1723602900000,\n                \"market\": \"BTCUSDT\",\n                \"c\": 1000000,\n                \"h\": 1000000,\n                \"l\": 1000000,\n                \"m\": 1723603040134,\n                \"o\": 1000000,\n                \"v\": 270000\n            },\n            {\n                \"_id\": \"66bc1795f79dcb2ad0ac882a\",\n                \"created\": 1723602660000,\n                \"market\": \"BTCUSDT\",\n                \"c\": 1000000,\n                \"h\": 1000000,\n                \"l\": 1000000,\n                \"m\": 1723602836972,\n                \"o\": 1000000,\n                \"v\": 130000\n            },\n            {\n                \"_id\": \"66bc0f7ef79dcb2ad09762a6\",\n                \"created\": 1723600740000,\n                \"market\": \"BTCUSDT\",\n                \"c\": 1000000,\n                \"h\": 1000000,\n                \"l\": 1000000,\n                \"m\": 1723602690779,\n                \"o\": 1000000,\n                \"v\": 130000\n            },\n            {\n                \"_id\": \"66bc0f78f79dcb2ad09754d4\",\n                \"created\": 1723599180000,\n                \"market\": \"BTCUSDT\",\n                \"c\": 1000000,\n                \"h\": 1000000,\n                \"l\": 1000000,\n                \"m\": 1723600760881,\n                \"o\": 1000000,\n                \"v\": 130000\n            },\n            {\n                \"_id\": \"66bb7bc3f79dcb2ad0133309\",\n                \"created\": 1723562940000,\n                \"market\": \"BTCUSDT\",\n                \"c\": 1000000,\n                \"h\": 1000000,\n                \"l\": 1000000,\n                \"m\": 1723599196077,\n                \"o\": 1000000,\n                \"v\": 270000\n            },\n            {\n                \"_id\": \"66bb7b97f79dcb2ad012c229\",\n                \"created\": 1723562880000,\n                \"market\": \"BTCUSDT\",\n                \"c\": 1000000,\n                \"h\": 1000000,\n                \"l\": 1000000,\n                \"m\": 1723562903766,\n                \"o\": 1000000,\n                \"v\": 100000\n            },\n            {\n                \"_id\": \"66bb7af3f79dcb2ad011115d\",\n                \"created\": 1723562700000,\n                \"market\": \"BTCUSDT\",\n                \"c\": 1000000,\n                \"h\": 1000000,\n                \"l\": 1000000,\n                \"m\": 1723562739489,\n                \"o\": 1000000,\n                \"v\": 130000\n            },\n            {\n                \"_id\": \"66bb79e9f79dcb2ad00e52b5\",\n                \"created\": 1723562460000,\n                \"market\": \"BTCUSDT\",\n                \"c\": 1000000,\n                \"h\": 1000000,\n                \"l\": 1000000,\n                \"m\": 1723562720752,\n                \"o\": 1000000,\n                \"v\": 230000\n            },\n            {\n                \"_id\": \"66bb6aacf79dcb2ad0e60348\",\n                \"created\": 1723558440000,\n                \"market\": \"BTCUSDT\",\n                \"c\": 1000000,\n                \"h\": 1000000,\n                \"l\": 1000000,\n                \"m\": 1723558572587,\n                \"o\": 1000000,\n                \"v\": 100000\n            },\n            {\n                \"_id\": \"66baff77f79dcb2ad0cbdd2a\",\n                \"created\": 1723531080000,\n                \"market\": \"BTCUSDT\",\n                \"c\": 1000000,\n                \"h\": 1000000,\n                \"l\": 1000000,\n                \"m\": 1723558441045,\n                \"o\": 1000000,\n                \"v\": 210000\n            },\n            {\n                \"_id\": \"66bafea5f79dcb2ad0c9ae16\",\n                \"created\": 1723530900000,\n                \"market\": \"BTCUSDT\",\n                \"c\": 1000000,\n                \"h\": 1000000,\n                \"l\": 1000000,\n                \"m\": 1723531017570,\n                \"o\": 1000000,\n                \"v\": 330000\n            },\n            {\n                \"_id\": \"66bafe92f79dcb2ad0c97946\",\n                \"created\": 1723530840000,\n                \"market\": \"BTCUSDT\",\n                \"c\": 1000000,\n                \"h\": 1000000,\n                \"l\": 1000000,\n                \"m\": 1723530901023,\n                \"o\": 1000000,\n                \"v\": 90000\n            },\n            {\n                \"_id\": \"66bafe45f79dcb2ad0c8adc8\",\n                \"created\": 1723530780000,\n                \"market\": \"BTCUSDT\",\n                \"c\": 1000000,\n                \"h\": 1000000,\n                \"l\": 1000000,\n                \"m\": 1723530821664,\n                \"o\": 1000000,\n                \"v\": 170000\n            },\n            {\n                \"_id\": \"66bafde0f79dcb2ad0c79ef0\",\n                \"created\": 1723530720000,\n                \"market\": \"BTCUSDT\",\n                \"c\": 1000000,\n                \"h\": 1000000,\n                \"l\": 1000000,\n                \"m\": 1723530754817,\n                \"o\": 1000000,\n                \"v\": 470000\n            },\n            {\n                \"_id\": \"66bafcfdf79dcb2ad0c544e6\",\n                \"created\": 1723530480000,\n                \"market\": \"BTCUSDT\",\n                \"c\": 1000000,\n                \"h\": 1000000,\n                \"l\": 1000000,\n                \"m\": 1723530717522,\n                \"o\": 1000000,\n                \"v\": 230000\n            },\n            {\n                \"_id\": \"66bafbb4f79dcb2ad0c1de0e\",\n                \"created\": 1723530120000,\n                \"market\": \"BTCUSDT\",\n                \"c\": 1000000,\n                \"h\": 1000000,\n                \"l\": 1000000,\n                \"m\": 1723530323879,\n                \"o\": 1000000,\n                \"v\": 270000\n            },\n            {\n                \"_id\": \"66bafabcf79dcb2ad0bf45e3\",\n                \"created\": 1723529880000,\n                \"market\": \"BTCUSDT\",\n                \"c\": 1000000,\n                \"h\": 1000000,\n                \"l\": 1000000,\n                \"m\": 1723529993535,\n                \"o\": 1000000,\n                \"v\": 230000\n            },\n            {\n                \"_id\": \"66bafa8ff79dcb2ad0bece6c\",\n                \"created\": 1723522020000,\n                \"market\": \"BTCUSDT\",\n                \"c\": 1000000,\n                \"h\": 1000000,\n                \"l\": 1000000,\n                \"m\": 1723529871346,\n                \"o\": 1000000,\n                \"v\": 60000\n            },\n            {\n                \"_id\": \"66badb9bf79dcb2ad06ca809\",\n                \"created\": 1723521900000,\n                \"market\": \"BTCUSDT\",\n                \"c\": 1000000,\n                \"h\": 1000000,\n                \"l\": 1000000,\n                \"m\": 1723522050950,\n                \"o\": 1000000,\n                \"v\": 170000\n            },\n            {\n                \"_id\": \"66badb96f79dcb2ad06c9c26\",\n                \"created\": 1723521600000,\n                \"market\": \"BTCUSDT\",\n                \"c\": 1000000,\n                \"h\": 1000000,\n                \"l\": 1000000,\n                \"m\": 1723521942850,\n                \"o\": 1000000,\n                \"v\": 130000\n            },\n            {\n                \"_id\": \"66bada2ef79dcb2ad068dc69\",\n                \"created\": 1723521540000,\n                \"market\": \"BTCUSDT\",\n                \"c\": 1000000,\n                \"h\": 1000000,\n                \"l\": 1000000,\n                \"m\": 1723521655599,\n                \"o\": 1000000,\n                \"v\": 210000\n            },\n            {\n                \"_id\": \"66bad634f79dcb2ad05e3d34\",\n                \"created\": 1723520520000,\n                \"market\": \"BTCUSDT\",\n                \"c\": 1000000,\n                \"h\": 1000000,\n                \"l\": 1000000,\n                \"m\": 1723520597316,\n                \"o\": 1000000,\n                \"v\": 230000\n            },\n            {\n                \"_id\": \"66bad5e1f79dcb2ad05d6176\",\n                \"created\": 1723520460000,\n                \"market\": \"BTCUSDT\",\n                \"c\": 1000000,\n                \"h\": 1000000,\n                \"l\": 1000000,\n                \"m\": 1723520536270,\n                \"o\": 1000000,\n                \"v\": 230000\n            },\n            {\n                \"_id\": \"66bad55ef79dcb2ad05c0462\",\n                \"created\": 1723520340000,\n                \"market\": \"BTCUSDT\",\n                \"c\": 1000000,\n                \"h\": 1000000,\n                \"l\": 1000000,\n                \"m\": 1723520418921,\n                \"o\": 1000000,\n                \"v\": 170000\n            },\n            {\n                \"_id\": \"66bac80cf79dcb2ad03871f1\",\n                \"created\": 1723516920000,\n                \"market\": \"BTCUSDT\",\n                \"c\": 1000000,\n                \"h\": 1000000,\n                \"l\": 1000000,\n                \"m\": 1723520346954,\n                \"o\": 1000000,\n                \"v\": 270000\n            },\n            {\n                \"_id\": \"66bac60af79dcb2ad0331b8c\",\n                \"created\": 1723516380000,\n                \"market\": \"BTCUSDT\",\n                \"c\": 1000000,\n                \"h\": 1000000,\n                \"l\": 1000000,\n                \"m\": 1723516707172,\n                \"o\": 1000000,\n                \"v\": 230000\n            },\n            {\n                \"_id\": \"66bac587f79dcb2ad031bf51\",\n                \"created\": 1723516260000,\n                \"market\": \"BTCUSDT\",\n                \"c\": 1000000,\n                \"h\": 1000000,\n                \"l\": 1000000,\n                \"m\": 1723516386021,\n                \"o\": 1000000,\n                \"v\": 270000\n            },\n            {\n                \"_id\": \"66bac500f79dcb2ad03054f8\",\n                \"created\": 1723516080000,\n                \"market\": \"BTCUSDT\",\n                \"c\": 1000000,\n                \"h\": 1000000,\n                \"l\": 1000000,\n                \"m\": 1723516160528,\n                \"o\": 1000000,\n                \"v\": 130000\n            },\n            {\n                \"_id\": \"66ba146df79dcb2ad054bbf4\",\n                \"created\": 1723470900000,\n                \"market\": \"BTCUSDT\",\n                \"c\": 1000000,\n                \"h\": 1000000,\n                \"l\": 1000000,\n                \"m\": 1723516122451,\n                \"o\": 1000000,\n                \"v\": 130000\n            }\n        ],\n        \"1w\": [\n            {\n                \"_id\": \"66bef92af79dcb2ad055e85a\",\n                \"created\": 1723680000000,\n                \"market\": \"BTCUSDT\",\n                \"c\": 6110000,\n                \"h\": 6110000,\n                \"l\": 6110000,\n                \"m\": 1724219219861,\n                \"o\": 6110000,\n                \"v\": 200000\n            },\n            {\n                \"_id\": \"66b9c3e3f79dcb2ad07b9583\",\n                \"created\": 1723075200000,\n                \"market\": \"BTCUSDT\",\n                \"c\": 1000000,\n                \"h\": 7999900,\n                \"l\": 100,\n                \"m\": 1723791421484,\n                \"o\": 100,\n                \"v\": 2100000\n            },\n            {\n                \"_id\": \"66ab0141f79dcb2ad0d03b20\",\n                \"created\": 1722470400000,\n                \"market\": \"BTCUSDT\",\n                \"c\": 1000000,\n                \"h\": 8888800,\n                \"l\": 1000,\n                \"m\": 1723016613761,\n                \"o\": 8888800,\n                \"v\": 14900000\n            },\n            {\n                \"_id\": \"66a72ebdf79dcb2ad07ab54e\",\n                \"created\": 1721865600000,\n                \"market\": \"BTCUSDT\",\n                \"c\": 2000100,\n                \"h\": 2000100,\n                \"l\": 1000,\n                \"m\": 1722481035248,\n                \"o\": 1061,\n                \"v\": 105681170000\n            },\n            {\n                \"_id\": \"6699cf4ff79dcb2ad0f6a201\",\n                \"created\": 1721260800000,\n                \"market\": \"BTCUSDT\",\n                \"c\": 4500000,\n                \"h\": 4500000,\n                \"l\": 4500000,\n                \"m\": 1721613064619,\n                \"o\": 4500000,\n                \"v\": 3000000\n            },\n            {\n                \"_id\": \"66908476f79dcb2ad0907943\",\n                \"created\": 1720656000000,\n                \"market\": \"BTCUSDT\",\n                \"c\": 0,\n                \"h\": 1000000,\n                \"l\": 1000,\n                \"m\": 1724219137322,\n                \"o\": 1000000,\n                \"v\": 941139080624\n            },\n            {\n                \"_id\": \"6699e1f0f79dcb2ad0457d43\",\n                \"created\": 0,\n                \"market\": \"BTCUSDT\",\n                \"c\": 0,\n                \"h\": 1000000,\n                \"l\": 1000000,\n                \"m\": 1724135722516,\n                \"o\": 1000000,\n                \"v\": 100000\n            }\n        ],\n        \"2h\": [\n            {\n                \"_id\": \"66c57f53f79dcb2ad043d1e7\",\n                \"created\": 1724212800000,\n                \"market\": \"BTCUSDT\",\n                \"c\": 6110000,\n                \"h\": 6110000,\n                \"l\": 6110000,\n                \"m\": 1724219219868,\n                \"o\": 6110000,\n                \"v\": 200000\n            },\n            {\n                \"_id\": \"66c4a34bf79dcb2ad036fadf\",\n                \"created\": 1724162400000,\n                \"market\": \"BTCUSDT\",\n                \"c\": 1000000,\n                \"h\": 1000000,\n                \"l\": 88800,\n                \"m\": 1724206761018,\n                \"o\": 88800,\n                \"v\": 790000\n            },\n            {\n                \"_id\": \"66c43201f79dcb2ad03064e4\",\n                \"created\": 1724133600000,\n                \"market\": \"BTCUSDT\",\n                \"c\": 6099900,\n                \"h\": 6099900,\n                \"l\": 1000000,\n                \"m\": 1724161298575,\n                \"o\": 3000000,\n                \"v\": 400000\n            },\n            {\n                \"_id\": \"66c35488f79dcb2ad0929244\",\n                \"created\": 1724076000000,\n                \"market\": \"BTCUSDT\",\n                \"c\": 1200,\n                \"h\": 1900,\n                \"l\": 1200,\n                \"m\": 1724077318453,\n                \"o\": 1900,\n                \"v\": 600000\n            },\n            {\n                \"_id\": \"66c34ed3f79dcb2ad083dc92\",\n                \"created\": 1724068800000,\n                \"market\": \"BTCUSDT\",\n                \"c\": 53400,\n                \"h\": 53400,\n                \"l\": 53400,\n                \"m\": 1724076329008,\n                \"o\": 53400,\n                \"v\": 500000\n            },\n            {\n                \"_id\": \"66c30140f79dcb2ad0be0fbf\",\n                \"created\": 1724054400000,\n                \"market\": \"BTCUSDT\",\n                \"c\": 53400,\n                \"h\": 6000000,\n                \"l\": 53400,\n                \"m\": 1724071550486,\n                \"o\": 6000000,\n                \"v\": 500000\n            },\n            {\n                \"_id\": \"66c2a458f79dcb2ad0d1c2a5\",\n                \"created\": 1724025600000,\n                \"market\": \"BTCUSDT\",\n                \"c\": 6000000,\n                \"h\": 6000000,\n                \"l\": 1000000,\n                \"m\": 1724034225767,\n                \"o\": 1000000,\n                \"v\": 140000\n            },\n            {\n                \"_id\": \"66c1fbc3f79dcb2ad0225f96\",\n                \"created\": 1723982400000,\n                \"market\": \"BTCUSDT\",\n                \"c\": 6000000,\n                \"h\": 6000000,\n                \"l\": 2850,\n                \"m\": 1724031986290,\n                \"o\": 2850,\n                \"v\": 380000\n            },\n            {\n                \"_id\": \"66c00bdaf79dcb2ad0254424\",\n                \"created\": 1723860000000,\n                \"market\": \"BTCUSDT\",\n                \"c\": 2400,\n                \"h\": 1000000,\n                \"l\": 2400,\n                \"m\": 1723988912885,\n                \"o\": 1000000,\n                \"v\": 388000\n            },\n            {\n                \"_id\": \"66bf27c5f79dcb2ad0cf0633\",\n                \"created\": 1723802400000,\n                \"market\": \"BTCUSDT\",\n                \"c\": 1000000,\n                \"h\": 1000000,\n                \"l\": 1000000,\n                \"m\": 1723861521889,\n                \"o\": 1000000,\n                \"v\": 800000\n            },\n            {\n                \"_id\": \"66bef92af79dcb2ad055e8a2\",\n                \"created\": 1723788000000,\n                \"market\": \"BTCUSDT\",\n                \"c\": 1000000,\n                \"h\": 1000000,\n                \"l\": 1000000,\n                \"m\": 1723803324986,\n                \"o\": 1000000,\n                \"v\": 900000\n            },\n            {\n                \"_id\": \"66bcebd8f79dcb2ad0df99d7\",\n                \"created\": 1723651200000,\n                \"market\": \"BTCUSDT\",\n                \"c\": 1000000,\n                \"h\": 6000000,\n                \"l\": 1000000,\n                \"m\": 1723791421487,\n                \"o\": 6000000,\n                \"v\": 500000\n            },\n            {\n                \"_id\": \"66bcb220f79dcb2ad045449a\",\n                \"created\": 1723636800000,\n                \"market\": \"BTCUSDT\",\n                \"c\": 1000000,\n                \"h\": 7999900,\n                \"l\": 1000000,\n                \"m\": 1723657165861,\n                \"o\": 7999900,\n                \"v\": 300000\n            },\n            {\n                \"_id\": \"66bc8e43f79dcb2ad0e544b9\",\n                \"created\": 1723629600000,\n                \"market\": \"BTCUSDT\",\n                \"c\": 6011100,\n                \"h\": 7999900,\n                \"l\": 100,\n                \"m\": 1723636971378,\n                \"o\": 100,\n                \"v\": 1100000\n            },\n            {\n                \"_id\": \"66bc1794f79dcb2ad0ac8814\",\n                \"created\": 1723600800000,\n                \"market\": \"BTCUSDT\",\n                \"c\": 1000000,\n                \"h\": 1000000,\n                \"l\": 1000000,\n                \"m\": 1723603175567,\n                \"o\": 1000000,\n                \"v\": 930000\n            },\n            {\n                \"_id\": \"66bc0f78f79dcb2ad09754b3\",\n                \"created\": 1723593600000,\n                \"market\": \"BTCUSDT\",\n                \"c\": 1000000,\n                \"h\": 1000000,\n                \"l\": 1000000,\n                \"m\": 1723602690778,\n                \"o\": 1000000,\n                \"v\": 330000\n            },\n            {\n                \"_id\": \"66bb6aacf79dcb2ad0e60330\",\n                \"created\": 1723557600000,\n                \"market\": \"BTCUSDT\",\n                \"c\": 1000000,\n                \"h\": 1000000,\n                \"l\": 1000000,\n                \"m\": 1723599196077,\n                \"o\": 1000000,\n                \"v\": 890000\n            },\n            {\n                \"_id\": \"66bafabcf79dcb2ad0bf45bc\",\n                \"created\": 1723528800000,\n                \"market\": \"BTCUSDT\",\n                \"c\": 1000000,\n                \"h\": 1000000,\n                \"l\": 1000000,\n                \"m\": 1723558441045,\n                \"o\": 1000000,\n                \"v\": 2370000\n            },\n            {\n                \"_id\": \"66badb96f79dcb2ad06c9c0c\",\n                \"created\": 1723521600000,\n                \"market\": \"BTCUSDT\",\n                \"c\": 1000000,\n                \"h\": 1000000,\n                \"l\": 1000000,\n                \"m\": 1723529871345,\n                \"o\": 1000000,\n                \"v\": 460000\n            },\n            {\n                \"_id\": \"66bac500f79dcb2ad03054d4\",\n                \"created\": 1723514400000,\n                \"market\": \"BTCUSDT\",\n                \"c\": 1000000,\n                \"h\": 1000000,\n                \"l\": 1000000,\n                \"m\": 1723521655598,\n                \"o\": 1000000,\n                \"v\": 2270000\n            },\n            {\n                \"_id\": \"66b9fbc7f79dcb2ad0125e5e\",\n                \"created\": 1723464000000,\n                \"market\": \"BTCUSDT\",\n                \"c\": 1000000,\n                \"h\": 8888800,\n                \"l\": 1000000,\n                \"m\": 1723516122450,\n                \"o\": 1000000,\n                \"v\": 3520000\n            },\n            {\n                \"_id\": \"66b9ddc7f79dcb2ad0c13cf0\",\n                \"created\": 1723456800000,\n                \"market\": \"BTCUSDT\",\n                \"c\": 6500000,\n                \"h\": 6500000,\n                \"l\": 6250000,\n                \"m\": 1723457288887,\n                \"o\": 6250000,\n                \"v\": 550000\n            },\n            {\n                \"_id\": \"66b9c3e3f79dcb2ad07b95db\",\n                \"created\": 1723449600000,\n                \"market\": \"BTCUSDT\",\n                \"c\": 6300000,\n                \"h\": 6500000,\n                \"l\": 1000000,\n                \"m\": 1723456849740,\n                \"o\": 1000000,\n                \"v\": 1472000\n            },\n            {\n                \"_id\": \"66b32442f79dcb2ad049296f\",\n                \"created\": 1723010400000,\n                \"market\": \"BTCUSDT\",\n                \"c\": 1000000,\n                \"h\": 1000000,\n                \"l\": 1000,\n                \"m\": 1723016613762,\n                \"o\": 1000,\n                \"v\": 700000\n            },\n            {\n                \"_id\": \"66b0c4f8f79dcb2ad06f2427\",\n                \"created\": 1722859200000,\n                \"market\": \"BTCUSDT\",\n                \"c\": 1000,\n                \"h\": 10100,\n                \"l\": 1000,\n                \"m\": 1723002464994,\n                \"o\": 1000,\n                \"v\": 7300000\n            },\n            {\n                \"_id\": \"66b08247f79dcb2ad0ac2124\",\n                \"created\": 1722837600000,\n                \"market\": \"BTCUSDT\",\n                \"c\": 1000,\n                \"h\": 1000,\n                \"l\": 1000,\n                \"m\": 1722860732511,\n                \"o\": 1000,\n                \"v\": 4500000\n            },\n            {\n                \"_id\": \"66ac905cf79dcb2ad0bfe2b3\",\n                \"created\": 1722578400000,\n                \"market\": \"BTCUSDT\",\n                \"c\": 1000,\n                \"h\": 1000,\n                \"l\": 1000,\n                \"m\": 1722843667869,\n                \"o\": 1000,\n                \"v\": 400000\n            },\n            {\n                \"_id\": \"66ab8da4f79dcb2ad0810268\",\n                \"created\": 1722513600000,\n                \"market\": \"BTCUSDT\",\n                \"c\": 1000000,\n                \"h\": 8888800,\n                \"l\": 1000000,\n                \"m\": 1722585069677,\n                \"o\": 8888800,\n                \"v\": 700000\n            },\n            {\n                \"_id\": \"66ab2b7af79dcb2ad04e2fc1\",\n                \"created\": 1722492000000,\n                \"market\": \"BTCUSDT\",\n                \"c\": 1000000,\n                \"h\": 1000000,\n                \"l\": 1000000,\n                \"m\": 1722493818114,\n                \"o\": 1000000,\n                \"v\": 300000\n            },\n            {\n                \"_id\": \"66ab0141f79dcb2ad0d03b66\",\n                \"created\": 1722477600000,\n                \"market\": \"BTCUSDT\",\n                \"c\": 1000000,\n                \"h\": 2000100,\n                \"l\": 1000000,\n                \"m\": 1722486256969,\n                \"o\": 2000100,\n                \"v\": 1900000\n            },\n            {\n                \"_id\": \"66aa4f25f79dcb2ad0b598ad\",\n                \"created\": 1722434400000,\n                \"market\": \"BTCUSDT\",\n                \"c\": 2000100,\n                \"h\": 2000100,\n                \"l\": 1000700,\n                \"m\": 1722481035249,\n                \"o\": 1000900,\n                \"v\": 1100000\n            },\n            {\n                \"_id\": \"66a97e81f79dcb2ad01aea27\",\n                \"created\": 1722384000000,\n                \"market\": \"BTCUSDT\",\n                \"c\": 1029,\n                \"h\": 1099,\n                \"l\": 1000,\n                \"m\": 1722437375874,\n                \"o\": 1038,\n                \"v\": 8787056000\n            },\n            {\n                \"_id\": \"66a96261f79dcb2ad0a46c92\",\n                \"created\": 1722376800000,\n                \"market\": \"BTCUSDT\",\n                \"c\": 1024,\n                \"h\": 1099,\n                \"l\": 1000,\n                \"m\": 1722384000297,\n                \"o\": 1000,\n                \"v\": 15133720000\n            },\n            {\n                \"_id\": \"66a94640f79dcb2ad02d3642\",\n                \"created\": 1722369600000,\n                \"market\": \"BTCUSDT\",\n                \"c\": 1077,\n                \"h\": 1099,\n                \"l\": 1000,\n                \"m\": 1722376801433,\n                \"o\": 1020,\n                \"v\": 15358154000\n            },\n            {\n                \"_id\": \"66a92a20f79dcb2ad0b4d129\",\n                \"created\": 1722362400000,\n                \"market\": \"BTCUSDT\",\n                \"c\": 1072,\n                \"h\": 1099,\n                \"l\": 1000,\n                \"m\": 1722369600451,\n                \"o\": 1073,\n                \"v\": 15279442000\n            },\n            {\n                \"_id\": \"66a90e00f79dcb2ad03c7975\",\n                \"created\": 1722355200000,\n                \"market\": \"BTCUSDT\",\n                \"c\": 1048,\n                \"h\": 1099,\n                \"l\": 1000,\n                \"m\": 1722362400382,\n                \"o\": 1045,\n                \"v\": 15232583000\n            },\n            {\n                \"_id\": \"66a8f1e1f79dcb2ad0c401f7\",\n                \"created\": 1722348000000,\n                \"market\": \"BTCUSDT\",\n                \"c\": 1045,\n                \"h\": 1099,\n                \"l\": 1000,\n                \"m\": 1722355200310,\n                \"o\": 1093,\n                \"v\": 14931977000\n            },\n            {\n                \"_id\": \"66a8d5c0f79dcb2ad04b7a51\",\n                \"created\": 1722340800000,\n                \"market\": \"BTCUSDT\",\n                \"c\": 1007,\n                \"h\": 1099,\n                \"l\": 1000,\n                \"m\": 1722348000667,\n                \"o\": 1034,\n                \"v\": 15176291000\n            },\n            {\n                \"_id\": \"66a8c9cef79dcb2ad019b86d\",\n                \"created\": 1722333600000,\n                \"market\": \"BTCUSDT\",\n                \"c\": 1071,\n                \"h\": 1099,\n                \"l\": 1000,\n                \"m\": 1722340800068,\n                \"o\": 1098,\n                \"v\": 5774961000\n            },\n            {\n                \"_id\": \"66a89654f79dcb2ad07cdac7\",\n                \"created\": 1722319200000,\n                \"market\": \"BTCUSDT\",\n                \"c\": 1047,\n                \"h\": 1061,\n                \"l\": 1047,\n                \"m\": 1722337741712,\n                \"o\": 1061,\n                \"v\": 900000\n            },\n            {\n                \"_id\": \"66a7a060f79dcb2ad06dcccc\",\n                \"created\": 1722261600000,\n                \"market\": \"BTCUSDT\",\n                \"c\": 1084,\n                \"h\": 1099,\n                \"l\": 1000,\n                \"m\": 1722266667853,\n                \"o\": 1044,\n                \"v\": 12207529000\n            },\n            {\n                \"_id\": \"66a78440f79dcb2ad0f1ded7\",\n                \"created\": 1722254400000,\n                \"market\": \"BTCUSDT\",\n                \"c\": 1045,\n                \"h\": 1099,\n                \"l\": 1000,\n                \"m\": 1722261600040,\n                \"o\": 1085,\n                \"v\": 11436870000\n            },\n            {\n                \"_id\": \"66a76821f79dcb2ad07699d4\",\n                \"created\": 1722247200000,\n                \"market\": \"BTCUSDT\",\n                \"c\": 1070,\n                \"h\": 1099,\n                \"l\": 1000,\n                \"m\": 1722254400588,\n                \"o\": 1050,\n                \"v\": 16476056000\n            },\n            {\n                \"_id\": \"66a74c00f79dcb2ad0fb4e34\",\n                \"created\": 1722240000000,\n                \"market\": \"BTCUSDT\",\n                \"c\": 1072,\n                \"h\": 1099,\n                \"l\": 1000,\n                \"m\": 1722247200363,\n                \"o\": 1044,\n                \"v\": 9814314000\n            },\n            {\n                \"_id\": \"66a72fe0f79dcb2ad07fa1fb\",\n                \"created\": 1722232800000,\n                \"market\": \"BTCUSDT\",\n                \"c\": 1046,\n                \"h\": 1099,\n                \"l\": 1000,\n                \"m\": 1722240000320,\n                \"o\": 1086,\n                \"v\": 16999651000\n            },\n            {\n                \"_id\": \"66a72ebdf79dcb2ad07ab589\",\n                \"created\": 1722225600000,\n                \"market\": \"BTCUSDT\",\n                \"c\": 1055,\n                \"h\": 1099,\n                \"l\": 1002,\n                \"m\": 1722232800102,\n                \"o\": 1012,\n                \"v\": 701839000\n            },\n            {\n                \"_id\": \"669dbb20f79dcb2ad0b8c80b\",\n                \"created\": 1721606400000,\n                \"market\": \"BTCUSDT\",\n                \"c\": 4500000,\n                \"h\": 4500000,\n                \"l\": 4500000,\n                \"m\": 1721613066997,\n                \"o\": 4500000,\n                \"v\": 3000000\n            },\n            {\n                \"_id\": \"669a1a94f79dcb2ad00d7055\",\n                \"created\": 1721368800000,\n                \"market\": \"BTCUSDT\",\n                \"c\": 600,\n                \"h\": 600,\n                \"l\": 600,\n                \"m\": 1721375406947,\n                \"o\": 600,\n                \"v\": 1649680000\n            },\n            {\n                \"_id\": \"6699cf4ff79dcb2ad0f6a31a\",\n                \"created\": 1721354400000,\n                \"market\": \"BTCUSDT\",\n                \"c\": 100,\n                \"h\": 9888900,\n                \"l\": 100,\n                \"m\": 1721375380271,\n                \"o\": 6029,\n                \"v\": 16012355039\n            },\n            {\n                \"_id\": \"6695e15ff79dcb2ad0b73bdb\",\n                \"created\": 1721095200000,\n                \"market\": \"BTCUSDT\",\n                \"c\": 1003,\n                \"h\": 1099,\n                \"l\": 1000,\n                \"m\": 1721122839222,\n                \"o\": 1013,\n                \"v\": 435357607074\n            }\n        ]\n    },\n    \"code\": 0,\n    \"msg\": \"\"\n}"}],"_postman_id":"243fecdc-3f87-4d65-bc2e-0730fb916c0b"}],"id":"9e42f4e6-ecf5-46de-a0fb-f07c3cb7d8e4","description":"<p>Endpoints in this section are public market information that do not require clients to have an API key to access (you do not need to include the authentication headers for these requests).</p>\n<p>Note that your requests are subjected to rate limit per IP. Too many requests above the allowed threshold will result in <code>429</code> then eventually<code>418</code> banning of IP (<a href=\"https://documenter.getpostman.com/view/5975131/2sA3BuXpLQ#intro\">read more here</a>).</p>\n","_postman_id":"9e42f4e6-ecf5-46de-a0fb-f07c3cb7d8e4"},{"name":"Account","item":[{"name":"Account Balance","id":"8006926d-fda7-488f-b1e4-807af5454b74","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://v3api.jayxstaging.com/api/v1/account/wallet-balance","description":"<p>This endpoint retrieves the balance details for the user's wallet, including total, available, and frozen amounts for each asset.</p>\n<p><strong>Request Parameters</strong>:</p>\n<ul>\n<li><strong>None</strong>: This endpoint does not require any parameters.</li>\n</ul>\n<p><strong>Example Request</strong>:</p>\n<ul>\n<li>none</li>\n</ul>\n<p><strong>Response</strong>:</p>\n<ul>\n<li><p><strong>code</strong>: Indicates the result of the request. A value of 0 signifies success.</p>\n</li>\n<li><p><strong>msg</strong>: Provides additional information about the result of the request. An empty string indicates no additional message.</p>\n</li>\n<li><p><strong>data</strong>: Contains the following fields:</p>\n<ul>\n<li><p><strong>userAssets</strong>: An array of asset objects, where each object includes:</p>\n<ul>\n<li><p><strong>accountId</strong>: The user account ID.</p>\n</li>\n<li><p><strong>asset</strong>: The asset symbol, e.g., \"BTC\", \"USDT\".</p>\n</li>\n<li><p><strong>total</strong>: The total amount of the asset.</p>\n</li>\n<li><p><strong>available</strong>: The available amount of the asset that can be used.</p>\n</li>\n<li><p><strong>frozen</strong>: The amount of the asset that is currently frozen and cannot be used.</p>\n</li>\n<li><p><strong>created</strong>: Reserved field, currently set to 0.</p>\n</li>\n<li><p><strong>lastModified</strong>: The timestamp when the asset record was last modified.</p>\n</li>\n<li><p><strong>priceBTCUSD</strong>: The price of the asset in terms of BTC to USD.</p>\n</li>\n<li><p><strong>priceToUSD</strong>: The price of the asset in USD.</p>\n</li>\n<li><p><strong>priceToUSDT</strong>: The price of the asset in USDT.</p>\n</li>\n</ul>\n</li>\n<li><p><strong>frozenAmount</strong>: The total amount of perpetual contract margin that is currently frozen, valued in USDT.</p>\n</li>\n</ul>\n</li>\n</ul>\n<p>Example Response:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n  \"code\": 0,\n  \"msg\": \"\",\n  \"data\": {\n    \"userAssets\": [\n      {\n        \"accountId\": 666,\n        \"asset\": \"BTC\",\n        \"total\": 99994.24761,\n        \"available\": 99964.04761,\n        \"frozen\": 30.2,\n        \"created\": 0,\n        \"lastModified\": 1723988931239896300,\n        \"priceBTCUSD\": 58951.655,\n        \"priceToUSD\": 58951.655,\n        \"priceToUSDT\": 58951.655\n      }\n    ],\n    \"frozenAmount\": 294998758.6367\n  }\n}\n\n</code></pre>","urlObject":{"path":["api","v1","account","wallet-balance"],"host":["https://v3api.jayxstaging.com"],"query":[],"variable":[]}},"response":[{"id":"40a9f69a-c94f-4042-8363-40852f477779","name":"success","originalRequest":{"method":"GET","header":[{"key":"JAYX-ACCESS-KEY","value":"xxx","description":"the API key from your JayX API page"},{"key":"JAYX-ACCESS-SIGN","value":"xxx","description":"signature computed from this request"},{"key":"JAYX-ACCESS-TIMESTAMP","value":"xxx","description":"UTC millisecond timestamp"}],"url":"https://v3api.jayxstaging.com/api/v1/account/wallet-balance"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Vary","value":"Origin"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-USED-REQUEST_WEIGHT-1MINUTE","value":"5"},{"key":"X-USED-RAW_REQUESTS-1MINUTE","value":"1"},{"key":"X-USED-ORDERS-10SECOND","value":"0"},{"key":"X-USED-ORDERS-1DAY","value":"0"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"475"},{"key":"Date","value":"Wed, 21 Aug 2024 07:55:25 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"userAssets\": [\n            {\n                \"accountId\": 666,\n                \"asset\": \"BTC\",\n                \"total\": 99994.24761,\n                \"available\": 99964.04761,\n                \"frozen\": 30.2,\n                \"created\": 0,\n                \"lastModified\": 1723988931239896300,\n                \"priceBTCUSD\": 58951.655,\n                \"priceToUSD\": 58951.655,\n                \"priceToUSDT\": 58951.655\n            },\n            {\n                \"accountId\": 666,\n                \"asset\": \"USDT\",\n                \"total\": 1467729.20075,\n                \"available\": 1467729.20075,\n                \"frozen\": 0,\n                \"created\": 0,\n                \"lastModified\": 1723988931239875800,\n                \"priceBTCUSD\": 58951.655,\n                \"priceToUSD\": 1,\n                \"priceToUSDT\": 1\n            }\n        ],\n        \"frozenAmount\": 294998758.6367\n    },\n    \"code\": 0,\n    \"msg\": \"\"\n}"}],"_postman_id":"8006926d-fda7-488f-b1e4-807af5454b74"}],"id":"c8027ec0-2293-49ea-ab15-7bd9ae51dfc0","description":"<p>These endpoints are for authenticated traders to query information about their trading account. Note that you must have a JayX account and an corresponding API key and secret pair to use these endpoints.</p>\n<p>Replace the following Header Params:</p>\n<ol>\n<li><p><code>JAYX-ACCESS-KEY</code> - The API Key from your JayX API page</p>\n</li>\n<li><p><code>JAYX-ACCESS-SIGN</code> - The signature of the request (see below)</p>\n</li>\n<li><p><code>JAYX-ACCESS-TIMESTAMP</code> - UTC millisecond timestamp</p>\n</li>\n</ol>\n<p>Note that your requests are subjected to rate limit per API key. Too many requests above the allowed threshold will result in <code>429</code> then eventually<code>418</code> banning of your API access (<a href=\"https://documenter.getpostman.com/view/5975131/2sA3BuXpLQ#intro\">read more here</a>).</p>\n","_postman_id":"c8027ec0-2293-49ea-ab15-7bd9ae51dfc0"},{"name":"Basic Trading","item":[{"name":"(In progress) Open Order Count","id":"38960f4c-d3db-4e2e-a5ac-b39fedd77af7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://v3api.jayxstaging.com/api/v1/trader/count","description":"<p>This endpoint retrieves the count of traders for a specific trading pair, within a given time range, and optionally filtered by trade side.</p>\n<hr />\n<p><strong>Request Parameters</strong>:</p>\n<ul>\n<li><p><strong>symbol</strong>: The trading pair symbol, e.g., \"BTCUSDT\".</p>\n</li>\n<li><p><strong>startTime</strong>: The start time for the query in milliseconds since the Unix epoch (e.g., 1724342400000).</p>\n</li>\n<li><p><strong>endTime</strong>: The end time for the query in milliseconds since the Unix epoch (e.g., 1724428799000).</p>\n</li>\n<li><p><strong>side</strong>: (Optional) The trade side to filter by. 1 indicates buys, and 2 indicates sells.</p>\n</li>\n</ul>\n<p><strong>Example Request</strong>:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-html\">GET &lt;https://v3api.jayxstaging.com/api/v1/trader/count?symbol=BTCUSDT&amp;startTime=1724342400000&amp;endTime=1724428799000&amp;side=1&gt;\n\n</code></pre>\n<hr />\n<p><strong>Response</strong>:</p>\n<ul>\n<li><p><strong>code</strong>: Indicates the result of the request. A value of 0 signifies success.</p>\n</li>\n<li><p><strong>msg</strong>: Provides additional information about the result of the request. An empty string indicates no additional message.</p>\n</li>\n<li><p><strong>data</strong>: The count of active orders that match the query parameters.</p>\n</li>\n</ul>\n<p><strong>Example Response</strong>:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"code\": 0,\n  \"msg\": \"\",\n  \"data\": 1\n}\n\n</code></pre>\n","urlObject":{"path":["api","v1","trader","count"],"host":["https://v3api.jayxstaging.com"],"query":[],"variable":[]}},"response":[{"id":"a1f66fd4-503e-40c0-a779-70ea75477f6c","name":"success","originalRequest":{"method":"GET","header":[{"key":"JAYX-ACCESS-KEY","value":"xxx","description":"the API key from your JayX API page"},{"key":"JAYX-ACCESS-SIGN","value":"xxx","description":"signature computed from this request"},{"key":"JAYX-ACCESS-TIMESTAMP","value":"xxx","description":"UTC millisecond timestamp"}],"url":{"raw":"https://v3api.jayxstaging.com/api/v1/trader/count?symbol=BTCUSDT&startTime=1724342400000&endTime=1724428799000&side=1","host":["https://v3api.jayxstaging.com"],"path":["api","v1","trader","count"],"query":[{"key":"symbol","value":"BTCUSDT"},{"key":"startTime","value":"1724342400000","description":"Millisecond"},{"key":"endTime","value":"1724428799000","description":"Millisecond"},{"key":"side","value":"1","description":"1：buy, 2: sell"}]}},"status":"OK","code":200,"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":"{'code': 0, 'msg': '', 'data': 1}"}],"_postman_id":"38960f4c-d3db-4e2e-a5ac-b39fedd77af7"},{"name":"Cancel Order","id":"ee1f14f1-01aa-454a-a244-325be993343a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"https://v3api.jayxstaging.com/api/v1/trader/order/cancel","description":"<p>This endpoint cancels an active order for a specified trading pair.</p>\n<hr />\n<p><strong>Request Body Parameters</strong>:</p>\n<ul>\n<li><p><strong>id</strong>: (Required) The unique identifier of the order to be canceled (e.g., 105725151).</p>\n</li>\n<li><p><strong>symbol</strong>: (Required) The trading pair symbol of the order to be canceled, e.g., \"BTCUSDT\".</p>\n</li>\n</ul>\n<p><strong>Example Request</strong>:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"id\": 105725151,\n    \"symbol\": \"BTCUSDT\"\n}\n\n</code></pre>\n<hr />\n<p><strong>Response</strong>:</p>\n<ul>\n<li><p><strong>code</strong>: Indicates the result of the request. A value of 0 signifies success.</p>\n</li>\n<li><p><strong>msg</strong>: A message associated with the response. It is typically null if the request was successful.</p>\n</li>\n<li><p><strong>data</strong>: This field is typically null for this operation as it doesn’t return additional data.</p>\n</li>\n</ul>\n<p><strong>Example Response</strong>:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"code\": 0,\n  \"msg\": null,\n  \"data\": null\n}\n\n</code></pre>\n","urlObject":{"path":["api","v1","trader","order","cancel"],"host":["https://v3api.jayxstaging.com"],"query":[],"variable":[]}},"response":[{"id":"4020f40c-bd2b-40b4-a2f1-1de9451d1a8e","name":"success","originalRequest":{"method":"POST","header":[{"key":"JAYX-ACCESS-KEY","value":"6o0i6dgxqcz5","description":"the API key from your JayX API page"},{"key":"JAYX-ACCESS-SIGN","value":"xxx","description":"signature computed from this request"},{"key":"JAYX-ACCESS-TIMESTAMP","value":"xxx","description":"UTC millisecond timestamp"}],"body":{"mode":"raw","raw":"{\n    \"id\": \"172424214035807511\",\n    \"symbol\": \"BTCUSDT\"\n}","options":{"raw":{"language":"json"}}},"url":"https://v3api.jayxstaging.com/api/v1/trader/order/cancel"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Vary","value":"Origin"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-USED-REQUEST_WEIGHT-1MINUTE","value":"400"},{"key":"X-USED-RAW_REQUESTS-1MINUTE","value":"2"},{"key":"X-USED-ORDERS-10SECOND","value":"1"},{"key":"X-USED-ORDERS-1DAY","value":"11"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"33"},{"key":"Date","value":"Wed, 21 Aug 2024 12:13:53 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"code\": 0,\n    \"msg\": null,\n    \"data\": null\n}"}],"_postman_id":"ee1f14f1-01aa-454a-a244-325be993343a"},{"name":"Cancel All Orders for a Single Trading Pair","id":"f1b6b2ae-c774-4411-ad0b-975eac2e9a8c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"https://v3api.jayxstaging.com/api/v1/trader/order/cancel/all","description":"<p>API allows users to cancel all active orders for a specific trading pair.</p>\n<h3 id=\"request-parameters\">Request Parameters:</h3>\n<ul>\n<li><strong><code>symbol</code></strong>: (required) Specifies the trading pair, e.g., <code>\"BTCUSDT\"</code>.</li>\n</ul>\n<p><strong>Example Request</strong>:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"symbol\": \"BTCUSDT\"\n}\n\n</code></pre>\n<h3 id=\"response-structure\">Response Structure:</h3>\n<ul>\n<li><p><strong><code>code</code></strong>: Status code indicating the result of the cancellation request. <code>0</code> indicates success.</p>\n</li>\n<li><p><strong><code>msg</code></strong>: Optional message field, typically <code>null</code> if the request was successful.</p>\n</li>\n<li><p><strong><code>data</code></strong>: Optional data field, <code>null</code> in this case, indicating no further response data is necessary.</p>\n</li>\n</ul>\n<p><strong>Example Response</strong>:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"code\": 0,\n  \"msg\": null,\n  \"data\": null\n}\n\n</code></pre>\n","urlObject":{"path":["api","v1","trader","order","cancel","all"],"host":["https://v3api.jayxstaging.com"],"query":[],"variable":[]}},"response":[{"id":"c0b9e3bc-b4b2-4c67-ad3c-a908b35f734b","name":"success","originalRequest":{"method":"POST","header":[{"key":"JAYX-ACCESS-KEY","value":"6o0i6dgxqcz5","description":"the API key from your JayX API page"},{"key":"JAYX-ACCESS-SIGN","value":"xxx","description":"signature computed from this request"},{"key":"JAYX-ACCESS-TIMESTAMP","value":"xxx","description":"UTC millisecond timestamp"}],"body":{"mode":"raw","raw":"{\n    \"symbol\": \"BTCUSDT\"\n}","options":{"raw":{"language":"json"}}},"url":"https://v3api.jayxstaging.com/api/v1/trader/order/cancel/all"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Vary","value":"Origin"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-USED-REQUEST_WEIGHT-1MINUTE","value":"400"},{"key":"X-USED-RAW_REQUESTS-1MINUTE","value":"1"},{"key":"X-USED-ORDERS-10SECOND","value":"1"},{"key":"X-USED-ORDERS-1DAY","value":"13"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"33"},{"key":"Date","value":"Wed, 21 Aug 2024 12:28:39 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"code\": 0,\n    \"msg\": null,\n    \"data\": null\n}"}],"_postman_id":"f1b6b2ae-c774-4411-ad0b-975eac2e9a8c"},{"name":"Query Order by Symbol and ID","id":"cc87db71-0260-48ec-9fab-5201bb4d1e25","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://v3api.jayxstaging.com/api/v1/trader/active","description":"<p><strong>Request Parameters</strong>:</p>\n<ul>\n<li><p><strong>symbol</strong>: (Required) The trading pair symbol, e.g., <code>\"ETCUSDT\"</code>.</p>\n</li>\n<li><p><strong>id</strong>: (Required) The account or order ID to retrieve active orders for, e.g., <code>119890483</code>.</p>\n</li>\n</ul>\n<p><strong>Example Request</strong>:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"symbol\": \"ETCUSDT\",\n  \"id\": 119890483\n}\n\n</code></pre>\n<hr />\n<p><strong>Response</strong>:</p>\n<ul>\n<li><p><strong>code</strong>: Indicates the result of the request. A value of <code>0</code> signifies success.</p>\n</li>\n<li><p><strong>msg</strong>: A message associated with the response. It is typically <code>null</code> if the request was successful.</p>\n</li>\n<li><p><strong>data</strong>:</p>\n<ul>\n<li><p><strong>data</strong>: A list of active orders, where each order contains:</p>\n<ul>\n<li><p><strong>id</strong>: The unique order ID.</p>\n</li>\n<li><p><strong>accountId</strong>: The account ID associated with the order.</p>\n</li>\n<li><p><strong>market</strong>: The market/trading pair (e.g., <code>\"BTCUSDT\"</code>).</p>\n</li>\n<li><p><strong>asset</strong>: The asset involved in the trade (e.g., <code>\"BTC\"</code>).</p>\n</li>\n<li><p><strong>type</strong>: The type of the order (e.g., <code>1</code> for limit order).</p>\n</li>\n<li><p><strong>side</strong>: The side of the order (e.g., <code>1</code> for buy, <code>2</code> for sell).</p>\n</li>\n<li><p><strong>price</strong>: The price at which the order was placed.</p>\n</li>\n<li><p><strong>amount</strong>: The amount involved in the trade.</p>\n</li>\n<li><p><strong>frozenAmount</strong>: The amount frozen for the order.</p>\n</li>\n<li><p><strong>status</strong>: The status of the order (e.g., <code>0</code> for active).</p>\n</li>\n<li><p><strong>created</strong>: The creation timestamp of the order.</p>\n</li>\n<li><p><strong>marketType</strong>: Indicates the type of market, e.g., <code>\"spot\"</code>.</p>\n</li>\n</ul>\n</li>\n<li><p><strong>totalCount</strong>: Total number of active orders.</p>\n</li>\n<li><p><strong>pageSize</strong>: Number of records per page.</p>\n</li>\n<li><p><strong>currentPage</strong>: The current page number.</p>\n</li>\n</ul>\n</li>\n</ul>\n<hr />\n<p><strong>Example Response</strong>:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"code\": 0,\n  \"msg\": null,\n  \"data\": {\n    \"data\": [\n      {\n        \"id\": \"172550639623148892\",\n        \"accountId\": 2828545,\n        \"market\": \"BTCUSDT\",\n        \"asset\": \"BTC\",\n        \"type\": 1,\n        \"side\": 2,\n        \"price\": \"57719.64\",\n        \"amount\": \"0.29172\",\n        \"frozenAmount\": \"0.29172\",\n        \"status\": 0,\n        \"created\": 1725506396231,\n        \"marketType\": \"spot\"\n      },\n      {\n        \"id\": \"172550639627460599\",\n        \"accountId\": 2828545,\n        \"market\": \"BTCUSDT\",\n        \"asset\": \"USDT\",\n        \"type\": 1,\n        \"side\": 1,\n        \"price\": \"56879.76\",\n        \"amount\": \"0.36872\",\n        \"frozenAmount\": \"20972.7\",\n        \"status\": 0,\n        \"created\": 1725506396274,\n        \"marketType\": \"spot\"\n      }\n    ],\n    \"totalCount\": 20,\n    \"pageSize\": 10,\n    \"currentPage\": 1\n  }\n}\n\n</code></pre>\n","urlObject":{"path":["api","v1","trader","active"],"host":["https://v3api.jayxstaging.com"],"query":[],"variable":[]}},"response":[{"id":"d44d60b5-6f64-4653-b051-a1ced6e574bc","name":"success-without id","originalRequest":{"method":"GET","header":[{"key":"JAYX-ACCESS-KEY","value":"6o0i6dgxqcz5","description":"the API key from your JayX API page"},{"key":"JAYX-ACCESS-SIGN","value":"xxx","description":"signature computed from this request"},{"key":"JAYX-ACCESS-TIMESTAMP","value":"xxx","description":"UTC millisecond timestamp"}],"url":{"raw":"https://v3api.jayxstaging.com/api/v1/trader/active?symbol=BTCUSDT","host":["https://v3api.jayxstaging.com"],"path":["api","v1","trader","active"],"query":[{"key":"symbol","value":"BTCUSDT","description":"symbol"},{"key":"id","value":"119890483","description":"order id","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"plain","header":[{"key":"Vary","value":"Origin"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-USED-REQUEST_WEIGHT-1MINUTE","value":"5"},{"key":"X-USED-RAW_REQUESTS-1MINUTE","value":"1"},{"key":"X-USED-ORDERS-10SECOND","value":"0"},{"key":"X-USED-ORDERS-1DAY","value":"0"},{"key":"Content-Type","value":"text/plain; charset=utf-8"},{"key":"Content-Length","value":"455"},{"key":"Date","value":"Wed, 21 Aug 2024 11:49:13 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\"code\":0,\"msg\":null,\"data\":{\"data\":[{\"id\":\"172424075404096249\",\"accountId\":2828505,\"market\":\"BTCUSDT\",\"asset\":\"BTC\",\"type\":1,\"side\":2,\"price\":\"10000\",\"amount\":\"1\",\"frozenAmount\":\"1\",\"frozenAmountToAssetScale\":100000000,\"direction\":0,\"priceType\":0,\"positionActionType\":0,\"executed\":\"0\",\"executedAvgPrice\":\"0\",\"noExecuted\":\"1\",\"status\":0,\"created\":1724240754040,\"receiveTime\":0,\"lastModified\":0,\"perp\":false}],\"totalCount\":1,\"pageSize\":10,\"currentPage\":1}}"},{"id":"f6c868d7-5f32-4445-99c3-a4ed0ac5aca4","name":"success","originalRequest":{"method":"GET","header":[{"key":"JAYX-ACCESS-KEY","value":"6o0i6dgxqcz5","description":"the API key from your JayX API page"},{"key":"JAYX-ACCESS-SIGN","value":"xxx","description":"signature computed from this request"},{"key":"JAYX-ACCESS-TIMESTAMP","value":"xxx","description":"UTC millisecond timestamp"}],"url":{"raw":"https://v3api.jayxstaging.com/api/v1/trader/active?symbol=BTCUSDT&id=172424347771025983","host":["https://v3api.jayxstaging.com"],"path":["api","v1","trader","active"],"query":[{"key":"symbol","value":"BTCUSDT","description":"symbol"},{"key":"id","value":"172424347771025983","description":"order id"}]}},"status":"OK","code":200,"_postman_previewlanguage":"plain","header":[{"key":"Vary","value":"Origin"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-USED-REQUEST_WEIGHT-1MINUTE","value":"5"},{"key":"X-USED-RAW_REQUESTS-1MINUTE","value":"1"},{"key":"X-USED-ORDERS-10SECOND","value":"0"},{"key":"X-USED-ORDERS-1DAY","value":"13"},{"key":"Content-Type","value":"text/plain; charset=utf-8"},{"key":"Content-Length","value":"455"},{"key":"Date","value":"Wed, 21 Aug 2024 12:41:28 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\"code\":0,\"msg\":null,\"data\":{\"data\":[{\"id\":\"172424347771025983\",\"accountId\":2828505,\"market\":\"BTCUSDT\",\"asset\":\"BTC\",\"type\":1,\"side\":2,\"price\":\"10000\",\"amount\":\"1\",\"frozenAmount\":\"1\",\"frozenAmountToAssetScale\":100000000,\"direction\":0,\"priceType\":0,\"positionActionType\":0,\"executed\":\"0\",\"executedAvgPrice\":\"0\",\"noExecuted\":\"1\",\"status\":0,\"created\":1724243477710,\"receiveTime\":0,\"lastModified\":0,\"perp\":false}],\"totalCount\":1,\"pageSize\":10,\"currentPage\":1}}"}],"_postman_id":"cc87db71-0260-48ec-9fab-5201bb4d1e25"},{"name":"Spot Account Order History","id":"154d5d5a-7bb8-4b01-a292-e441f0af3601","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"https://v3api.jayxstaging.com/api/trader/v1/order/history","description":"<p>This API endpoint retrieves the order history based on the specified parameters.</p>\n<p><strong>Request Parameters:</strong></p>\n<ul>\n<li><p><strong>market</strong> (string, optional): Specifies the trading pair (e.g., \"ETHUSDT\").</p>\n</li>\n<li><p><strong>startTime</strong> (integer, optional): Start time in milliseconds since epoch.</p>\n</li>\n<li><p><strong>endTime</strong> (integer, optional): End time in milliseconds since epoch.</p>\n</li>\n<li><p><strong>side</strong> (integer, optional): Order side. 1 for Buy, 2 for Sell.</p>\n</li>\n<li><p><strong>pageSize</strong> (integer, optional): Number of records per page.</p>\n</li>\n<li><p><strong>pageIndex</strong> (integer, optional): Page index, starting from 1.</p>\n</li>\n<li><p><strong>status</strong> (integer, optional): Order status. 1 for New, 2 for Finished, 3 for Partial, 11 for Cancelled, 10 for Partial Cancelled.</p>\n</li>\n</ul>\n<p><strong>Example Request:</strong></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{ \"market\": \"ETHUSDT\", \"startTime\": 1721232000000, \"endTime\": 1722515906000, \"side\": 1, \"pageSize\": 10, \"pageIndex\": 1, \"status\": 1 }\n\n</code></pre>\n<p><strong>Response Structure:</strong></p>\n<ul>\n<li><p><strong>code</strong> (integer): Status code indicating the result of the request. 0 indicates success.</p>\n</li>\n<li><p><strong>msg</strong> (string): Message field, indicating success or failure.</p>\n</li>\n<li><p><strong>data</strong> (object):</p>\n<ul>\n<li><p><strong>data</strong> (array): List of order records.</p>\n<ul>\n<li><p><strong>id</strong> (string): Unique identifier of the order.</p>\n</li>\n<li><p><strong>accountId</strong> (integer): Account ID.</p>\n</li>\n<li><p><strong>market</strong> (string): Trading pair.</p>\n</li>\n<li><p><strong>asset</strong> (string): Asset involved in the order.</p>\n</li>\n<li><p><strong>type</strong> (integer): Order type.</p>\n</li>\n<li><p><strong>side</strong> (integer): Side of the order. 1 for Buy, 2 for Sell.</p>\n</li>\n<li><p><strong>price</strong> (string): Order price.</p>\n</li>\n<li><p><strong>amount</strong> (string): Order amount.</p>\n</li>\n<li><p><strong>direction</strong> (integer): Direction of the order.</p>\n</li>\n<li><p><strong>positionActionType</strong> (integer): Position action type.</p>\n</li>\n<li><p><strong>executed</strong> (string): Executed amount.</p>\n</li>\n<li><p><strong>executedAvgPrice</strong> (string): Average price of executed orders.</p>\n</li>\n<li><p><strong>noExecuted</strong> (string): Amount not executed.</p>\n</li>\n<li><p><strong>status</strong> (integer): Status of the order. 1 for New, 2 for Finished, 3 for Partial, 11 for Cancelled, 10 for Partial Cancelled.</p>\n</li>\n<li><p><strong>feeAmount</strong> (string or null): Fee amount.</p>\n</li>\n<li><p><strong>feeAsset</strong> (string): Asset used for fee payment.</p>\n</li>\n<li><p><strong>created</strong> (integer): Order creation time (milliseconds since epoch).</p>\n</li>\n<li><p><strong>receiveTime</strong> (integer): Time when the order was received (nanoseconds since epoch).</p>\n</li>\n<li><p><strong>lastModified</strong> (integer): Last modified time (milliseconds since epoch).</p>\n</li>\n<li><p><strong>marketType</strong> (string): Type of market (spot or perpetual).</p>\n</li>\n</ul>\n</li>\n<li><p><strong>totalCount</strong> (integer): Total number of records.</p>\n</li>\n<li><p><strong>pageSize</strong> (integer): Number of records per page.</p>\n</li>\n<li><p><strong>currentPage</strong> (integer): Current page index.</p>\n</li>\n</ul>\n</li>\n</ul>\n<p><strong>Example Response:</strong></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"code\": 0,\n    \"msg\": \"success\",\n    \"data\": {\n        \"data\": [\n            {\n                \"id\": \"172546072426516661\",\n                \"accountId\": 2828688,\n                \"market\": \"BTCUSDT\",\n                \"asset\": \"BTC\",\n                \"type\": 2,\n                \"side\": 1,\n                \"price\": \"0\",\n                \"amount\": \"0.00009\",\n                \"direction\": 0,\n                \"positionActionType\": 0,\n                \"executed\": \"0\",\n                \"executedAvgPrice\": \"0\",\n                \"noExecuted\": \"0.00009\",\n                \"status\": 11,\n                \"feeAmount\": null,\n                \"feeAsset\": \"BTC\",\n                \"created\": 1725460724265,\n                \"receiveTime\": 1725460724265779700,\n                \"lastModified\": 1725460724265826600,\n                \"marketType\": \"spot\"\n            }\n        ],\n        \"totalCount\": 65,\n        \"pageSize\": 10,\n        \"currentPage\": 1\n    }\n}\n\n</code></pre>\n","urlObject":{"path":["api","trader","v1","order","history"],"host":["https://v3api.jayxstaging.com"],"query":[],"variable":[]}},"response":[{"id":"e545f861-ee9f-4fdb-affd-294a171b55a1","name":"success","originalRequest":{"method":"POST","header":[{"key":"JAYX-ACCESS-KEY","value":"6o0i6dgxqcz5","description":"the API key from your JayX API page"},{"key":"JAYX-ACCESS-SIGN","value":"xxx","description":"signature computed from this request"},{"key":"JAYX-ACCESS-TIMESTAMP","value":"xxx","description":"UTC millisecond timestamp"}],"body":{"mode":"raw","raw":"{\n    \"category\": \"spot\",\n    \"symbol\": \"BTCUSDT\",\n    \"pageSize\": 200,\n    \"pageIndex\": 1\n}","options":{"raw":{"language":"json"}}},"url":"https://v3api.jayxstaging.com/api/trader/v1/order/history"},"status":"OK","code":200,"_postman_previewlanguage":"plain","header":[{"key":"Vary","value":"Origin"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-USED-REQUEST_WEIGHT-1MINUTE","value":"10"},{"key":"X-USED-RAW_REQUESTS-1MINUTE","value":"2"},{"key":"X-USED-ORDERS-10SECOND","value":"1"},{"key":"X-USED-ORDERS-1DAY","value":"20"},{"key":"Content-Type","value":"text/plain; charset=utf-8"},{"key":"Content-Length","value":"5506"},{"key":"Date","value":"Wed, 21 Aug 2024 14:06:20 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\"code\":0,\"msg\":\"success\",\"data\":{\"data\":[{\"id\":\"172424348230799889\",\"accountId\":2828505,\"market\":\"BTCUSDT\",\"asset\":\"BTC\",\"type\":1,\"side\":1,\"price\":\"10000\",\"amount\":\"1\",\"frozenAmount\":\"0\",\"frozenAmountToAssetScale\":0,\"direction\":0,\"positionActionType\":0,\"executed\":\"1\",\"executedAvgPrice\":\"5000\",\"noExecuted\":\"0\",\"status\":2,\"created\":1724243482307,\"receiveTime\":1724243482307651300,\"lastModified\":1724243482307960600,\"perp\":false},{\"id\":\"172424322786608729\",\"accountId\":2828505,\"market\":\"BTCUSDT\",\"asset\":\"BTC\",\"type\":1,\"side\":2,\"price\":\"10000\",\"amount\":\"1\",\"frozenAmount\":\"0\",\"frozenAmountToAssetScale\":0,\"direction\":0,\"positionActionType\":0,\"executed\":\"0\",\"executedAvgPrice\":\"0\",\"noExecuted\":\"1\",\"status\":11,\"created\":1724243227865,\"receiveTime\":1724243227866231000,\"lastModified\":1724243321120448800,\"perp\":false},{\"id\":\"172424322469363703\",\"accountId\":2828505,\"market\":\"BTCUSDT\",\"asset\":\"BTC\",\"type\":1,\"side\":1,\"price\":\"10000\",\"amount\":\"1\",\"frozenAmount\":\"0\",\"frozenAmountToAssetScale\":0,\"direction\":0,\"positionActionType\":0,\"executed\":\"1\",\"executedAvgPrice\":\"1\",\"noExecuted\":\"0\",\"status\":2,\"created\":1724243224693,\"receiveTime\":1724243224694005200,\"lastModified\":1724243224694119700,\"perp\":false},{\"id\":\"172424322199461506\",\"accountId\":2828505,\"market\":\"BTCUSDT\",\"asset\":\"BTC\",\"type\":1,\"side\":1,\"price\":\"10000\",\"amount\":\"1\",\"frozenAmount\":\"0\",\"frozenAmountToAssetScale\":0,\"direction\":0,\"positionActionType\":0,\"executed\":\"1\",\"executedAvgPrice\":\"1\",\"noExecuted\":\"0\",\"status\":2,\"created\":1724243221994,\"receiveTime\":1724243221995004200,\"lastModified\":1724243221995220000,\"perp\":false},{\"id\":\"172424313278595137\",\"accountId\":2828505,\"market\":\"BTCUSDT\",\"asset\":\"BTC\",\"type\":1,\"side\":1,\"price\":\"10000\",\"amount\":\"1\",\"frozenAmount\":\"0\",\"frozenAmountToAssetScale\":0,\"direction\":0,\"positionActionType\":0,\"executed\":\"1\",\"executedAvgPrice\":\"1\",\"noExecuted\":\"0\",\"status\":2,\"created\":1724243132785,\"receiveTime\":1724243132785625900,\"lastModified\":1724243132785745700,\"perp\":false},{\"id\":\"172424313164512036\",\"accountId\":2828505,\"market\":\"BTCUSDT\",\"asset\":\"BTC\",\"type\":1,\"side\":1,\"price\":\"10000\",\"amount\":\"1\",\"frozenAmount\":\"0\",\"frozenAmountToAssetScale\":0,\"direction\":0,\"positionActionType\":0,\"executed\":\"1\",\"executedAvgPrice\":\"1\",\"noExecuted\":\"0\",\"status\":2,\"created\":1724243131645,\"receiveTime\":1724243131645951700,\"lastModified\":1724243131646111000,\"perp\":false},{\"id\":\"172424313016835461\",\"accountId\":2828505,\"market\":\"BTCUSDT\",\"asset\":\"BTC\",\"type\":1,\"side\":1,\"price\":\"10000\",\"amount\":\"1\",\"frozenAmount\":\"0\",\"frozenAmountToAssetScale\":0,\"direction\":0,\"positionActionType\":0,\"executed\":\"1\",\"executedAvgPrice\":\"1\",\"noExecuted\":\"0\",\"status\":2,\"created\":1724243130168,\"receiveTime\":1724243130169414000,\"lastModified\":1724243130169586700,\"perp\":false},{\"id\":\"172424214035807511\",\"accountId\":2828505,\"market\":\"BTCUSDT\",\"asset\":\"BTC\",\"type\":1,\"side\":2,\"price\":\"10000\",\"amount\":\"1\",\"frozenAmount\":\"0\",\"frozenAmountToAssetScale\":0,\"direction\":0,\"positionActionType\":0,\"executed\":\"0\",\"executedAvgPrice\":\"0\",\"noExecuted\":\"1\",\"status\":11,\"created\":1724242140357,\"receiveTime\":1724242140358186800,\"lastModified\":1724242435401670000,\"perp\":false},{\"id\":\"172424214880747304\",\"accountId\":2828505,\"market\":\"BTCUSDT\",\"asset\":\"BTC\",\"type\":1,\"side\":1,\"price\":\"10000\",\"amount\":\"1\",\"frozenAmount\":\"0\",\"frozenAmountToAssetScale\":0,\"direction\":0,\"positionActionType\":0,\"executed\":\"1\",\"executedAvgPrice\":\"10000\",\"noExecuted\":\"0\",\"status\":2,\"created\":1724242148807,\"receiveTime\":1724242148807630600,\"lastModified\":1724242148807979300,\"perp\":false},{\"id\":\"172424214757111719\",\"accountId\":2828505,\"market\":\"BTCUSDT\",\"asset\":\"BTC\",\"type\":1,\"side\":1,\"price\":\"10000\",\"amount\":\"1\",\"frozenAmount\":\"0\",\"frozenAmountToAssetScale\":0,\"direction\":0,\"positionActionType\":0,\"executed\":\"1\",\"executedAvgPrice\":\"10000\",\"noExecuted\":\"0\",\"status\":2,\"created\":1724242147571,\"receiveTime\":1724242147572208400,\"lastModified\":1724242147572505600,\"perp\":false},{\"id\":\"172424214653439434\",\"accountId\":2828505,\"market\":\"BTCUSDT\",\"asset\":\"BTC\",\"type\":1,\"side\":1,\"price\":\"10000\",\"amount\":\"1\",\"frozenAmount\":\"0\",\"frozenAmountToAssetScale\":0,\"direction\":0,\"positionActionType\":0,\"executed\":\"1\",\"executedAvgPrice\":\"10000\",\"noExecuted\":\"0\",\"status\":2,\"created\":1724242146534,\"receiveTime\":1724242146535225900,\"lastModified\":1724242146535446800,\"perp\":false},{\"id\":\"172424075404096249\",\"accountId\":2828505,\"market\":\"BTCUSDT\",\"asset\":\"BTC\",\"type\":1,\"side\":2,\"price\":\"10000\",\"amount\":\"1\",\"frozenAmount\":\"0\",\"frozenAmountToAssetScale\":0,\"direction\":0,\"positionActionType\":0,\"executed\":\"0\",\"executedAvgPrice\":\"0\",\"noExecuted\":\"1\",\"status\":11,\"created\":1724240754040,\"receiveTime\":1724240754041062100,\"lastModified\":1724241817152260600,\"perp\":false},{\"id\":\"172424074987371233\",\"accountId\":2828505,\"market\":\"BTCUSDT\",\"asset\":\"BTC\",\"type\":1,\"side\":1,\"price\":\"10000\",\"amount\":\"1\",\"frozenAmount\":\"0\",\"frozenAmountToAssetScale\":0,\"direction\":0,\"positionActionType\":0,\"executed\":\"1\",\"executedAvgPrice\":\"10000\",\"noExecuted\":\"0\",\"status\":2,\"created\":1724240749873,\"receiveTime\":1724240749873854200,\"lastModified\":1724240749874139600,\"perp\":false},{\"id\":\"172422935542125140\",\"accountId\":2828505,\"market\":\"BTCUSDT\",\"asset\":\"BTC\",\"type\":1,\"side\":1,\"price\":\"10000\",\"amount\":\"1\",\"frozenAmount\":\"0\",\"frozenAmountToAssetScale\":0,\"direction\":0,\"positionActionType\":0,\"executed\":\"1\",\"executedAvgPrice\":\"10000\",\"noExecuted\":\"0\",\"status\":2,\"created\":1724229355421,\"receiveTime\":1724229355421676000,\"lastModified\":1724229355422119000,\"perp\":false}],\"totalCount\":14,\"pageSize\":50,\"currentPage\":1}}"}],"_postman_id":"154d5d5a-7bb8-4b01-a292-e441f0af3601"},{"name":"Query All Orders","id":"dc11e210-a319-4909-b190-2f319c90feb0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"https://v3api.jayxstaging.com/api/trader/v1/exec/history","description":"<p>This API endpoint retrieves the execution history of orders based on the specified parameters.</p>\n<p><strong>Request Parameters:</strong></p>\n<ul>\n<li><p><strong>category</strong> (string, required): Specifies the market category (\"spot\" or \"perpetual\").</p>\n</li>\n<li><p><strong>symbol</strong> (string, required): Specifies the trading pair (e.g., \"BTCUSDT\").</p>\n</li>\n<li><p><strong>pageSize</strong> (integer, optional): Number of records per page. Default is 10.</p>\n</li>\n<li><p><strong>pageIndex</strong> (integer, optional): Page index, starting from 1. Default is 1.</p>\n</li>\n<li><p><strong>side</strong> (integer, optional): Order side. 1 for Buy, 2 for Sell.</p>\n</li>\n<li><p><strong>startTime</strong> (integer, optional): Start time in milliseconds since epoch.</p>\n</li>\n<li><p><strong>endTime</strong> (integer, optional): End time in milliseconds since epoch.</p>\n</li>\n</ul>\n<p><strong>Example Request:</strong></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n    \"category\": \"spot\",\n    \"symbol\": \"BTCUSDT\",\n    \"pageSize\": 200,\n    \"pageIndex\": 1,\n    \"side\": 1,  // 1: buy, 2: sell\n    \"startTime\": 1724342400000,\n    \"endTime\": 1724428799000\n}\n\n</code></pre><p><strong>Response Structure:</strong></p>\n<ul>\n<li><p><strong>code</strong> (integer): Status code indicating the result of the request. 0 indicates success.</p>\n</li>\n<li><p><strong>msg</strong> (string): Message field, indicating success or failure.</p>\n</li>\n<li><p><strong>data</strong> (object):</p>\n<ul>\n<li><p><strong>data</strong> (array): List of execution records.</p>\n<ul>\n<li><p><strong>id</strong> (string): Unique identifier of the execution record.</p>\n</li>\n<li><p><strong>matchSessionId</strong> (string): Match session ID.</p>\n</li>\n<li><p><strong>orderId</strong> (string): Order ID.</p>\n</li>\n<li><p><strong>accountId</strong> (integer): Account ID.</p>\n</li>\n<li><p><strong>market</strong> (string): Trading pair.</p>\n</li>\n<li><p><strong>asset</strong> (string): Asset involved in the execution.</p>\n</li>\n<li><p><strong>side</strong> (integer): Side of the execution. 1 for Buy, 2 for Sell.</p>\n</li>\n<li><p><strong>price</strong> (string): Execution price.</p>\n</li>\n<li><p><strong>amount</strong> (string): Execution amount.</p>\n</li>\n<li><p><strong>role</strong> (integer): Role in the execution.</p>\n</li>\n<li><p><strong>matchExecutionId</strong> (string): Match execution ID.</p>\n</li>\n<li><p><strong>cpty</strong> (integer): Counterparty ID.</p>\n</li>\n<li><p><strong>created</strong> (string): Creation time (milliseconds since epoch).</p>\n</li>\n<li><p><strong>lastModified</strong> (string): Last modified time (nanoseconds since epoch).</p>\n</li>\n<li><p><strong>feeAmount</strong> (string or null): Fee amount.</p>\n</li>\n</ul>\n</li>\n<li><p><strong>totalCount</strong> (integer): Total number of records.</p>\n</li>\n<li><p><strong>pageSize</strong> (integer): Number of records per page.</p>\n</li>\n<li><p><strong>currentPage</strong> (integer): Current page index.</p>\n</li>\n</ul>\n</li>\n</ul>\n<p><strong>Example Response:</strong></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"code\": 0,\n    \"msg\": \"success\",\n    \"data\": {\n        \"data\": [\n            {\n                \"id\": \"172543541827137205\",\n                \"matchSessionId\": \"172543541826629800\",\n                \"orderId\": \"172551630697548588\",\n                \"accountId\": 1000,\n                \"market\": \"ETCUSDT\",\n                \"asset\": \"ETC\",\n                \"side\": 1,\n                \"price\": \"9.85\",\n                \"amount\": \"1.16\",\n                \"role\": 1,\n                \"matchExecutionId\": \"172543541827137204\",\n                \"cpty\": 1001,\n                \"created\": \"1725516306980\",\n                \"lastModified\": \"1725516306980238984\",\n                \"feeAmount\": null\n            }\n        ],\n        \"totalCount\": 5623516,\n        \"pageSize\": 10,\n        \"currentPage\": 1\n    }\n}\n\n</code></pre>\n","urlObject":{"path":["api","trader","v1","exec","history"],"host":["https://v3api.jayxstaging.com"],"query":[],"variable":[]}},"response":[{"id":"cbfe4c95-6532-4765-9dd1-38ca48c9c005","name":"success","originalRequest":{"method":"POST","header":[{"key":"JAYX-ACCESS-KEY","value":"6o0i6dgxqcz5","description":"the API key from your JayX API page"},{"key":"JAYX-ACCESS-SIGN","value":"xxx","description":"signature computed from this request"},{"key":"JAYX-ACCESS-TIMESTAMP","value":"xxx","description":"UTC millisecond timestamp"}],"body":{"mode":"raw","raw":"{\n    \"category\": \"spot\",\n    \"symbol\": \"BTCUSDT\",\n    \"pageIndex\": 1,\n    \"pageSize\": 200\n}","options":{"raw":{"language":"json"}}},"url":"https://v3api.jayxstaging.com/api/trader/v1/exec/history"},"status":"OK","code":200,"_postman_previewlanguage":"plain","header":[{"key":"Vary","value":"Origin"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-USED-REQUEST_WEIGHT-1MINUTE","value":"10"},{"key":"X-USED-RAW_REQUESTS-1MINUTE","value":"1"},{"key":"X-USED-ORDERS-10SECOND","value":"0"},{"key":"X-USED-ORDERS-1DAY","value":"20"},{"key":"Content-Type","value":"text/plain; charset=utf-8"},{"key":"Content-Length","value":"6249"},{"key":"Date","value":"Thu, 22 Aug 2024 02:50:23 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\"code\":0,\"msg\":\"success\",\"data\":{\"data\":[{\"id\":\"1724248418459141\",\"matchSessionId\":\"172424841845925\",\"orderId\":\"172429159998804491\",\"accountId\":2828505,\"market\":\"BTCUSDT\",\"asset\":\"BTC\",\"side\":1,\"price\":\"1008\",\"amount\":\"1\",\"role\":2,\"matchExecutionId\":\"1724248418459142\",\"cpty\":666,\"created\":\"1724291599988\",\"lastModified\":\"1724291599987781794\",\"feeAmount\":null},{\"id\":\"1724248418459139\",\"matchSessionId\":\"172424841845924\",\"orderId\":\"172429159896812877\",\"accountId\":2828505,\"market\":\"BTCUSDT\",\"asset\":\"BTC\",\"side\":1,\"price\":\"1007\",\"amount\":\"1\",\"role\":2,\"matchExecutionId\":\"1724248418459140\",\"cpty\":666,\"created\":\"1724291598969\",\"lastModified\":\"1724291598969411952\",\"feeAmount\":null},{\"id\":\"1724248418459137\",\"matchSessionId\":\"172424841845923\",\"orderId\":\"172429159598598805\",\"accountId\":2828505,\"market\":\"BTCUSDT\",\"asset\":\"BTC\",\"side\":1,\"price\":\"1006\",\"amount\":\"1\",\"role\":2,\"matchExecutionId\":\"1724248418459138\",\"cpty\":666,\"created\":\"1724291595986\",\"lastModified\":\"1724291595986222939\",\"feeAmount\":null},{\"id\":\"1724211385575181\",\"matchSessionId\":\"172421138557539\",\"orderId\":\"172424348230799889\",\"accountId\":2828505,\"market\":\"BTCUSDT\",\"asset\":\"BTC\",\"side\":1,\"price\":\"5000\",\"amount\":\"1\",\"role\":2,\"matchExecutionId\":\"1724211385575182\",\"cpty\":2828679,\"created\":\"1724243482308\",\"lastModified\":\"1724243482307732257\",\"feeAmount\":null},{\"id\":\"1724211385575175\",\"matchSessionId\":\"172421138557536\",\"orderId\":\"172424322469363703\",\"accountId\":2828505,\"market\":\"BTCUSDT\",\"asset\":\"BTC\",\"side\":1,\"price\":\"1\",\"amount\":\"1\",\"role\":2,\"matchExecutionId\":\"1724211385575176\",\"cpty\":2828679,\"created\":\"1724243224694\",\"lastModified\":\"1724243224694068885\",\"feeAmount\":null},{\"id\":\"1724211385575173\",\"matchSessionId\":\"172421138557535\",\"orderId\":\"172424322199461506\",\"accountId\":2828505,\"market\":\"BTCUSDT\",\"asset\":\"BTC\",\"side\":1,\"price\":\"1\",\"amount\":\"1\",\"role\":2,\"matchExecutionId\":\"1724211385575174\",\"cpty\":2828679,\"created\":\"1724243221996\",\"lastModified\":\"1724243221995103710\",\"feeAmount\":null},{\"id\":\"1724211385575167\",\"matchSessionId\":\"172421138557532\",\"orderId\":\"172424313278595137\",\"accountId\":2828505,\"market\":\"BTCUSDT\",\"asset\":\"BTC\",\"side\":1,\"price\":\"1\",\"amount\":\"1\",\"role\":2,\"matchExecutionId\":\"1724211385575168\",\"cpty\":2828679,\"created\":\"1724243132786\",\"lastModified\":\"1724243132785697544\",\"feeAmount\":null},{\"id\":\"1724211385575165\",\"matchSessionId\":\"172421138557531\",\"orderId\":\"172424313164512036\",\"accountId\":2828505,\"market\":\"BTCUSDT\",\"asset\":\"BTC\",\"side\":1,\"price\":\"1\",\"amount\":\"1\",\"role\":2,\"matchExecutionId\":\"1724211385575166\",\"cpty\":2828679,\"created\":\"1724243131646\",\"lastModified\":\"1724243131646026630\",\"feeAmount\":null},{\"id\":\"1724211385575163\",\"matchSessionId\":\"172421138557530\",\"orderId\":\"172424313016835461\",\"accountId\":2828505,\"market\":\"BTCUSDT\",\"asset\":\"BTC\",\"side\":1,\"price\":\"1\",\"amount\":\"1\",\"role\":2,\"matchExecutionId\":\"1724211385575164\",\"cpty\":2828679,\"created\":\"1724243130170\",\"lastModified\":\"1724243130169500551\",\"feeAmount\":null},{\"id\":\"1724211385575139\",\"matchSessionId\":\"172421138557521\",\"orderId\":\"172424214880747304\",\"accountId\":2828505,\"market\":\"BTCUSDT\",\"asset\":\"BTC\",\"side\":1,\"price\":\"10000\",\"amount\":\"0.01112\",\"role\":2,\"matchExecutionId\":\"1724211385575140\",\"cpty\":666,\"created\":\"1724242148808\",\"lastModified\":\"1724242148807928469\",\"feeAmount\":null},{\"id\":\"1724211385575137\",\"matchSessionId\":\"172421138557521\",\"orderId\":\"172424214880747304\",\"accountId\":2828505,\"market\":\"BTCUSDT\",\"asset\":\"BTC\",\"side\":1,\"price\":\"10000\",\"amount\":\"0.98888\",\"role\":2,\"matchExecutionId\":\"1724211385575138\",\"cpty\":666,\"created\":\"1724242148808\",\"lastModified\":\"1724242148807711594\",\"feeAmount\":null},{\"id\":\"1724211385575135\",\"matchSessionId\":\"172421138557520\",\"orderId\":\"172424214757111719\",\"accountId\":2828505,\"market\":\"BTCUSDT\",\"asset\":\"BTC\",\"side\":1,\"price\":\"10000\",\"amount\":\"0.01112\",\"role\":2,\"matchExecutionId\":\"1724211385575136\",\"cpty\":666,\"created\":\"1724242147573\",\"lastModified\":\"1724242147572457925\",\"feeAmount\":null},{\"id\":\"1724211385575133\",\"matchSessionId\":\"172421138557520\",\"orderId\":\"172424214757111719\",\"accountId\":2828505,\"market\":\"BTCUSDT\",\"asset\":\"BTC\",\"side\":1,\"price\":\"10000\",\"amount\":\"0.98888\",\"role\":2,\"matchExecutionId\":\"1724211385575134\",\"cpty\":666,\"created\":\"1724242147573\",\"lastModified\":\"1724242147572296311\",\"feeAmount\":null},{\"id\":\"1724211385575131\",\"matchSessionId\":\"172421138557519\",\"orderId\":\"172424214653439434\",\"accountId\":2828505,\"market\":\"BTCUSDT\",\"asset\":\"BTC\",\"side\":1,\"price\":\"10000\",\"amount\":\"0.01112\",\"role\":2,\"matchExecutionId\":\"1724211385575132\",\"cpty\":666,\"created\":\"1724242146536\",\"lastModified\":\"1724242146535418916\",\"feeAmount\":null},{\"id\":\"1724211385575129\",\"matchSessionId\":\"172421138557519\",\"orderId\":\"172424214653439434\",\"accountId\":2828505,\"market\":\"BTCUSDT\",\"asset\":\"BTC\",\"side\":1,\"price\":\"10000\",\"amount\":\"0.98888\",\"role\":2,\"matchExecutionId\":\"1724211385575130\",\"cpty\":666,\"created\":\"1724242146536\",\"lastModified\":\"1724242146535296044\",\"feeAmount\":null},{\"id\":\"1724211385575125\",\"matchSessionId\":\"172421138557517\",\"orderId\":\"172424074987371233\",\"accountId\":2828505,\"market\":\"BTCUSDT\",\"asset\":\"BTC\",\"side\":1,\"price\":\"10000\",\"amount\":\"0.01112\",\"role\":2,\"matchExecutionId\":\"1724211385575126\",\"cpty\":666,\"created\":\"1724240749874\",\"lastModified\":\"1724240749874094808\",\"feeAmount\":null},{\"id\":\"1724211385575123\",\"matchSessionId\":\"172421138557517\",\"orderId\":\"172424074987371233\",\"accountId\":2828505,\"market\":\"BTCUSDT\",\"asset\":\"BTC\",\"side\":1,\"price\":\"10000\",\"amount\":\"0.98888\",\"role\":2,\"matchExecutionId\":\"1724211385575124\",\"cpty\":666,\"created\":\"1724240749874\",\"lastModified\":\"1724240749873941204\",\"feeAmount\":null},{\"id\":\"1724211385575121\",\"matchSessionId\":\"172421138557516\",\"orderId\":\"172422935542125140\",\"accountId\":2828505,\"market\":\"BTCUSDT\",\"asset\":\"BTC\",\"side\":1,\"price\":\"10000\",\"amount\":\"0.01112\",\"role\":2,\"matchExecutionId\":\"1724211385575122\",\"cpty\":666,\"created\":\"1724229355422\",\"lastModified\":\"1724229355421953765\",\"feeAmount\":null},{\"id\":\"1724211385575119\",\"matchSessionId\":\"172421138557516\",\"orderId\":\"172422935542125140\",\"accountId\":2828505,\"market\":\"BTCUSDT\",\"asset\":\"BTC\",\"side\":1,\"price\":\"10000\",\"amount\":\"0.98888\",\"role\":2,\"matchExecutionId\":\"1724211385575120\",\"cpty\":666,\"created\":\"1724229355422\",\"lastModified\":\"1724229355421764691\",\"feeAmount\":null}],\"totalCount\":19,\"pageSize\":50,\"currentPage\":1}}"}],"_postman_id":"dc11e210-a319-4909-b190-2f319c90feb0"},{"name":"Query Matched or Cancelled Order","id":"d3a528f7-a3fe-49f2-8850-54ec6dfe3c1a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"https://v3api.jayxstaging.com/api/trader/v1/order","description":"<p>Retrieve Order Details</p>\n<h4 id=\"request-parameters\"><strong>Request Parameters:</strong></h4>\n<ul>\n<li><p><strong>id</strong> (string, required): Unique identifier of the order.</p>\n</li>\n<li><p><strong>category</strong> (string, required): Market category (\"spot\" or \"perpetual\").</p>\n</li>\n<li><p><strong>symbol</strong> (string, required): Trading pair (e.g., \"ETCUSDT\").</p>\n</li>\n</ul>\n<h4 id=\"example-request\">Example Request:</h4>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"id\": \"107386413\",\n    \"category\": \"spot\",\n    \"symbol\": \"ETCUSDT\"\n}\n\n</code></pre>\n<h4 id=\"response-structure\">Response Structure:</h4>\n<ul>\n<li><p><strong>code</strong> (integer): Status code indicating the result of the request. 0 indicates success.</p>\n</li>\n<li><p><strong>msg</strong> (string): Message field, indicating success or failure.</p>\n</li>\n<li><p><strong>data</strong> (object):</p>\n<ul>\n<li><p><strong>id</strong> (string): Unique identifier of the order.</p>\n</li>\n<li><p><strong>accountId</strong> (integer): Account ID.</p>\n</li>\n<li><p><strong>market</strong> (string): Trading pair.</p>\n</li>\n<li><p><strong>asset</strong> (string): Asset involved in the order.</p>\n</li>\n<li><p><strong>type</strong> (integer): Order type (1 indicates a market order).</p>\n</li>\n<li><p><strong>side</strong> (integer): Side of the order. 1 for Buy, 2 for Sell.</p>\n</li>\n<li><p><strong>price</strong> (string): Order price.</p>\n</li>\n<li><p><strong>amount</strong> (string): Order amount.</p>\n</li>\n<li><p><strong>direction</strong> (integer): Order direction (usually 0).</p>\n</li>\n<li><p><strong>positionActionType</strong> (integer): Position action type (usually 0).</p>\n</li>\n<li><p><strong>executed</strong> (string): Executed quantity.</p>\n</li>\n<li><p><strong>executedAvgPrice</strong> (string): Average executed price.</p>\n</li>\n<li><p><strong>noExecuted</strong> (string): Non-executed quantity.</p>\n</li>\n<li><p><strong>status</strong> (integer): Order status (2 indicates completed).</p>\n</li>\n<li><p><strong>feeAmount</strong> (string): Fee amount.</p>\n</li>\n<li><p><strong>feeAsset</strong> (string): Fee asset.</p>\n</li>\n<li><p><strong>created</strong> (integer): Order creation time (milliseconds since epoch).</p>\n</li>\n<li><p><strong>receiveTime</strong> (integer): Order receive time (nanoseconds since epoch).</p>\n</li>\n<li><p><strong>lastModified</strong> (integer): Last modified time (nanoseconds since epoch).</p>\n</li>\n<li><p><strong>marketType</strong> (string): Market type (e.g., \"spot\").</p>\n</li>\n</ul>\n</li>\n</ul>\n<h4 id=\"example-response\">Example Response:</h4>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"code\": 0,\n    \"msg\": null,\n    \"data\": {\n        \"id\": \"172492166650233812\",\n        \"accountId\": 1000,\n        \"market\": \"TRXUSDT\",\n        \"asset\": \"TRX\",\n        \"type\": 1,\n        \"side\": 2,\n        \"price\": \"0.1\",\n        \"amount\": \"1\",\n        \"direction\": 0,\n        \"positionActionType\": 0,\n        \"executed\": \"1\",\n        \"executedAvgPrice\": \"0.1\",\n        \"noExecuted\": \"0\",\n        \"status\": 2,\n        \"feeAmount\": \"0\",\n        \"feeAsset\": \"USDT\",\n        \"created\": 1724921666502,\n        \"receiveTime\": 1724921668264002000,\n        \"lastModified\": 1724921668558540300,\n        \"marketType\": \"spot\"\n    }\n}\n\n</code></pre>\n<hr />\n","urlObject":{"path":["api","trader","v1","order"],"host":["https://v3api.jayxstaging.com"],"query":[],"variable":[]}},"response":[{"id":"dc781727-c54e-4eb3-b4d9-3f9072bd8e49","name":"order not found","originalRequest":{"method":"POST","header":[{"key":"JAYX-ACCESS-KEY","value":"6o0i6dgxqcz5","description":"the API key from your JayX API page"},{"key":"JAYX-ACCESS-SIGN","value":"xxx","description":"signature computed from this request"},{"key":"JAYX-ACCESS-TIMESTAMP","value":"xxx","description":"UTC millisecond timestamp"}],"body":{"mode":"raw","raw":"{\n    \"id\": \"107386413\",\n    \"category\": \"spot\",\n    \"symbol\": \"ETCUSDT\"\n}","options":{"raw":{"language":"json"}}},"url":"https://v3api.jayxstaging.com/api/trader/v1/order"},"status":"OK","code":200,"_postman_previewlanguage":"plain","header":[{"key":"Vary","value":"Origin"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-USED-REQUEST_WEIGHT-1MINUTE","value":"5"},{"key":"X-USED-RAW_REQUESTS-1MINUTE","value":"1"},{"key":"X-USED-ORDERS-10SECOND","value":"0"},{"key":"X-USED-ORDERS-1DAY","value":"20"},{"key":"Content-Type","value":"text/plain; charset=utf-8"},{"key":"Content-Length","value":"49"},{"key":"Date","value":"Thu, 22 Aug 2024 01:53:39 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\"code\":-111,\"msg\":\"Order not found\",\"data\":null}"},{"id":"2055abdc-1287-4375-bb78-2c8705dc44a7","name":"success","originalRequest":{"method":"POST","header":[{"key":"JAYX-ACCESS-KEY","value":"6o0i6dgxqcz5","description":"the API key from your JayX API page"},{"key":"JAYX-ACCESS-SIGN","value":"xxx","description":"signature computed from this request"},{"key":"JAYX-ACCESS-TIMESTAMP","value":"xxx","description":"UTC millisecond timestamp"}],"body":{"mode":"raw","raw":"{\n    \"id\": \"172429159598598805\",\n    \"category\": \"spot\",\n    \"symbol\": \"BTCUSDT\"\n}","options":{"raw":{"language":"json"}}},"url":"https://v3api.jayxstaging.com/api/trader/v1/order"},"status":"OK","code":200,"_postman_previewlanguage":"plain","header":[{"key":"Vary","value":"Origin"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-USED-REQUEST_WEIGHT-1MINUTE","value":"5"},{"key":"X-USED-RAW_REQUESTS-1MINUTE","value":"1"},{"key":"X-USED-ORDERS-10SECOND","value":"0"},{"key":"X-USED-ORDERS-1DAY","value":"20"},{"key":"Content-Type","value":"text/plain; charset=utf-8"},{"key":"Content-Length","value":"415"},{"key":"Date","value":"Thu, 22 Aug 2024 03:13:38 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\"code\":0,\"msg\":null,\"data\":{\"id\":\"172429159598598805\",\"accountId\":2828505,\"market\":\"BTCUSDT\",\"asset\":null,\"type\":1,\"side\":1,\"price\":\"10000\",\"amount\":\"1\",\"frozenAmount\":\"0\",\"frozenAmountToAssetScale\":0,\"direction\":0,\"positionActionType\":0,\"executed\":\"1\",\"executedAvgPrice\":\"1006\",\"noExecuted\":\"0\",\"status\":2,\"created\":1724291595985,\"receiveTime\":1724291595986146800,\"lastModified\":1724291595986363100,\"perp\":false}}"}],"_postman_id":"d3a528f7-a3fe-49f2-8850-54ec6dfe3c1a"},{"name":"(In progress) Query Trade Record","id":"6c491ee4-6961-4d44-bc68-fa6ef48f8864","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"JAYX-ACCESS-KEY","value":"xxx","description":"<p>the API key from your JayX API page</p>\n"},{"key":"JAYX-ACCESS-SIGN","value":"xxx","description":"<p>signature computed from this request</p>\n"},{"key":"JAYX-ACCESS-TIMESTAMP","value":"xxx","description":"<p>UTC millisecond timestamp</p>\n"}],"body":{"mode":"raw","raw":"{\n    \"orderId\": \"105679415\",\n    \"category\": \"spot\",\n    \"symbol\": \"BTCUSDT\"\n}","options":{"raw":{"language":"json"}}},"url":"https://v3api.jayxstaging.com/api/trader/v1/exec","urlObject":{"path":["api","trader","v1","exec"],"host":["https://v3api.jayxstaging.com"],"query":[],"variable":[]}},"response":[],"_postman_id":"6c491ee4-6961-4d44-bc68-fa6ef48f8864"},{"name":"Active Order","id":"300f7098-9344-4733-b71f-44644317f3fb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"JAYX-ACCESS-KEY","value":"xxx","description":"<p>the API key from your JayX API page</p>\n","type":"text"},{"key":"JAYX-ACCESS-SIGN","value":"xxx","description":"<p>signature computed from this request</p>\n","type":"text"},{"key":"JAYX-ACCESS-TIMESTAMP","value":"xxx","description":"<p>UTC millisecond timestamp</p>\n","type":"text"}],"url":"https://v3api.jayxstaging.com/api/v1/trader/active?symbol=BTCUSDT&id=1111&pageIndex=1&pageSize=10&startTime=1724342400000&endTime=1724428799000&side=1","urlObject":{"path":["api","v1","trader","active"],"host":["https://v3api.jayxstaging.com"],"query":[{"key":"symbol","value":"BTCUSDT"},{"key":"id","value":"1111"},{"key":"pageIndex","value":"1"},{"key":"pageSize","value":"10"},{"description":{"content":"<p>Millisecond</p>\n","type":"text/plain"},"key":"startTime","value":"1724342400000"},{"description":{"content":"<p>Millisecond</p>\n","type":"text/plain"},"key":"endTime","value":"1724428799000"},{"description":{"content":"<p>1: buy, 2: sell</p>\n","type":"text/plain"},"key":"side","value":"1"}],"variable":[]}},"response":[],"_postman_id":"300f7098-9344-4733-b71f-44644317f3fb"},{"name":"Batch Cancel Orders","id":"8eb1446a-5e9a-45bc-bc22-fa67f86cf28e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"JAYX-ACCESS-KEY","value":"6o0i6dgxqcz5","type":"text"},{"key":"JAYX-ACCESS-SIGN","value":"9db3687add8c97e9ec8fe6b3ec7e30281f9d87c843ad9eb69adabca471bbbd15","type":"text"},{"key":"JAYX-ACCESS-TIMESTAMP","value":"xxx","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"orderIds\": [\"1\", \"2\"],\r\n    \"symbol\": \"BTCUSDT\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://v3api.jayxstaging.com/api/v1/trader/order/cancel/batch","description":"<h3 id=\"batch-cancel-orders\">Batch Cancel Orders</h3>\n<p>This endpoint allows the trader to cancel multiple orders in a single batch.</p>\n<h3 id=\"request-weight\">Request Weight</h3>\n<p>1</p>\n<h4 id=\"request-body\">Request Body</h4>\n<ul>\n<li><p><code>orderIds</code> (array of strings) - The IDs of the orders to be cancelled.</p>\n</li>\n<li><p><code>symbol</code> (string) - The symbol for which the orders are to be cancelled.</p>\n</li>\n</ul>\n<h4 id=\"response\">Response</h4>\n<p>The response is in JSON format and follows the schema below:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"code\": 0,\n    \"msg\": null,\n    \"data\": null\n}\n\n</code></pre>\n","urlObject":{"path":["api","v1","trader","order","cancel","batch"],"host":["https://v3api.jayxstaging.com"],"query":[],"variable":[]}},"response":[],"_postman_id":"8eb1446a-5e9a-45bc-bc22-fa67f86cf28e"}],"id":"bb67b29c-1848-42ef-a94b-d059433527c5","_postman_id":"bb67b29c-1848-42ef-a94b-d059433527c5","description":""},{"name":"Spot Trading","item":[{"name":"Place an Order","id":"512cb0ba-2c0d-4816-9822-44673a7789f7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"https://v3api.jayxstaging.com/api/v1/trader/order","description":"<h3 id=\"create-a-new-order\">Create a New Order</h3>\n<p>This endpoint allows you to place a new order for trading.</p>\n<h4 id=\"request-body\">Request Body</h4>\n<ul>\n<li><p><code>symbol</code> (string): The symbol for the trading pair, e.g., \"BTCUSDT\".</p>\n</li>\n<li><p><code>type</code> (string): The type of order, e.g., \"LIMIT\" for limit order or \"MARKET\" for market order.</p>\n<ul>\n<li><p><code>LIMIT</code></p>\n</li>\n<li><p><code>MARKET</code></p>\n</li>\n</ul>\n</li>\n<li><p><code>price</code> (string): The price at which the order should be executed.</p>\n</li>\n<li><p><code>amount</code> (string): The amount of the asset to be traded.</p>\n</li>\n<li><p><code>side</code> (string): The side of the order, either \"BUY\" or \"SELL\".</p>\n<ul>\n<li><p><code>BUY</code></p>\n</li>\n<li><p><code>SELL</code></p>\n</li>\n</ul>\n</li>\n<li><p><code>executionType</code> (integer): The execution type for the order, with options like 0 for \"normal\", 1 for \"ioc\", and 2 for \"maker_only\".</p>\n<ul>\n<li><code>NORMAL</code></li>\n<li><code>IOC</code></li>\n<li><code>MAKER_ONLY</code></li>\n</ul>\n</li>\n</ul>\n<h4 id=\"response\">Response</h4>\n<p>The response will contain the following fields:</p>\n<ul>\n<li><p><code>code</code> (integer): The status code of the response.</p>\n</li>\n<li><p><code>msg</code> (string): A message associated with the response, if any.</p>\n</li>\n<li><p><code>data</code> (string): Additional data related to the order placement.</p>\n</li>\n</ul>\n<h4 id=\"example\">Example</h4>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"code\": 0,\n    \"msg\": null,\n    \"data\": \"\"\n}\n\n</code></pre>\n","urlObject":{"path":["api","v1","trader","order"],"host":["https://v3api.jayxstaging.com"],"query":[],"variable":[]}},"response":[{"id":"ddac628c-e8f3-4b76-b490-27d750e814a8","name":"success","originalRequest":{"method":"POST","header":[{"key":"JAYX-ACCESS-KEY","value":"6o0i6dgxqcz5","description":"the API key from your JayX API page"},{"key":"JAYX-ACCESS-SIGN","value":"xxx","description":"signature computed from this request"},{"key":"JAYX-ACCESS-TIMESTAMP","value":"xxx","description":"UTC millisecond timestamp"}],"body":{"mode":"raw","raw":"{\n    \"symbol\": \"BTCUSDT\",\n    \"type\": 1, // 1: 限价单；2：市价单\n    \"price\": \"10000\", \n    \"amount\": \"1\",\n    \"side\": 1, //1；byt；2：sell\n    \"executionType\": 0 //0：普通的单子；1：IOC 单子，下单即撤\n}","options":{"raw":{"language":"json"}}},"url":"https://v3api.jayxstaging.com/api/v1/trader/order"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Vary","value":"Origin"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-USED-REQUEST_WEIGHT-1MINUTE","value":"500"},{"key":"X-USED-RAW_REQUESTS-1MINUTE","value":"1"},{"key":"X-USED-ORDERS-10SECOND","value":"0"},{"key":"X-USED-ORDERS-1DAY","value":"0"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"49"},{"key":"Date","value":"Wed, 21 Aug 2024 08:35:53 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"code\": 0,\n    \"msg\": null,\n    \"data\": \"172422935542125140\"\n}"}],"_postman_id":"512cb0ba-2c0d-4816-9822-44673a7789f7"}],"id":"6aa5c409-9281-40fb-bd3a-45b1af8b22ac","description":"<p>These endpoints are for authenticated traders to manage their orders. Note that you must have a JayX account and an corresponding API key and secret pair to use these endpoints.</p>\n<p>Replace the following Header Params:</p>\n<ol>\n<li><p><code>JAYX-ACCESS-KEY</code> - The API Key from your JayX API page</p>\n</li>\n<li><p><code>JAYX-ACCESS-SIGN</code> - The signature of the request (see below)</p>\n</li>\n<li><p><code>JAYX-ACCESS-TIMESTAMP</code> - UTC millisecond timestamp</p>\n</li>\n</ol>\n<p>Note that your requests are subjected to rate limit per API key. Too many requests above the allowed threshold will result in <code>429</code> then eventually<code>418</code> banning of your API access (<a href=\"https://documenter.getpostman.com/view/5975131/2sA3BuXpLQ#intro\">read more here</a>).</p>\n","_postman_id":"6aa5c409-9281-40fb-bd3a-45b1af8b22ac"},{"name":"Condition Trading","item":[{"name":"Place a conditional order","id":"37ed002b-ee7a-4eb7-bc82-0bdf94614878","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n  \"conditionType\": \"TAKE_PROFIT\",\r\n  \"symbol\": \"BTCUSD\",\r\n  \"triggerPrice\": \"50000\",\r\n  \"priceType\": \"INDEX\",\r\n  \"type\": \"LIMIT\",\r\n  \"price\": \"51000\",\r\n  \"amount\": \"1\",\r\n  \"direction\": \"LONG\",\r\n  \"stopOrProfit\": {\r\n    \"priceType\": \"EXCHANGE\",\r\n    \"price\": \"52000\",\r\n    \"amount\": \"1\"\r\n  }\r\n}","options":{"raw":{"language":"json"}}},"url":"https://v3api.jayxstaging.com/api/v1/trader/order/condition","description":"<h3 id=\"create-condition-order\">Create Condition Order</h3>\n<p>This endpoint allows you to create a trader order condition.</p>\n<p><strong>Request Body</strong></p>\n<ul>\n<li><p><code>conditionType</code> (string, required): Type of condition, value enum: (NORMAL, SPOT, TAKE_PROFIT)</p>\n</li>\n<li><p><code>symbol</code> (string, required): Symbol for the order</p>\n</li>\n<li><p><code>triggerPrice</code> (string, required): Trigger price for the condition</p>\n</li>\n<li><p><code>priceType</code> (string, required): Type of trigger price, value enum: (EXCHANGE, INDEX)</p>\n</li>\n<li><p><code>type</code> (string, required): Type of order,<br />  value enum: (LIMIT, MARKET)</p>\n</li>\n<li><p><code>price</code> (string, required): Price for the order</p>\n</li>\n<li><p><code>amount</code> (string, required): Amount for the order</p>\n</li>\n<li><p><code>direction</code> (string, required): Direction of the order, value enum: (LONG, SHORT)</p>\n</li>\n<li><p><code>stopOrProfit</code> (object): Object containing stop or profit details</p>\n<ul>\n<li><p><code>priceType</code> (string): Type of stop or profit price</p>\n</li>\n<li><p><code>price</code> (string): Stop or profit price</p>\n</li>\n<li><p><code>amount</code> (string): Amount for stop or profit</p>\n</li>\n</ul>\n</li>\n</ul>\n<p><strong>Response</strong></p>\n<ul>\n<li><p>Status: 200</p>\n</li>\n<li><p>Content-Type: application/json</p>\n</li>\n<li><p><code>code</code> (number): Response code</p>\n</li>\n<li><p><code>msg</code> (string): Response message</p>\n</li>\n<li><p><code>data</code> (object): Response data</p>\n</li>\n</ul>\n","urlObject":{"path":["api","v1","trader","order","condition"],"host":["https://v3api.jayxstaging.com"],"query":[],"variable":[]}},"response":[],"_postman_id":"37ed002b-ee7a-4eb7-bc82-0bdf94614878"},{"name":"Query condition order","id":"706165e6-364a-48d0-9459-afad498663b5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"JAYX-ACCESS-KEY","value":"6o0i6dgxqcz5","type":"text"},{"key":"JAYX-ACCESS-SIGN","value":"zeno-test","type":"text"}],"url":"https://v3api.jayxstaging.com/api/v1/trader/order/condition?symbol=BTCUSDT","description":"<p>This endpoint makes an HTTP GET request to retrieve the order condition for a specific symbol (in this case, BTCUSDT). The response will be in JSON format and will include a status code of 200. The response body will contain a \"code\" indicating the status of the request, a \"msg\" field for any additional message, and a \"data\" array which may hold the order condition information.</p>\n","urlObject":{"path":["api","v1","trader","order","condition"],"host":["https://v3api.jayxstaging.com"],"query":[{"key":"symbol","value":"BTCUSDT"}],"variable":[]}},"response":[],"_postman_id":"706165e6-364a-48d0-9459-afad498663b5"},{"name":"Cancel condition order","id":"01187ce5-0dff-4d8d-b5b4-dafa235b8ec7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"https://v3api.jayxstaging.com/api/v1/trader/order/condition?orderId=11111111","description":"<p>This endpoint is used to delete a specific order condition.</p>\n<h4 id=\"request\">Request</h4>\n<ul>\n<li><p>Query Parameters:</p>\n<ul>\n<li>orderId: (string) The ID of the order to be deleted.</li>\n</ul>\n</li>\n</ul>\n<h4 id=\"response\">Response</h4>\n<ul>\n<li><p>Status: 200</p>\n</li>\n<li><pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">    {\n      \"code\": 0,\n      \"msg\": null,\n      \"data\": null\n    } \n  \n</code></pre>\n</li>\n</ul>\n","urlObject":{"path":["api","v1","trader","order","condition"],"host":["https://v3api.jayxstaging.com"],"query":[{"key":"orderId","value":"11111111"}],"variable":[]}},"response":[],"_postman_id":"01187ce5-0dff-4d8d-b5b4-dafa235b8ec7"}],"id":"ca657055-625b-4d83-953f-6977d193023a","_postman_id":"ca657055-625b-4d83-953f-6977d193023a","description":""},{"name":"Perp Trading","item":[{"name":"Put Order","id":"85a1b117-0ef0-4d09-af4c-7ab2f9ad01fa","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"JAYX-ACCESS-KEY","value":"6o0i6dgxqcz5","type":"text"},{"key":"JAYX-ACCESS-SIGN","value":"zeno-test","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"symbol\": \"BTCUSDT_PERP\",\r\n    // 订单的类型，1 通常代表限价单，2 代表市价单。\r\n    \"type\": \"LIMIT\",\r\n    // 订单的数量，这里表示交易1个BTC。\r\n    \"amount\": \"1\",\r\n    \"price\": \"12311\",\r\n    \"direction\": \"LONG\",\r\n    \"priceType\": \"EXCHANGE\",\r\n    \"executionType\":\"NORMAL\",\r\n    \"reduceOnly\": 0,\r\n    \"stopOrProfitType\": \"STOP\",\r\n    \"stopOrProfit\": {\r\n        \"priceType\": \"INDEX\",\r\n        \"price\": \"2000\",\r\n        \"amount\": \"0.1\"\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":"https://v3api.jayxstaging.com/api/v1/perp/order","description":"<h3 id=\"place-perpetual-order\">Place Perpetual Order</h3>\n<p>This endpoint allows you to place an order in the perpetual market. You can specify various parameters such as trading pair, order type, quantity, price, direction, and whether the order is reduce-only.</p>\n<h4 id=\"request-url\">Request URL</h4>\n<p><code>POST</code> https://v3api.jayxstaging.com/api/v1/perp/order</p>\n<h4 id=\"headers\">Headers</h4>\n<ul>\n<li><p><strong>JAYX-ACCESS-KEY</strong>: 6o0i6dgxqcz5</p>\n</li>\n<li><p><strong>JAYX-ACCESS-SIGN</strong>: d7e377c9395daeec17afa05c2e0f45455b783b503ac5a1f1d218d09961a0c508</p>\n</li>\n<li><p><strong>JAYX-ACCESS-TIMESTAMP</strong>: xxx</p>\n</li>\n</ul>\n<h4 id=\"request-body\">Request Body</h4>\n<ul>\n<li><p><strong>symbol</strong> (string): The trading pair symbol you want to place the order for, e.g., \"BTCUSDT_PERP\".</p>\n</li>\n<li><p><strong>type</strong> (string): The type of order you want to place. \"LIMIT\" typically represents a limit order, while \"MARKET\" represents a market order.</p>\n</li>\n<li><p><strong>amount</strong> (string): The quantity of the asset to be traded. For example, \"1\" indicates trading 1 BTC.</p>\n</li>\n<li><p><strong>price</strong> (string): The price at which you want to place the order. This is only used for limit orders. For market orders, this field can be omitted.</p>\n</li>\n<li><p><strong>direction</strong> (string): The direction of the trade. \"LONG\" indicates a long position (buy), and \"SHORT\" indicates a short position (sell).</p>\n</li>\n<li><p><strong>priceType</strong> (string): The type of price used for the order:</p>\n<ul>\n<li><p><strong>EXCHANGE</strong>: Refers to the price determined by the internal market of the exchange, based on buy and sell activities within the platform.</p>\n</li>\n<li><p><strong>INDEX</strong>: Refers to a price calculated based on data from multiple external markets or sources, often used to mitigate the impact of volatility from a single market on contracts or other transactions.</p>\n</li>\n</ul>\n</li>\n<li><p><strong>executionType</strong> (string, optional): The way or category in which a trade is carried out:</p>\n<ul>\n<li><p><strong>NORMAL</strong></p>\n</li>\n<li><p><strong>IOC</strong></p>\n</li>\n<li><p><strong>MAKER_ONLY</strong></p>\n</li>\n</ul>\n</li>\n<li><p><strong>reduceOnly</strong> (boolean, optional): Indicates whether the order is a reduce-only order.</p>\n<ul>\n<li><p><code>true</code></p>\n</li>\n<li><p><code>false</code></p>\n</li>\n</ul>\n</li>\n<li><p><strong>stopOrProfitType</strong> (string, optional): The type of STOP or TAKE_PROFIT order. In the last call, it was \"STOP\".</p>\n</li>\n<li><p><strong>stopOrProfit</strong> (object, ): Additional parameters for stop or profit order:</p>\n<ul>\n<li><p><strong>priceType</strong> (string): The type of price used for the stop or profit order, e.g., \"INDEX\".</p>\n</li>\n<li><p><strong>price</strong> (string): The price at which the stop or profit order is triggered.</p>\n</li>\n<li><p><strong>amount</strong> (string): The quantity associated with the stop or profit order.</p>\n</li>\n</ul>\n</li>\n</ul>\n<p>Example Request Body:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"symbol\": \"BTCUSDT_PERP\",\n    \"type\": \"LIMIT\",\n    \"amount\": \"1\",\n    \"price\": \"12311\",\n    \"direction\": \"LONG\",\n    \"priceType\": \"EXCHANGE\",\n    \"reduceOnly\": false,\n    \"stopOrProfitType\": \"STOP\",\n    \"stopOrProfit\": {\n        \"priceType\": \"INDEX\",\n        \"price\": \"2000\",\n        \"amount\": \"0.1\"\n    }\n}\n\n</code></pre>\n<h4 id=\"response\">Response</h4>\n<ul>\n<li><p><strong>code</strong> (number): The status code of the response. 0 indicates that the request was successful.</p>\n</li>\n<li><p><strong>msg</strong> (string): A message associated with the response. It is typically empty if the request was successful.</p>\n</li>\n<li><p><strong>data</strong> (string): Contains the result of the order request, e.g., the unique identifier for the newly placed order.</p>\n</li>\n</ul>\n<p>Example Response:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"code\": 0,\n  \"msg\": \"\",\n  \"data\": \"172441015774403936\"\n}\n\n</code></pre>\n","urlObject":{"path":["api","v1","perp","order"],"host":["https://v3api.jayxstaging.com"],"query":[],"variable":[]}},"response":[{"id":"4f122161-9d9e-4d43-be1b-13836aacc175","name":"success","originalRequest":{"method":"POST","header":[{"key":"JAYX-ACCESS-KEY","value":"xxx","type":"text"},{"key":"JAYX-ACCESS-SIGN","value":"xxx","type":"text"},{"key":"JAYX-ACCESS-TIMESTAMP","value":"xxx","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"symbol\": \"BTCUSDT_PERP\",\r\n    // 订单的类型，1 通常代表限价单，2 代表市价单。\r\n    \"type\": 1,\r\n    // 订单的数量，这里表示交易1个BTC。\r\n    \"amount\": \"1\",\r\n    // 订单价格，只有在限价单的情况下才会生效。\r\n    \"price\": \"10000\",\r\n    // 方向，1 表示开多（买入），-1 表示开空（卖出）。\r\n    \"direction\": 1,\r\n    \"priceType\": 1,\r\n    // 是否仅减仓，0 表示非减仓订单，1 表示此订单为减仓订单。\r\n    \"reduceOnly\": 0\r\n}","options":{"raw":{"language":"json"}}},"url":"https://v3api.jayxstaging.com/api/v1/perp/order"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"code\": 0,\n    \"msg\": \"\",\n    \"data\": \"172441015774403936\"\n}"}],"_postman_id":"85a1b117-0ef0-4d09-af4c-7ab2f9ad01fa"},{"name":"Close Order","id":"1f08b9d8-e037-40bc-b723-dcccbbe98e44","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"https://v3api.jayxstaging.com/api/v1/perp/closeOrder","description":"<h3 id=\"close-order\">Close Order</h3>\n<hr />\n<h4 id=\"request-body\">Request Body</h4>\n<ul>\n<li><p><strong>symbol</strong>: The trading pair symbol for the order, e.g., \"BTCUSDT_PERP\".</p>\n</li>\n<li><p><strong>type</strong>: The type of order you want to place. 1 typically represents a limit order, while 2 represents a market order.</p>\n<ul>\n<li><p><code>LIMIT</code></p>\n</li>\n<li><p><code>MARKET</code></p>\n</li>\n</ul>\n</li>\n<li><p><strong>amount</strong>: The quantity of the asset to be traded, e.g., \"1\", indicates trading 1 BTC.</p>\n</li>\n<li><p><strong>price</strong>: The price at which you want to place the order. This is only used for limit orders. For market orders, this field can be omitted.</p>\n</li>\n<li><p><strong>direction</strong>: The direction of the position to be closed. \"LONG\" indicates a long position (buy), and \"SHORT\" indicates a short position (sell).</p>\n<ul>\n<li><p><code>LONG</code></p>\n</li>\n<li><p><code>SHORT</code></p>\n</li>\n</ul>\n</li>\n</ul>\n<h4 id=\"response\">Response</h4>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"code\": 0,\n    \"msg\": null,\n    \"data\": \"613155968042679\"\n}\n\n</code></pre>\n","urlObject":{"path":["api","v1","perp","closeOrder"],"host":["https://v3api.jayxstaging.com"],"query":[],"variable":[]}},"response":[],"_postman_id":"1f08b9d8-e037-40bc-b723-dcccbbe98e44"},{"name":"Get Positions","id":"9050eb67-c455-4df5-ab32-eae6802ad8c2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"/api/v1/perp/getPositions","description":"<p>This endpoint allows you to place a close order for a perpetual contract. You can specify parameters such as trading pair, order type, quantity, original direction, and price.</p>\n<h4 id=\"example-headers\">Example HEADERS</h4>\n<ul>\n<li><p><strong>JAYX-ACCESS-KEY</strong> 6o0i6dgxqcz5</p>\n</li>\n<li><p><strong>JAYX-ACCESS-SIGN</strong> d7e377c9395daeec17afa05c2e0f45455b783b503ac5a1f1d218d09961a0c508</p>\n</li>\n<li><p><strong>JAYX-ACCESS-TIMESTAMP</strong> xxx</p>\n</li>\n</ul>\n<h4 id=\"request-body\">Request Body</h4>\n<ul>\n<li><p><strong>symbol</strong>: The trading pair symbol you want to query, e.g., \"BTCUSDT_PERP\".</p>\n</li>\n<li><p><strong>pageSize</strong>: The number of records to retrieve per page, e.g., 200.</p>\n</li>\n<li><p><strong>pageIndex</strong>: The page number to retrieve, e.g., 1.</p>\n</li>\n</ul>\n<p>Example Request Body:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\"symbol\": \"BTCUSDT_PERP\", \"pageSize\": 200, \"pageIndex\": 1}\n\n</code></pre>\n<h4 id=\"response\">Response</h4>\n<ul>\n<li><p><strong>code</strong>: Indicates the result of the request. A value of 0 signifies success.</p>\n</li>\n<li><p><strong>msg</strong>: Provides additional information about the result of the request. \"Query successful\" indicates a successful query.</p>\n</li>\n<li><p><strong>data</strong>: Contains the following fields:</p>\n<ul>\n<li><p><strong>data</strong>: An array of position objects, where each object includes:</p>\n<ul>\n<li><p><strong>id</strong>: The unique identifier for the position record.</p>\n</li>\n<li><p><strong>accountId</strong>: The user account ID.</p>\n</li>\n<li><p><strong>marketId</strong>: The market ID, indicating which market the position belongs to.</p>\n</li>\n<li><p><strong>market</strong>: The trading pair symbol, e.g., \"BTCUSDT\".</p>\n</li>\n<li><p><strong>marginAsset</strong>: The type of margin asset, e.g., \"USDT\".</p>\n</li>\n<li><p><strong>priceType</strong>: The type of price used for the order:</p>\n<ul>\n<li><p>1 for exchange price.</p>\n</li>\n<li><p>2 for index price.</p>\n</li>\n</ul>\n</li>\n<li><p><strong>direction</strong>: The direction of the trade. 1 indicates a long position (buy), and -1 indicates a short position (sell).</p>\n</li>\n<li><p><strong>marginAmount</strong>: The amount of margin used for the position.</p>\n</li>\n<li><p><strong>marginRate</strong>: The margin rate.</p>\n</li>\n<li><p><strong>positionPrice</strong>: The price at which the position was taken.</p>\n</li>\n<li><p><strong>breakEvenPrice</strong>: The price at which the position breaks even.</p>\n</li>\n<li><p><strong>positionAmount</strong>: The amount of the position.</p>\n</li>\n<li><p><strong>positionAmountFrozen</strong>: The amount of the position that is currently frozen.</p>\n</li>\n<li><p><strong>liquidationPrice</strong>: The price at which the position would be liquidated.</p>\n</li>\n<li><p><strong>positionFee</strong>: The fee associated with the position, null indicates no fee.</p>\n</li>\n<li><p><strong>resultType</strong>: The result type, which might be used to indicate the outcome of the position.</p>\n</li>\n<li><p><strong>resultBenefit</strong>: The benefit or profit from the position, null indicates no result.</p>\n</li>\n<li><p><strong>createTime</strong>: The timestamp when the position was created.</p>\n</li>\n<li><p><strong>lastModified</strong>: The timestamp when the position was last modified.</p>\n</li>\n</ul>\n</li>\n<li><p><strong>totalCount</strong>: The total number of position records.</p>\n</li>\n<li><p><strong>pageSize</strong>: The number of entries displayed per page.</p>\n</li>\n<li><p><strong>currentPage</strong>: The current page number.</p>\n</li>\n</ul>\n</li>\n</ul>\n<p>Example Response:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"code\": 0,\n    \"msg\": \"Query successful\",\n    \"data\": {\n        \"data\": [\n            {\n                \"id\": \"172403198639129730\",\n                \"accountId\": 666,\n                \"marketId\": 4,\n                \"market\": \"BTCUSDT\",\n                \"marginAsset\": \"USDT\",\n                \"priceType\": 0,\n                \"direction\": 1,\n                \"marginAmount\": \"499.75\",\n                \"marginRate\": \"20\",\n                \"positionPrice\": \"10000\",\n                \"breakEvenPrice\": \"10000\",\n                \"positionAmount\": \"0.9995\",\n                \"positionAmountFrozen\": \"0\",\n                \"liquidationPrice\": \"0\",\n                \"positionFee\": null,\n                \"resultType\": null,\n                \"resultBenefit\": null,\n                \"createTime\": 1724031986000,\n                \"lastModified\": 1724031986000\n            }\n        ],\n        \"totalCount\": 1,\n        \"pageSize\": 10,\n        \"currentPage\": 1\n    }\n}\n\n</code></pre>\n","urlObject":{"path":["api","v1","perp","getPositions"],"query":[],"variable":[]}},"response":[{"id":"956c6bb8-ae69-4076-b4f3-b5724d2c9518","name":"success","originalRequest":{"method":"POST","header":[{"key":"JAYX-ACCESS-KEY","value":"xxx","type":"text"},{"key":"JAYX-ACCESS-SIGN","value":"xxx","type":"text"},{"key":"JAYX-ACCESS-TIMESTAMP","value":"xxx","type":"text"}],"body":{"mode":"raw","raw":"{\"symbol\": \"BTCUSDT_PERP\", \"pageSize\": 200, \"pageIndex\": 1}","options":{"raw":{"language":"json"}}},"url":"/api/v1/perp/getPositions"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\r\n    \"code\": 0, // 请求的状态码，0 表示成功\r\n    \"msg\": null, // 响应的消息提示，null 表示没有错误信息\r\n    \"data\": [\r\n        {\r\n            \"id\": 172403198639129730, // 记录的唯一标识符\r\n            \"accountId\": 666, // 用户账户 ID\r\n            \"marketId\": 4, // 市场 ID，表示在哪个市场进行操作\r\n            \"marginAsset\": \"BTC\", // 保证金资产类型，例如 \"BTC\"\r\n            \"priceType\": 0, // 价格类型，0 可能表示市价，1 可能表示限价\r\n            \"direction\": 1, // 方向，1 表示买入，2 表示卖出\r\n            \"marginAmount\": \"0.049975\", // 保证金数量\r\n            \"positionPrice\": \"10000\", // 持仓价格\r\n            \"breakEvenPrice\": \"10000\", // 保本价格\r\n            \"positionAmount\": \"0.9995\", // 持仓数量\r\n            \"positionAmountFrozen\": \"0\", // 冻结的持仓数量\r\n            \"positionFee\": null, // 持仓费用，null 表示没有费用\r\n            \"resultType\": null, // 结果类型，可能用于表示平仓的结果\r\n            \"resultBenefit\": null, // 结果收益，可能表示平仓后的收益\r\n            \"liquidationPrice\": null, // 平仓价格\r\n            \"createTime\": 1724031986000, // 创建时间，时间戳格式\r\n            \"lastModified\": 1724031986000 // 最后修改时间，时间戳格式\r\n        }\r\n    ]\r\n}"}],"_postman_id":"9050eb67-c455-4df5-ab32-eae6802ad8c2"},{"name":"modify prep order","id":"d38a56d7-0d19-42c0-8be3-5b1fb7669c22","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"JAYX-ACCESS-KEY","value":"6o0i6dgxqcz5","type":"text"},{"key":"JAYX-ACCESS-SIGN","value":"46292b8f3afa0b974a888dca17c3edab3a7b513f9e8b70cc46c855ef3cef1054","type":"text"},{"key":"JAYX-ACCESS-TIMESTAMP","value":"xxx","type":"text"}],"url":"https://v3api.jayxstaging.com/api/v1/perp/order","description":"<h3 id=\"update-perpetual-order\">Update Perpetual Order</h3>\n<p>This endpoint allows the client to update a perpetual order.</p>\n<p>Now, only the marginRate (leverage ratio) is allowed to be modified.</p>\n<h4 id=\"request-body\">Request Body</h4>\n<ul>\n<li><p><code>marginRate</code> (number, required): The leverage rate with a minimum value of 1.</p>\n</li>\n<li><p><code>symbol</code> (string, required): The trading pair.</p>\n</li>\n</ul>\n<h4 id=\"response\">Response</h4>\n<p>Upon a successful update, the response will have a status code of 200 and a JSON body with the following structure:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"code\": 0,\n    \"msg\": null,\n    \"data\": null\n}\n\n</code></pre>\n<ul>\n<li><p><code>code</code> (number): Indicates the status of the operation.</p>\n</li>\n<li><p><code>msg</code> (string): Represents any additional message related to the operation.</p>\n</li>\n<li><p><code>data</code> (object): Contains the data related to the update, if applicable.</p>\n</li>\n</ul>\n","urlObject":{"path":["api","v1","perp","order"],"host":["https://v3api.jayxstaging.com"],"query":[],"variable":[]}},"response":[{"id":"05b7c71e-9318-4acb-9840-450e5b607b7f","name":"success","originalRequest":{"method":"PUT","header":[{"key":"JAYX-ACCESS-KEY","value":"6o0i6dgxqcz5","type":"text"},{"key":"JAYX-ACCESS-SIGN","value":"46292b8f3afa0b974a888dca17c3edab3a7b513f9e8b70cc46c855ef3cef1054","type":"text"},{"key":"JAYX-ACCESS-TIMESTAMP","value":"xxx","type":"text"}],"url":"https://v3api.jayxstaging.com/api/v1/perp/order"},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"d38a56d7-0d19-42c0-8be3-5b1fb7669c22"},{"name":"Close Order History","id":"50c1055c-93c2-4ace-b7aa-603b3b063505","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"JAYX-ACCESS-KEY","value":"6o0i6dgxqcz5","type":"text"},{"key":"JAYX-ACCESS-SIGN","value":"d7e377c9395daeec17afa05c2e0f45455b783b503ac5a1f1d218d09961a0c508","type":"text"},{"key":"JAYX-ACCESS-TIMESTAMP","value":"xxx","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"symbol\": \"BTCUSDT_PERP\", // Trading pair, optional\r\n    \"pageIndex\": 1, // Starting page number, optional\r\n    \"pageSize\": 20, // Number of entries per page, optional\r\n    \"startTime\": 1725414959476, // Start time, optional\r\n    \"endTime\": 1725414959476 // End time, optional\r\n}\r\n","options":{"raw":{"language":"json"}}},"url":"https://v3api.jayxstaging.com/api/v1/perp/closeOrderHistory","description":"<h3 id=\"close-order-history\">Close Order History</h3>\n<p>This endpoint allows you to retrieve the prep close order history for a specific symbol.</p>\n<h4 id=\"request-body\">Request Body</h4>\n<ul>\n<li><p><code>symbol</code> (optional): The trading pair symbol.</p>\n</li>\n<li><p><code>pageIndex</code> (optional): The starting page number.</p>\n</li>\n<li><p><code>pageSize</code> (optional): The number of records per page.</p>\n</li>\n<li><p><code>startTime</code> (optional): The start time for the order history.</p>\n</li>\n<li><p><code>endTime</code> (optional): The end time for the order history.</p>\n</li>\n</ul>\n<p>Example Request Body:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"symbol\": \"BTCUSDT_PERP\",\n  \"pageIndex\": 1,\n  \"pageSize\": 20,\n  \"startTime\": 1725414959476,\n  \"endTime\": 1725414959476\n}\n\n</code></pre>\n<h4 id=\"response\">Response</h4>\n<ul>\n<li><p><strong>code</strong>: Indicates the result of the request. A value of 0 signifies success.</p>\n</li>\n<li><p><strong>msg</strong>: Provides additional information about the result of the request. \"Query successful\" indicates a successful query.</p>\n</li>\n<li><p><strong>data</strong>: Contains the following fields:</p>\n<ul>\n<li><p><strong>data</strong>: An array of closed order objects, where each object includes:</p>\n<ul>\n<li><p><strong>id</strong>: The unique identifier for the closed order.</p>\n</li>\n<li><p><strong>market</strong>: The trading pair symbol, e.g., \"BTCUSDT_PERP\".</p>\n</li>\n<li><p><strong>marketId</strong>: The market ID indicating which market the order belongs to.</p>\n</li>\n<li><p><strong>accountId</strong>: The user account ID associated with the order.</p>\n</li>\n<li><p><strong>amount</strong>: The quantity of the closed position.</p>\n</li>\n<li><p><strong>openPrice</strong>: The opening price of the position.</p>\n</li>\n<li><p><strong>type</strong>: The type of the order:</p>\n<ul>\n<li><p>1 for limit orders.</p>\n</li>\n<li><p>2 for market orders.</p>\n</li>\n</ul>\n</li>\n<li><p><strong>breakEvenPrice</strong>: The break-even price of the position.</p>\n</li>\n<li><p><strong>closePrice</strong>: The closing price of the position.</p>\n</li>\n<li><p><strong>benefit</strong>: The profit or loss from the position.</p>\n</li>\n<li><p><strong>fee</strong>: The fee associated with the position.</p>\n</li>\n<li><p><strong>feeAsset</strong>: The asset used to pay the fee.</p>\n</li>\n<li><p><strong>orderCreateTime</strong>: The timestamp when the order was created.</p>\n</li>\n<li><p><strong>createTime</strong>: The timestamp when the record was created.</p>\n</li>\n<li><p><strong>lastModified</strong>: The timestamp when the record was last modified.</p>\n</li>\n</ul>\n</li>\n<li><p><strong>totalCount</strong>: The total number of closed orders.</p>\n</li>\n<li><p><strong>pageSize</strong>: The number of entries displayed per page.</p>\n</li>\n<li><p><strong>currentPage</strong>: The current page number.</p>\n</li>\n</ul>\n</li>\n</ul>\n<p>Example Response:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"code\": 0,  // Return status code, 0 indicates success\n    \"msg\": \"Query successful\",  // Return message, indicating query was successful\n    \"data\": {\n        \"data\": [  // List data of closed orders\n            {\n                \"id\": 172377522224020770,  // Unique identifier for the closed order\n                \"market\": \"BTCUSDT_PERP\",\n                \"marketId\": 26,  // Market ID, indicating which market the order belongs to\n                \"accountId\": 1956,  // Account ID, indicating which account the order belongs to\n                \"amount\": 1,  // Quantity of the closed position\n                \"openPrice\": 20,  // Opening price\n                \"type\": 1, // 1: limit, 2: market\n                \"breakEvenPrice\": 20,  // Break-even price\n                \"closePrice\": 20,  // Closing price\n                \"benefit\": 0,  // Profit\n                \"fee\": 0,  // Fee\n                \"feeAsset\": \"BTC\", // Fee asset\n                \"orderCreateTime\": 1723766400000,  // Order creation time (timestamp in milliseconds)\n                \"createTime\": 1723766400000,  // Record creation time (timestamp in milliseconds)\n                \"lastModified\": 1723766400000  // Record last modified time (timestamp in milliseconds)\n            }\n        ],\n        \"totalCount\": 12,  // Total record count, indicating there are 12 closed orders in total\n        \"pageSize\": 10,  // Number of entries displayed per page\n        \"currentPage\": 1  // Current page number, indicating this is page 1\n    }\n}\n\n</code></pre>\n","urlObject":{"path":["api","v1","perp","closeOrderHistory"],"host":["https://v3api.jayxstaging.com"],"query":[],"variable":[]}},"response":[{"id":"65b201dd-6b65-459c-b24e-4aac9a7e9c52","name":"success","originalRequest":{"method":"POST","header":[{"key":"JAYX-ACCESS-KEY","value":"6o0i6dgxqcz5","type":"text"},{"key":"JAYX-ACCESS-SIGN","value":"d7e377c9395daeec17afa05c2e0f45455b783b503ac5a1f1d218d09961a0c508","type":"text"},{"key":"JAYX-ACCESS-TIMESTAMP","value":"xxx","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"symbol\": \"BTCUSDT_PERP\", // Trading pair, optional\r\n    \"pageIndex\": 1, // Starting page number, optional\r\n    \"pageSize\": 20, // Number of entries per page, optional\r\n    \"startTime\": 1725414959476, // Start time, optional\r\n    \"endTime\": 1725414959476 // End time, optional\r\n}\r\n","options":{"raw":{"language":"json"}}},"url":"https://v3api.jayxstaging.com/api/v1/perp/closeOrderHistory"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Vary","value":"Origin"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-USED-REQUEST_WEIGHT-1SECOND","value":"1"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"103"},{"key":"Date","value":"Wed, 04 Sep 2024 03:30:13 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"code\": 0,  // Return status code, 0 indicates success\n    \"msg\": \"Query successful\",  // Return message, indicating query was successful\n    \"data\": {\n        \"data\": [  // List data of closed orders\n            {\n                \"id\": 172377522224020770,  // Unique identifier for the closed order\n                \"market\": \"BTCUSDT_PERP\",\n                \"marketId\": 26,  // Market ID, indicating which market the order belongs to\n                \"accountId\": 1956,  // Account ID, indicating which account the order belongs to\n                \"amount\": 1,  // Quantity of the closed position\n                \"openPrice\": 20,  // Opening price\n                \"type\": 1, // 1: limit, 2: market\n                \"breakEvenPrice\": 20,  // Break-even price\n                \"closePrice\": 20,  // Closing price\n                \"benefit\": 0,  // Profit\n                \"fee\": 0,  // Fee\n                \"feeAsset\": \"BTC\", // Fee asset\n                \"orderCreateTime\": 1723766400000,  // Order creation time (timestamp in milliseconds)\n                \"createTime\": 1723766400000,  // Record creation time (timestamp in milliseconds)\n                \"lastModified\": 1723766400000  // Record last modified time (timestamp in milliseconds)\n            }\n        ],\n        \"totalCount\": 12,  // Total record count, indicating there are 12 closed orders in total\n        \"pageSize\": 10,  // Number of entries displayed per page\n        \"currentPage\": 1  // Current page number, indicating this is page 1\n    }\n}\n"}],"_postman_id":"50c1055c-93c2-4ace-b7aa-603b3b063505"},{"name":"Perpetual Symbol Config","id":"fe965ebd-9466-4a54-90b5-c1146028d436","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"description":"<h1 id=\"account-symbol-configuration\">Account Symbol Configuration</h1>\n<p>This endpoint retrieves the account symbol configuration for a specific symbol.</p>\n<h2 id=\"request\">Request</h2>\n<h3 id=\"endpoint\">Endpoint</h3>\n<p><code>GET /api/v1/perp/accountSymbolConfig</code></p>\n<h3 id=\"query-parameters\">Query Parameters</h3>\n<ul>\n<li><code>symbol</code> (required, string): The symbol for which the account symbol configuration is to be retrieved.</li>\n</ul>\n<h3 id=\"example\">Example</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>https://v3api.jayxstaging.com/api/v1/perp/accountSymbolConfig?symbol=BTCUSDT\n\n</code></pre><h2 id=\"response\">Response</h2>\n<h3 id=\"200-ok\">200 OK</h3>\n<p>The successful response will contain the following fields:</p>\n<ul>\n<li><p><code>id</code> (number): The ID of the account symbol configuration.</p>\n</li>\n<li><p><code>marketId</code> (number): The ID of the market.</p>\n</li>\n<li><p><code>accountId</code> (number): The ID of the account.</p>\n</li>\n<li><p><code>initMarginRate</code> (string): The initial margin rate.</p>\n</li>\n<li><p><code>makerFee</code> (string): The maker fee.</p>\n</li>\n<li><p><code>takerFee</code> (string): The taker fee.</p>\n</li>\n<li><p><code>createTime</code> (string): The timestamp of creation.</p>\n</li>\n<li><p><code>lastModified</code> (string): The timestamp of the last modification.</p>\n</li>\n</ul>\n","urlObject":{"query":[],"variable":[]},"url":""},"response":[],"_postman_id":"fe965ebd-9466-4a54-90b5-c1146028d436"},{"name":"Get STOP and TAKE_PROFIT orders","id":"ec4b4ee7-5db3-4de4-b02b-0a4c3b13c319","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"JAYX-ACCESS-KEY","value":"6o0i6dgxqcz5","type":"text"},{"key":"JAYX-ACCESS-SIGN","value":"f88262a5d5acc88bd4cd5113935b97721716a3962000e9a35e502d61b7150d41","type":"text"},{"key":"JAYX-ACCESS-TIMESTAMP","value":"xxx","type":"text"}],"url":"https://v3api.jayxstaging.com/api/v1/perp/stopAndProfitOrders?symbol=BTCUSDT_PERP&direction=1","description":"<h1 id=\"get-stop-and-profit-orders\">Get Stop and Profit Orders</h1>\n<p>This endpoint retrieves stop and profit orders for a specific symbol and direction.</p>\n<h2 id=\"request\">Request</h2>\n<h3 id=\"endpoint\">Endpoint</h3>\n<p><code>GET /api/v1/perp/stopAndProfitOrders</code></p>\n<h3 id=\"query-parameters\">Query Parameters</h3>\n<ul>\n<li><p><code>symbol</code> (string, required): The symbol for which stop and profit orders are to be retrieved.</p>\n</li>\n<li><p><code>direction</code> (integer, required): value have <code>1</code> and <code>-1</code>.  The 1 is LONG, and -1 is SHORT. The direction for which stop and profit orders are to be retrieved.</p>\n</li>\n</ul>\n<h3 id=\"example\">Example</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-plaintext\">https://v3api.jayxstaging.com/api/v1/perp/stopAndProfitOrders?symbol=BTCUSDT_PERP&amp;direction=1\n\n</code></pre>\n<h2 id=\"response\">Response</h2>\n<h3 id=\"body\">Body</h3>\n<p>The response will be in JSON format and will contain the following fields:</p>\n<ul>\n<li><p><code>data</code> (array): An array of stop and profit order objects, each containing the following fields:</p>\n<ul>\n<li><p><code>id</code> (string): The ID of the order.</p>\n</li>\n<li><p><code>marketId</code> (integer): The ID of the market.</p>\n</li>\n<li><p><code>market</code> (string): The market name.</p>\n</li>\n<li><p><code>accountId</code> (integer): The ID of the account.</p>\n</li>\n<li><p><code>conditionType</code> (integer): The type of condition.</p>\n</li>\n<li><p><code>triggerPrice</code> (string): The trigger price.</p>\n</li>\n<li><p><code>triggerPriceType</code> (integer): The type of trigger price.</p>\n</li>\n<li><p><code>putOrderType</code> (integer): The type of order.</p>\n</li>\n<li><p><code>putOrderAmount</code> (string): The amount of the order.</p>\n</li>\n<li><p><code>putOrderDirection</code> (integer): The direction of the order.</p>\n</li>\n<li><p><code>putOrderPrice</code> (string): The price of the order.</p>\n</li>\n<li><p><code>relatedPositionId</code> (string): The ID of the related position.</p>\n</li>\n<li><p><code>onlyClose</code> (integer): Indicates if the order is for closing only.</p>\n</li>\n<li><p><code>createTime</code> (integer): The timestamp of the order creation.</p>\n</li>\n</ul>\n</li>\n</ul>\n<h3 id=\"example-response\">Example Response</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"code\": 0,\n  \"msg\": null,\n  \"data\": [\n    {\n      \"id\": \"\",\n      \"marketId\": 0,\n      \"market\": \"\",\n      \"accountId\": 0,\n      \"conditionType\": 0,\n      \"triggerPrice\": \"\",\n      \"triggerPriceType\": 0,\n      \"putOrderType\": 0,\n      \"putOrderAmount\": \"\",\n      \"putOrderDirection\": 0,\n      \"putOrderPrice\": \"\",\n      \"relatedPositionId\": \"\",\n      \"onlyClose\": 0,\n      \"createTime\": 0\n    }\n  ]\n}\n\n</code></pre>\n","urlObject":{"path":["api","v1","perp","stopAndProfitOrders"],"host":["https://v3api.jayxstaging.com"],"query":[{"key":"symbol","value":"BTCUSDT_PERP"},{"key":"direction","value":"1"}],"variable":[]}},"response":[],"_postman_id":"ec4b4ee7-5db3-4de4-b02b-0a4c3b13c319"},{"name":"Place STOP and TAKE_PROFIT order","id":"9e2fcf8e-8b15-4812-b3f0-b1bedc4a1ef8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"JAYX-ACCESS-KEY","value":"6o0i6dgxqcz5","type":"text"},{"key":"JAYX-ACCESS-SIGN","value":"f88262a5d5acc88bd4cd5113935b97721716a3962000e9a35e502d61b7150d41","type":"text"},{"key":"JAYX-ACCESS-TIMESTAMP","value":"xxx","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"symbol\": \"BTCUSDT_PERP\",\r\n    \"stopOrProfitType\": \"TAKE_PROFIT\",\r\n    \"price\": \"29500\",\r\n    \"priceType\": \"EXCHANGE\",\r\n    \"type\": \"LIMIT\",\r\n    \"amount\": \"0.001\",\r\n    \"direction\": \"LONG\",\r\n    \"stopOrProfit\": {\r\n        \"priceType\": \"EXCHANGE\",\r\n        \"price\": \"52000\",\r\n        \"amount\": \"1\"\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":"https://v3api.jayxstaging.com//api/v1/perp/order/stopOrProfit","description":"<p><strong>Request Body:</strong></p>\n<p>The request body should be sent in JSON format and include the following parameters:</p>\n<ul>\n<li><p><strong>symbol</strong> (<code>String</code>, required): The trading pair symbol.</p>\n<ul>\n<li><em>Example:</em> <code>\"BTCUSDT_PERP\"</code></li>\n</ul>\n</li>\n<li><p><strong>stopOrProfitType</strong> (<code>String</code>, required): Type of the order.</p>\n<ul>\n<li><em>Enum Values:</em> <code>\"STOP\"</code>, <code>\"TAKE_PROFIT\"</code></li>\n</ul>\n</li>\n<li><p><strong>price</strong> (<code>String</code>, required): Trigger price for the STOP or TAKE_PROFIT order.</p>\n<ul>\n<li><em>Example:</em> <code>\"29500\"</code></li>\n</ul>\n</li>\n<li><p><strong>priceType</strong> (<code>String</code>, required): Type of price.</p>\n<ul>\n<li><em>Enum Values:</em> <code>\"EXCHANGE\"</code>, other supported types.</li>\n</ul>\n</li>\n<li><p><strong>type</strong> (<code>String</code>, required): Order type.</p>\n<ul>\n<li><em>Enum Values:</em> <code>\"LIMIT\"</code>, <code>\"MARKET\"</code></li>\n</ul>\n</li>\n<li><p><strong>amount</strong> (<code>String</code>, required): Quantity of the asset to be bought or sold.</p>\n<ul>\n<li><em>Example:</em> <code>\"0.001\"</code> BTC</li>\n</ul>\n</li>\n<li><p><strong>direction</strong> (<code>String</code>, required): Direction of the order.</p>\n<ul>\n<li><em>Enum Values:</em> <code>\"LONG\"</code>, <code>\"SHORT\"</code></li>\n</ul>\n</li>\n<li><p><strong>stopOrProfit</strong> (<code>Object</code>, required): Object containing stop or profit details.</p>\n<ul>\n<li><p><strong>priceType</strong> (<code>String</code>, required): Type of stop or profit price.</p>\n<ul>\n<li><em>Example:</em> <code>\"EXCHANGE\"</code></li>\n</ul>\n</li>\n<li><p><strong>price</strong> (<code>String</code>, required): Stop or profit target price.</p>\n<ul>\n<li><em>Example:</em> <code>\"52000\"</code></li>\n</ul>\n</li>\n<li><p><strong>amount</strong> (<code>String</code>, required): Amount to be executed when the condition is met.</p>\n<ul>\n<li><em>Example:</em> <code>\"1\"</code> BTC</li>\n</ul>\n</li>\n</ul>\n</li>\n</ul>\n","urlObject":{"path":["","api","v1","perp","order","stopOrProfit"],"host":["https://v3api.jayxstaging.com"],"query":[],"variable":[]}},"response":[],"_postman_id":"9e2fcf8e-8b15-4812-b3f0-b1bedc4a1ef8"}],"id":"0e65ff58-03f5-4418-9f4e-727de3f2548f","_postman_id":"0e65ff58-03f5-4418-9f4e-727de3f2548f","description":""}],"event":[{"listen":"prerequest","script":{"id":"f6baefe8-68e6-44f8-a61d-9b1f2c6c1797","type":"text/javascript","packages":{},"exec":[""]}},{"listen":"test","script":{"id":"986c960a-44e7-4fec-8d42-4e9759597dd6","type":"text/javascript","packages":{},"exec":[""]}}],"variable":[{"key":"jayx-web-api","value":"https://v3api.jayxstaging.com","type":"string"}]}