A. Spot Exchanges
The /tickers endpoint provides 24-hour pricing and volume information on each market pair available on an exchange.
Sample request URL-
Response-
[]
The /historical_trades/ticker_id is used to return data on historical completed trades for a given market pair.
Sample request URL-
Response-
{
"buy": [],
"sell": []
}
The /orderbook/ticker_id endpoint is to provide order book information with at least depth = 100 (50 each side) returned for a given market pair/ticker.
Sample request URL-
Response-
{
"ticker_id": "BTC_USD",
"timestamp": "1764296372835",
"bids": [
[
"90906.798307",
"0.2"
],
[
"90906.405727",
"0.1848"
],
[
"90906.286793",
"0.21"
],
[
"90902.55765",
"0.2123"
],
[
"90864.068962",
"0.2"
],
[
"90861.023056",
"0.164"
],
[
"90860.937436",
"0.23064"
],
[
"90860.261292",
"0.1906"
],
[
"90848.890552",
"0.186"
],
[
"90848.85432",
"0.2507"
]
],
"asks": [
[
"90910.291272",
"0.197"
],
[
"90910.360127",
"0.2506"
],
[
"90910.562142",
"0.2716"
],
[
"90912.768062",
"0.2"
],
[
"90920.913039",
"0.1608"
],
[
"90932.086386",
"0.2"
],
[
"90932.357126",
"0.265"
],
[
"90951.920883",
"0.19477"
],
[
"90951.943283",
"0.2"
],
[
"90951.956208",
"0.23"
]
]
}
B. Derivative Exchanges
The /contracts endpoint provides a summary of all contracts traded on the exchange. There should be a clear distinction between the type of contracts such as perpetual, futures, options, etc. See below for specifications of data required for the /contracts endpoint:
Sample request URL-
Response-
[
{
"ticker_id": "ADAUSDT_PERP",
"base_currency": "USDT",
"quote_currency": "ADA",
"last_price": 0.42929464,
"base_volume": 1061882.49,
"usd_volume": 1061882.49,
"quote_volume": 1061882.49,
"bid": 0.42229558,
"ask": 0.43300671,
"high": 0.43129376,
"low": 0.42929182,
"product_type": "Perpetual",
"open_interest": 1061882.49,
"open_interest_usd": 1061882.49,
"index_price": 0.42274193,
"creation_timestamp": 0,
"expiry_timestamp": 0,
"funding_rate": 0.42929464,
"next_funding_rate": 0.42929464,
"next_funding_rate_timestamp": 1764296374320,
"maker_fee": 0.2,
"taker_fee": 0.2,
"contract_type": "Vanilla",
"contract_price": 0.42929464,
"contract_price_currency": "USDT"
},
{
"ticker_id": "BCHUSDT_PERP",
"base_currency": "USDT",
"quote_currency": "BCH",
"last_price": 535.98220046,
"base_volume": 2156256.08,
"usd_volume": 2156256.08,
"quote_volume": 2156256.08,
"bid": 534.24260807,
"ask": 536.00766375,
"high": 536.15633916,
"low": 535.07789536,
"product_type": "Perpetual",
"open_interest": 2156256.08,
"open_interest_usd": 2156256.08,
"index_price": 534.5720929,
"creation_timestamp": 0,
"expiry_timestamp": 0,
"funding_rate": 535.98220046,
"next_funding_rate": 535.98220046,
"next_funding_rate_timestamp": 1764296374320,
"maker_fee": 0.2,
"taker_fee": 0.2,
"contract_type": "Vanilla",
"contract_price": 535.98220046,
"contract_price_currency": "USDT"
},
{
"ticker_id": "LTCUSD_PERP",
"base_currency": "USD",
"quote_currency": "LTC",
"last_price": 86.2383642,
"base_volume": 1660637.29,
"usd_volume": 1660637.29,
"quote_volume": 1660637.29,
"bid": 85.1684457,
"ask": 86.46120145,
"high": 86.31905247,
"low": 86.23829578,
"product_type": "Perpetual",
"open_interest": 1660637.29,
"open_interest_usd": 1660637.29,
"index_price": 85.11927111,
"creation_timestamp": 0,
"expiry_timestamp": 0,
"funding_rate": 86.2383642,
"next_funding_rate": 86.2383642,
"next_funding_rate_timestamp": 1764296374320,
"maker_fee": 0.2,
"taker_fee": 0.2,
"contract_type": "Vanilla",
"contract_price": 86.2383642,
"contract_price_currency": "USD"
},
{
"ticker_id": "XRPUSD_251226",
"base_currency": "USD",
"quote_currency": "XRP",
"last_price": 2.19167449,
"base_volume": 3902695.87,
"usd_volume": 3902695.87,
"quote_volume": 3902695.87,
"bid": 2.17825895,
"ask": 2.20922693,
"high": 2.20356475,
"low": 2.19167107,
"product_type": "Futures",
"open_interest": 3902695.87,
"open_interest_usd": 3902695.87,
"index_price": 2.1734971,
"creation_timestamp": 1751070232,
"expiry_timestamp": 1766793600,
"funding_rate": 2.19167449,
"next_funding_rate": 2.19167449,
"next_funding_rate_timestamp": 1764296374320,
"maker_fee": 0.2,
"taker_fee": 0.2,
"contract_type": "Vanilla",
"contract_price": 2.19167449,
"contract_price_currency": "USD"
},
{
"ticker_id": "LTCUSDT_PERP",
"base_currency": "USDT",
"quote_currency": "LTC",
"last_price": 86.18834552,
"base_volume": 1663175.28,
"usd_volume": 1663175.28,
"quote_volume": 1663175.28,
"bid": 84.8683382,
"ask": 86.5108831,
"high": 86.30885927,
"low": 86.15876906,
"product_type": "Perpetual",
"open_interest": 1663175.28,
"open_interest_usd": 1663175.28,
"index_price": 84.94470588,
"creation_timestamp": 0,
"expiry_timestamp": 0,
"funding_rate": 86.18834552,
"next_funding_rate": 86.18834552,
"next_funding_rate_timestamp": 1764296374320,
"maker_fee": 0.2,
"taker_fee": 0.2,
"contract_type": "Vanilla",
"contract_price": 86.18834552,
"contract_price_currency": "USDT"
},
{
"ticker_id": "BTCUSDT_PERP",
"base_currency": "USDT",
"quote_currency": "BTC",
"last_price": 90921.43894291,
"base_volume": 5924572.28,
"usd_volume": 5924572.28,
"quote_volume": 5924572.28,
"bid": 90759.76895406,
"ask": 91201.1582729,
"high": 91155.21094704,
"low": 90921.25821526,
"product_type": "Perpetual",
"open_interest": 5924572.28,
"open_interest_usd": 5924572.28,
"index_price": 90813.77717391,
"creation_timestamp": 0,
"expiry_timestamp": 0,
"funding_rate": 90921.43894291,
"next_funding_rate": 90921.43894291,
"next_funding_rate_timestamp": 1764296374320,
"maker_fee": 0.2,
"taker_fee": 0.2,
"contract_type": "Vanilla",
"contract_price": 90921.43894291,
"contract_price_currency": "USDT"
},
{
"ticker_id": "XRPUSD_260327",
"base_currency": "USD",
"quote_currency": "XRP",
"last_price": 2.21067699,
"base_volume": 6308994.71,
"usd_volume": 6308994.71,
"quote_volume": 6308994.71,
"bid": 2.19705994,
"ask": 2.22803725,
"high": 2.2239642,
"low": 2.21067116,
"product_type": "Futures",
"open_interest": 6308994.71,
"open_interest_usd": 6308994.71,
"index_price": 2.17190306,
"creation_timestamp": 1758931461,
"expiry_timestamp": 1774658416,
"funding_rate": 2.21067699,
"next_funding_rate": 2.21067699,
"next_funding_rate_timestamp": 1764296374320,
"maker_fee": 0.2,
"taker_fee": 0.2,
"contract_type": "Vanilla",
"contract_price": 2.21067699,
"contract_price_currency": "USD"
},
{
"ticker_id": "LINKUSDT_PERP",
"base_currency": "USDT",
"quote_currency": "LINK",
"last_price": 13.29879279,
"base_volume": 273426.53,
"usd_volume": 273426.53,
"quote_volume": 273426.53,
"bid": 13.15686331,
"ask": 13.34020143,
"high": 13.3307912,
"low": 13.29877706,
"product_type": "Perpetual",
"open_interest": 273426.53,
"open_interest_usd": 273426.53,
"index_price": 13.17430699,
"creation_timestamp": 0,
"expiry_timestamp": 0,
"funding_rate": 13.29879279,
"next_funding_rate": 13.29879279,
"next_funding_rate_timestamp": 1764296374320,
"maker_fee": 0.2,
"taker_fee": 0.2,
"contract_type": "Vanilla",
"contract_price": 13.29879279,
"contract_price_currency": "USDT"
},
{
"ticker_id": "ETHUSD_260327",
"base_currency": "USD",
"quote_currency": "ETH",
"last_price": 3052.18450974,
"base_volume": 2305054.26,
"usd_volume": 2305054.26,
"quote_volume": 2305054.26,
"bid": 3046.86633966,
"ask": 3060.33313253,
"high": 3058.54849817,
"low": 3052.18335772,
"product_type": "Futures",
"open_interest": 2305054.26,
"open_interest_usd": 2305054.26,
"index_price": 3001.92298648,
"creation_timestamp": 1758931461,
"expiry_timestamp": 1774658416,
"funding_rate": 3052.18450974,
"next_funding_rate": 3052.18450974,
"next_funding_rate_timestamp": 1764296374320,
"maker_fee": 0.2,
"taker_fee": 0.2,
"contract_type": "Vanilla",
"contract_price": 3052.18450974,
"contract_price_currency": "USD"
},
{
"ticker_id": "XRPUSDT_PERP",
"base_currency": "USDT",
"quote_currency": "XRP",
"last_price": 2.18326002,
"base_volume": 1835893.71,
"usd_volume": 1835893.71,
"quote_volume": 1835893.71,
"bid": 2.1699709,
"ask": 2.20352798,
"high": 2.19777081,
"low": 2.18286035,
"product_type": "Perpetual",
"open_interest": 1835893.71,
"open_interest_usd": 1835893.71,
"index_price": 2.17088769,
"creation_timestamp": 0,
"expiry_timestamp": 0,
"funding_rate": 2.18326002,
"next_funding_rate": 2.18326002,
"next_funding_rate_timestamp": 1764296374320,
"maker_fee": 0.2,
"taker_fee": 0.2,
"contract_type": "Vanilla",
"contract_price": 2.18326002,
"contract_price_currency": "USDT"
},
{
"ticker_id": "ETHUSDT_PERP",
"base_currency": "USDT",
"quote_currency": "ETH",
"last_price": 3007.81626513,
"base_volume": 1568949.73,
"usd_volume": 1568949.73,
"quote_volume": 1568949.73,
"bid": 2999.25682121,
"ask": 3014.03604049,
"high": 3012.13308999,
"low": 3007.81330868,
"product_type": "Perpetual",
"open_interest": 1568949.73,
"open_interest_usd": 1568949.73,
"index_price": 3002.34209302,
"creation_timestamp": 0,
"expiry_timestamp": 0,
"funding_rate": 3007.81626513,
"next_funding_rate": 3007.81626513,
"next_funding_rate_timestamp": 1764296374321,
"maker_fee": 0.2,
"taker_fee": 0.2,
"contract_type": "Vanilla",
"contract_price": 3007.81626513,
"contract_price_currency": "USDT"
},
{
"ticker_id": "BCHUSD_PERP",
"base_currency": "USD",
"quote_currency": "BCH",
"last_price": 535.5107673,
"base_volume": 2125117.28,
"usd_volume": 2125117.28,
"quote_volume": 2125117.28,
"bid": 534.30371911,
"ask": 536.08583767,
"high": 535.99650369,
"low": 534.58750053,
"product_type": "Perpetual",
"open_interest": 2125117.28,
"open_interest_usd": 2125117.28,
"index_price": 534.85838441,
"creation_timestamp": 0,
"expiry_timestamp": 0,
"funding_rate": 535.5107673,
"next_funding_rate": 535.5107673,
"next_funding_rate_timestamp": 1764296374321,
"maker_fee": 0.2,
"taker_fee": 0.2,
"contract_type": "Vanilla",
"contract_price": 535.5107673,
"contract_price_currency": "USD"
},
{
"ticker_id": "ADAUSD_PERP",
"base_currency": "USD",
"quote_currency": "ADA",
"last_price": 0.42829469,
"base_volume": 979265.19,
"usd_volume": 979265.19,
"quote_volume": 979265.19,
"bid": 0.42259445,
"ask": 0.4327062,
"high": 0.43099354,
"low": 0.42829464,
"product_type": "Perpetual",
"open_interest": 979265.19,
"open_interest_usd": 979265.19,
"index_price": 0.42307626,
"creation_timestamp": 0,
"expiry_timestamp": 0,
"funding_rate": 0.42829469,
"next_funding_rate": 0.42829469,
"next_funding_rate_timestamp": 1764296374321,
"maker_fee": 0.2,
"taker_fee": 0.2,
"contract_type": "Vanilla",
"contract_price": 0.42829469,
"contract_price_currency": "USD"
},
{
"ticker_id": "LINKUSD_PERP",
"base_currency": "USD",
"quote_currency": "LINK",
"last_price": 13.30078017,
"base_volume": 236798.54,
"usd_volume": 236798.54,
"quote_volume": 236798.54,
"bid": 13.19385335,
"ask": 13.33819763,
"high": 13.32577956,
"low": 13.29679769,
"product_type": "Perpetual",
"open_interest": 236798.54,
"open_interest_usd": 236798.54,
"index_price": 13.17993718,
"creation_timestamp": 0,
"expiry_timestamp": 0,
"funding_rate": 13.30078017,
"next_funding_rate": 13.30078017,
"next_funding_rate_timestamp": 1764296374321,
"maker_fee": 0.2,
"taker_fee": 0.2,
"contract_type": "Vanilla",
"contract_price": 13.30078017,
"contract_price_currency": "USD"
},
{
"ticker_id": "BTCUSD_260327",
"base_currency": "USD",
"quote_currency": "BTC",
"last_price": 92477.20637514,
"base_volume": 4617832.17,
"usd_volume": 4617832.17,
"quote_volume": 4617832.17,
"bid": 92345.18223748,
"ask": 92480.71199445,
"high": 92730.5028801,
"low": 92467.90805615,
"product_type": "Futures",
"open_interest": 4617832.17,
"open_interest_usd": 4617832.17,
"index_price": 90810.74778821,
"creation_timestamp": 1758931461,
"expiry_timestamp": 1774658416,
"funding_rate": 92477.20637514,
"next_funding_rate": 92477.20637514,
"next_funding_rate_timestamp": 1764296374321,
"maker_fee": 0.2,
"taker_fee": 0.2,
"contract_type": "Vanilla",
"contract_price": 92477.20637514,
"contract_price_currency": "USD"
},
{
"ticker_id": "BTCUSD_251226",
"base_currency": "USD",
"quote_currency": "BTC",
"last_price": 91257.41433818,
"base_volume": 4945933.41,
"usd_volume": 4945933.41,
"quote_volume": 4945933.41,
"bid": 91102.27752428,
"ask": 91259.93297006,
"high": 91496.75254036,
"low": 91207.37065745,
"product_type": "Futures",
"open_interest": 4945933.41,
"open_interest_usd": 4945933.41,
"index_price": 90809.50657559,
"creation_timestamp": 1751070232,
"expiry_timestamp": 1766793600,
"funding_rate": 91257.41433818,
"next_funding_rate": 91257.41433818,
"next_funding_rate_timestamp": 1764296374321,
"maker_fee": 0.2,
"taker_fee": 0.2,
"contract_type": "Vanilla",
"contract_price": 91257.41433818,
"contract_price_currency": "USD"
},
{
"ticker_id": "XRPUSD_PERP",
"base_currency": "USD",
"quote_currency": "XRP",
"last_price": 2.1858675,
"base_volume": 1543925.03,
"usd_volume": 1543925.03,
"quote_volume": 1543925.03,
"bid": 2.17046778,
"ask": 2.20302205,
"high": 2.1968682,
"low": 2.18586736,
"product_type": "Perpetual",
"open_interest": 1543925.03,
"open_interest_usd": 1543925.03,
"index_price": 2.1717709,
"creation_timestamp": 0,
"expiry_timestamp": 0,
"funding_rate": 2.1858675,
"next_funding_rate": 2.1858675,
"next_funding_rate_timestamp": 1764296374321,
"maker_fee": 0.2,
"taker_fee": 0.2,
"contract_type": "Vanilla",
"contract_price": 2.1858675,
"contract_price_currency": "USD"
},
{
"ticker_id": "ETHUSD_251226",
"base_currency": "USD",
"quote_currency": "ETH",
"last_price": 3017.29757996,
"base_volume": 1849968.34,
"usd_volume": 1849968.34,
"quote_volume": 1849968.34,
"bid": 3012.3869157,
"ask": 3024.1309335,
"high": 3022.51867609,
"low": 3017.29738696,
"product_type": "Futures",
"open_interest": 1849968.34,
"open_interest_usd": 1849968.34,
"index_price": 3003.20241744,
"creation_timestamp": 1751070232,
"expiry_timestamp": 1766793600,
"funding_rate": 3017.29757996,
"next_funding_rate": 3017.29757996,
"next_funding_rate_timestamp": 1764296374321,
"maker_fee": 0.2,
"taker_fee": 0.2,
"contract_type": "Vanilla",
"contract_price": 3017.29757996,
"contract_price_currency": "USD"
},
{
"ticker_id": "BTCUSD_PERP",
"base_currency": "USD",
"quote_currency": "BTC",
"last_price": 90884.1816762,
"base_volume": 1595879.4,
"usd_volume": 1595879.4,
"quote_volume": 1595879.4,
"bid": 90767.68419966,
"ask": 90983.69473842,
"high": 91124.33503211,
"low": 90880.8987012,
"product_type": "Perpetual",
"open_interest": 1595879.4,
"open_interest_usd": 1595879.4,
"index_price": 90809.31071441,
"creation_timestamp": 0,
"expiry_timestamp": 0,
"funding_rate": 90884.1816762,
"next_funding_rate": 90884.1816762,
"next_funding_rate_timestamp": 1764296374321,
"maker_fee": 0.2,
"taker_fee": 0.2,
"contract_type": "Vanilla",
"contract_price": 90884.1816762,
"contract_price_currency": "USD"
},
{
"ticker_id": "ETHUSD_PERP",
"base_currency": "USD",
"quote_currency": "ETH",
"last_price": 3005.96826356,
"base_volume": 830773.21,
"usd_volume": 830773.21,
"quote_volume": 830773.21,
"bid": 2999.83049313,
"ask": 3012.28190203,
"high": 3011.24442693,
"low": 3005.96536362,
"product_type": "Perpetual",
"open_interest": 830773.21,
"open_interest_usd": 830773.21,
"index_price": 3001.99125899,
"creation_timestamp": 0,
"expiry_timestamp": 0,
"funding_rate": 3005.96826356,
"next_funding_rate": 3005.96826356,
"next_funding_rate_timestamp": 1764296374321,
"maker_fee": 0.2,
"taker_fee": 0.2,
"contract_type": "Vanilla",
"contract_price": 3005.96826356,
"contract_price_currency": "USD"
}
]
The /orderbook/ticker_id endpoint is to provide order book information with at least depth = 100 (50 each side) returned for a given market pair/ticker. See below for specifications of data required for the /orderbook endpoint:
Sample request URL-
Response-
{
"bids": [
[
"13.29877706",
"27.3"
],
[
"13.29877384",
"144.1"
],
[
"13.29874779",
"91.4"
],
[
"13.29779618",
"300.5"
],
[
"13.29779066",
"127.7"
],
[
"13.2977783",
"149.4"
],
[
"13.29777184",
"97.7"
],
[
"13.29776459",
"181.7"
],
[
"13.29774791",
"252.7"
],
[
"13.2977417",
"301.9"
],
[
"13.29683652",
"231.8"
],
[
"13.29683615",
"184.5"
],
[
"13.29675887",
"176.8"
],
[
"13.29675557",
"279.5"
],
[
"13.29586228",
"295.6"
],
[
"13.29582092",
"17.2"
],
[
"13.29581257",
"240.2"
],
[
"13.29580613",
"185.9"
],
[
"13.29580479",
"233"
],
[
"13.29579359",
"99.9"
],
[
"13.29577672",
"269.9"
],
[
"13.29486199",
"166"
],
[
"13.29478415",
"109"
],
[
"13.29085881",
"160.4"
],
[
"13.29084533",
"256.3"
],
[
"13.29083603",
"39.5"
],
[
"13.29082594",
"68.1"
],
[
"13.28778902",
"131.1"
],
[
"13.28775844",
"140.3"
],
[
"13.28775779",
"230.3"
],
[
"13.2858356",
"188.3"
],
[
"13.28578564",
"128.3"
],
[
"13.28574572",
"137.2"
],
[
"13.28475533",
"120"
],
[
"13.28474627",
"278.9"
],
[
"13.28382646",
"294.1"
],
[
"13.28382585",
"7.5"
],
[
"13.28382276",
"88"
],
[
"13.28378421",
"149.7"
],
[
"13.28373575",
"9.4"
],
[
"13.28286571",
"186.8"
],
[
"13.28285775",
"130.2"
],
[
"13.28285191",
"43.2"
],
[
"13.28284802",
"261.7"
],
[
"13.28280438",
"32.5"
],
[
"13.28279277",
"225.5"
],
[
"13.2827826",
"132.5"
],
[
"13.2818407",
"154.5"
],
[
"13.2818396",
"203.4"
],
[
"13.28181296",
"127.3"
],
[
"13.2817947",
"221.5"
],
[
"13.28175225",
"175.5"
],
[
"13.28174239",
"176.4"
],
[
"13.27979953",
"60.4"
],
[
"13.27977453",
"285.3"
],
[
"13.27977122",
"7.1"
],
[
"13.27584823",
"247.6"
],
[
"13.27582262",
"12.8"
],
[
"13.27578143",
"26.9"
],
[
"13.27379358",
"304.8"
],
[
"13.27376823",
"209.1"
],
[
"13.27376011",
"74.2"
],
[
"13.26982817",
"268"
],
[
"13.26979583",
"92.5"
],
[
"13.26685186",
"91.9"
],
[
"13.26682579",
"30"
],
[
"13.26680705",
"5.3"
],
[
"13.26585912",
"215.7"
],
[
"13.26474939",
"261.9"
],
[
"13.25586659",
"184.7"
],
[
"13.25583048",
"278.4"
],
[
"13.25582675",
"56.7"
],
[
"13.25580959",
"234.7"
],
[
"13.25576811",
"124.9"
],
[
"13.25573797",
"120.9"
],
[
"13.24886035",
"215.1"
],
[
"13.24885268",
"276"
],
[
"13.24878074",
"199.9"
],
[
"13.24876958",
"57.4"
],
[
"13.24785134",
"4.9"
],
[
"13.2478029",
"94"
],
[
"13.24586138",
"206.4"
],
[
"13.24582632",
"203.2"
],
[
"13.24575518",
"90.1"
],
[
"13.24178457",
"136.2"
],
[
"13.24175541",
"68.9"
],
[
"13.2417551",
"97.1"
],
[
"13.23985865",
"200.8"
],
[
"13.23984031",
"278.8"
],
[
"13.23978321",
"153.5"
],
[
"13.23975845",
"122.8"
],
[
"13.23973659",
"52.3"
],
[
"13.2388603",
"240.7"
],
[
"13.23881505",
"62.7"
],
[
"13.23876906",
"156.8"
],
[
"13.2348438",
"278.7"
],
[
"13.2348307",
"205.5"
],
[
"13.23481872",
"175.2"
],
[
"13.23481493",
"20.4"
],
[
"13.23283612",
"134.5"
],
[
"13.23278984",
"232.2"
],
[
"13.23278833",
"299.1"
],
[
"13.23276191",
"23.1"
],
[
"13.22976442",
"90.4"
],
[
"13.22584225",
"1.8"
],
[
"13.22584213",
"288.5"
],
[
"13.22580988",
"250.3"
],
[
"13.21874238",
"92.3"
],
[
"13.21873921",
"254"
],
[
"13.21786433",
"217.2"
],
[
"13.20686686",
"164.9"
],
[
"13.20686565",
"102.2"
],
[
"13.20683916",
"243.5"
],
[
"13.20386346",
"51.5"
],
[
"13.20377732",
"32.4"
],
[
"13.20284359",
"258.1"
],
[
"13.20283459",
"228.5"
],
[
"13.20280226",
"176.4"
],
[
"13.20279155",
"237.7"
],
[
"13.20274768",
"199"
],
[
"13.195847",
"140.7"
],
[
"13.19579236",
"245.1"
],
[
"13.19577599",
"207.8"
],
[
"13.19574849",
"298.7"
],
[
"13.17677669",
"220.3"
],
[
"13.17674133",
"259.7"
],
[
"13.16580066",
"287.8"
],
[
"13.16576722",
"238.3"
],
[
"13.16574714",
"270.9"
],
[
"13.16482462",
"107.6"
],
[
"13.1647771",
"263.6"
],
[
"13.16382285",
"20.3"
],
[
"13.16381312",
"86.8"
],
[
"13.1637922",
"141.4"
],
[
"13.16377491",
"210.4"
],
[
"13.16184955",
"108.5"
],
[
"13.16183791",
"16.9"
],
[
"13.16179228",
"217.7"
],
[
"13.16082753",
"22.5"
],
[
"13.16081495",
"163.2"
],
[
"13.16074447",
"191.2"
],
[
"13.15686331",
"16.5"
],
[
"13.15684605",
"77"
],
[
"13.15678952",
"44"
],
[
"13.00879515",
"39.4"
],
[
"13.00685421",
"140.7"
],
[
"13.0068267",
"130.3"
],
[
"13.00681421",
"172.7"
],
[
"12.99784347",
"85.7"
],
[
"12.99775066",
"41"
],
[
"12.99774919",
"254.3"
],
[
"12.99585935",
"58.9"
],
[
"12.99584931",
"65.7"
],
[
"12.9958058",
"56.6"
],
[
"12.99578307",
"188.3"
],
[
"12.99575902",
"31"
],
[
"12.99482641",
"187.2"
],
[
"12.99475137",
"265.4"
],
[
"12.97385423",
"290.8"
],
[
"12.97377601",
"87.9"
],
[
"12.97377407",
"151.5"
],
[
"12.9737653",
"85"
],
[
"12.90185911",
"88.3"
],
[
"12.90180653",
"58.7"
],
[
"12.90180228",
"227.3"
],
[
"12.90176325",
"169.8"
],
[
"12.89083262",
"12.6"
],
[
"12.87286747",
"196.1"
],
[
"12.87285558",
"150.8"
],
[
"12.87279546",
"153.8"
],
[
"12.85686564",
"185"
],
[
"12.8568535",
"85.1"
],
[
"12.85682509",
"91.7"
],
[
"12.85676263",
"219.9"
],
[
"12.84785181",
"188.8"
],
[
"12.8477433",
"127.3"
],
[
"12.83986966",
"199"
],
[
"12.83984437",
"141.7"
],
[
"12.83784884",
"6.3"
],
[
"12.83774947",
"147.9"
],
[
"12.83084394",
"211.8"
],
[
"12.83082737",
"282.3"
],
[
"12.8308233",
"192"
],
[
"12.8308133",
"32.3"
],
[
"12.83076292",
"46"
],
[
"12.83074927",
"188.1"
],
[
"12.82182253",
"108.1"
],
[
"12.82175823",
"58.2"
],
[
"12.8217531",
"247.6"
],
[
"12.82078981",
"262.7"
],
[
"12.82078435",
"174.7"
],
[
"12.820747",
"147.4"
],
[
"12.81779493",
"264"
],
[
"12.81774454",
"278.3"
],
[
"12.81683045",
"61.8"
],
[
"12.81680771",
"87.8"
],
[
"12.81679414",
"74.1"
],
[
"12.81677999",
"1"
],
[
"12.81586665",
"256.7"
],
[
"12.81578434",
"164.2"
],
[
"12.81575295",
"213.6"
],
[
"12.81282111",
"91.9"
],
[
"12.81275472",
"107.9"
],
[
"12.81186845",
"167.3"
],
[
"12.81183555",
"213"
],
[
"12.81086434",
"224.4"
],
[
"12.81079088",
"247.7"
],
[
"12.80977487",
"283"
],
[
"12.80584471",
"239.1"
],
[
"12.80583027",
"106.2"
],
[
"12.80580906",
"59.9"
],
[
"12.80579973",
"231"
],
[
"12.80480093",
"144"
],
[
"12.80479848",
"32.4"
],
[
"12.8047642",
"212.7"
],
[
"12.80278144",
"63.4"
],
[
"12.80277967",
"87.3"
],
[
"12.80179763",
"200.6"
],
[
"12.8017649",
"145.3"
],
[
"12.79786937",
"136.9"
],
[
"12.79784951",
"146.7"
],
[
"12.79784271",
"82.6"
],
[
"12.79684317",
"176.5"
],
[
"12.79682877",
"233"
],
[
"12.79677313",
"147.8"
],
[
"12.79479941",
"181"
],
[
"12.79474502",
"82.8"
],
[
"12.79386588",
"107.9"
],
[
"12.79383328",
"79.2"
],
[
"12.79381074",
"187.7"
],
[
"12.79379469",
"244"
],
[
"12.79378892",
"300.9"
],
[
"12.79378826",
"288.1"
],
[
"12.79377566",
"94.9"
],
[
"12.79375946",
"238.1"
],
[
"12.79375109",
"303.4"
],
[
"12.7908272",
"178"
],
[
"12.79082165",
"31.5"
],
[
"12.79081777",
"252.3"
],
[
"12.78985121",
"8"
],
[
"12.78983262",
"195.5"
],
[
"12.78982757",
"124.3"
],
[
"12.78979772",
"125.7"
],
[
"12.78978473",
"104.2"
],
[
"12.78882788",
"56.1"
],
[
"12.78875818",
"22.6"
],
[
"12.7878385",
"253.7"
],
[
"12.78776863",
"157.2"
],
[
"12.78574936",
"261.5"
],
[
"12.78484018",
"99.2"
],
[
"12.78482881",
"55"
],
[
"12.78482549",
"253.1"
],
[
"12.78478391",
"261.3"
],
[
"12.78476794",
"270.5"
],
[
"12.78184432",
"186.6"
],
[
"12.78180108",
"144.9"
],
[
"12.78179953",
"147"
],
[
"12.78179892",
"124.1"
],
[
"12.772852",
"162.1"
],
[
"12.77284096",
"81"
],
[
"12.76984204",
"47"
],
[
"12.76981552",
"82.9"
],
[
"12.76981493",
"43.1"
],
[
"12.76978528",
"243.6"
],
[
"12.76978302",
"110.1"
],
[
"12.76976318",
"86.3"
],
[
"12.76975799",
"131.3"
],
[
"12.76974497",
"19.5"
],
[
"12.76381709",
"182.9"
],
[
"12.76379899",
"167"
],
[
"12.7637963",
"69.9"
],
[
"12.746869",
"251.6"
],
[
"12.7468439",
"130.1"
],
[
"12.74678975",
"223.1"
],
[
"12.74676145",
"129.1"
]
],
"asks": [
[
"13.34014078",
"132.3"
],
[
"13.34018963",
"133.1"
],
[
"13.34020143",
"199.4"
],
[
"13.34122176",
"175.2"
],
[
"13.3412342",
"46"
],
[
"13.34616477",
"99.4"
],
[
"13.34618469",
"295.4"
],
[
"13.34623612",
"204"
],
[
"13.34624753",
"252.2"
],
[
"13.34626254",
"144.8"
],
[
"13.34813962",
"65"
],
[
"13.3481456",
"173.5"
],
[
"13.34824565",
"112.5"
],
[
"13.35313599",
"138.1"
],
[
"13.35318826",
"123.6"
],
[
"13.35320574",
"88.7"
],
[
"13.35618413",
"6"
],
[
"13.35620446",
"66.1"
],
[
"13.37022056",
"305.6"
],
[
"13.37023985",
"196.5"
],
[
"13.37026331",
"169.6"
],
[
"13.37121335",
"43.8"
],
[
"13.38118386",
"276.6"
],
[
"13.38120483",
"103.4"
],
[
"13.381213",
"49.2"
],
[
"13.38414534",
"53.6"
],
[
"13.38424067",
"23.6"
],
[
"13.38425468",
"294.8"
],
[
"13.43618562",
"6"
],
[
"13.43618626",
"61.8"
],
[
"13.43618867",
"120.6"
],
[
"13.43622448",
"12.6"
],
[
"13.43623438",
"145.7"
],
[
"13.43822777",
"45"
],
[
"13.43822869",
"106.8"
],
[
"13.438236",
"305.3"
],
[
"13.43824675",
"21.6"
],
[
"13.43825202",
"7.1"
],
[
"13.43825765",
"80.6"
],
[
"13.43826207",
"178.2"
],
[
"13.43826591",
"182.9"
],
[
"13.43826855",
"127.7"
],
[
"13.43913866",
"12.4"
],
[
"13.43914165",
"221.7"
],
[
"13.4391429",
"45.2"
],
[
"13.43915132",
"116.9"
],
[
"13.4391604",
"260.7"
],
[
"13.43916057",
"36.2"
],
[
"13.4391734",
"121.5"
],
[
"13.4391778",
"202.2"
],
[
"13.43918753",
"63"
],
[
"13.43919133",
"239"
],
[
"13.43919497",
"223.4"
],
[
"13.43920673",
"238"
],
[
"13.43921614",
"193"
],
[
"13.43923173",
"122.7"
],
[
"13.4392343",
"67.7"
],
[
"13.43924385",
"69.1"
],
[
"13.43924621",
"267.5"
],
[
"13.43924845",
"108.2"
],
[
"13.43925984",
"130.9"
],
[
"13.43926293",
"210.1"
],
[
"13.43926449",
"279.7"
],
[
"13.44115917",
"122.8"
],
[
"13.44121858",
"303.5"
],
[
"13.44122348",
"192.9"
],
[
"13.44123431",
"305"
],
[
"13.44124196",
"156.7"
],
[
"13.44126235",
"101.5"
],
[
"13.44126846",
"59.1"
],
[
"13.44217042",
"159.8"
],
[
"13.44217143",
"273.8"
],
[
"13.44217492",
"75.4"
],
[
"13.44217812",
"21.6"
],
[
"13.44219285",
"80.8"
],
[
"13.44220028",
"227.1"
],
[
"13.44222161",
"230.4"
],
[
"13.44222823",
"220.8"
],
[
"13.44223776",
"37.5"
],
[
"13.44225635",
"16"
],
[
"13.44225855",
"71.4"
],
[
"13.4431712",
"92.1"
],
[
"13.44319977",
"229.7"
],
[
"13.44320796",
"160.9"
],
[
"13.44413699",
"40.2"
],
[
"13.44416033",
"40.1"
],
[
"13.44416448",
"268"
],
[
"13.44416582",
"140.6"
],
[
"13.44419162",
"246.9"
],
[
"13.44420839",
"132.8"
],
[
"13.44421072",
"213.7"
],
[
"13.44421756",
"233.8"
],
[
"13.4442298",
"240.6"
],
[
"13.44424409",
"127.2"
],
[
"13.4442575",
"117.8"
],
[
"13.4442649",
"6.8"
],
[
"13.44513681",
"266.9"
],
[
"13.4451385",
"292.5"
],
[
"13.44513924",
"28.9"
],
[
"13.44514105",
"253.7"
],
[
"13.4451492",
"270.1"
],
[
"13.44515498",
"288.1"
],
[
"13.4451563",
"234"
],
[
"13.44515724",
"294.8"
],
[
"13.44515967",
"200.5"
],
[
"13.44516205",
"103"
],
[
"13.44516817",
"210.6"
],
[
"13.44517238",
"177.9"
],
[
"13.44517698",
"3.1"
],
[
"13.44517712",
"56.3"
],
[
"13.44517987",
"169.9"
],
[
"13.44518489",
"50.3"
],
[
"13.44518759",
"154.3"
],
[
"13.44519564",
"244.1"
],
[
"13.44519716",
"15.4"
],
[
"13.44520958",
"29.3"
],
[
"13.44521723",
"191.4"
],
[
"13.44521739",
"1.6"
],
[
"13.44522254",
"238.2"
],
[
"13.44522365",
"28"
],
[
"13.44522649",
"57.3"
],
[
"13.44522731",
"33.5"
],
[
"13.44523119",
"82.2"
],
[
"13.44523321",
"155.5"
],
[
"13.44523449",
"151.2"
],
[
"13.44523458",
"159"
],
[
"13.44524106",
"25.3"
],
[
"13.44524353",
"44"
],
[
"13.44524535",
"151.2"
],
[
"13.44525768",
"144.6"
],
[
"13.44525899",
"31.6"
],
[
"13.44526138",
"161.3"
],
[
"13.44526235",
"69.7"
],
[
"13.44526377",
"100.5"
],
[
"13.44526795",
"231.9"
],
[
"13.44613692",
"116.2"
],
[
"13.44614237",
"241.2"
],
[
"13.44614301",
"183.9"
],
[
"13.4461499",
"207.1"
],
[
"13.44616418",
"283.5"
],
[
"13.44616708",
"77.3"
],
[
"13.44617269",
"30.4"
],
[
"13.4461776",
"39.9"
],
[
"13.44618057",
"51.3"
],
[
"13.44618407",
"294.9"
],
[
"13.44618651",
"244.9"
],
[
"13.44619041",
"251.3"
],
[
"13.44619134",
"30.1"
],
[
"13.44619144",
"11.9"
],
[
"13.44620243",
"8.2"
],
[
"13.44621291",
"120.7"
],
[
"13.44621401",
"262.3"
],
[
"13.44621555",
"33.3"
],
[
"13.44622545",
"109.4"
],
[
"13.44623285",
"113.6"
],
[
"13.44623605",
"294.9"
],
[
"13.44624626",
"221.7"
],
[
"13.44625054",
"57.8"
],
[
"13.44625285",
"233.5"
],
[
"13.44625375",
"274.9"
],
[
"13.44714731",
"205.7"
],
[
"13.44716636",
"80.2"
],
[
"13.44725436",
"66.1"
],
[
"13.44814344",
"25.2"
],
[
"13.44816398",
"28.8"
],
[
"13.44823197",
"156.7"
],
[
"13.44823479",
"38.4"
],
[
"13.44823503",
"150.2"
],
[
"13.44824789",
"44.6"
],
[
"13.44825312",
"305.5"
],
[
"13.44826173",
"58.8"
],
[
"13.44826268",
"213.1"
],
[
"13.44915946",
"3.4"
],
[
"13.44917941",
"304.5"
],
[
"13.449213",
"100.7"
],
[
"13.44922191",
"23.8"
],
[
"13.44926339",
"187.2"
],
[
"13.45014313",
"101.8"
],
[
"13.45014383",
"172.5"
],
[
"13.45014958",
"37.6"
],
[
"13.45018144",
"37.2"
],
[
"13.4501835",
"142"
],
[
"13.45018491",
"67.7"
],
[
"13.45020493",
"119.2"
],
[
"13.45021088",
"42.7"
],
[
"13.45021985",
"285.1"
],
[
"13.45022637",
"33.3"
],
[
"13.45022758",
"284.6"
],
[
"13.45022948",
"186.6"
],
[
"13.4502329",
"172.1"
],
[
"13.45024318",
"298.8"
],
[
"13.45024438",
"229.4"
],
[
"13.45024559",
"205"
],
[
"13.45024636",
"154.7"
],
[
"13.45025313",
"93.9"
],
[
"13.45025845",
"153.3"
],
[
"13.45114113",
"122.3"
],
[
"13.45115649",
"105.2"
],
[
"13.45116707",
"116.8"
],
[
"13.45120125",
"158.9"
],
[
"13.45120538",
"133.7"
],
[
"13.45125218",
"126"
],
[
"13.45125435",
"27"
],
[
"13.45126597",
"40.1"
],
[
"13.4512666",
"254.6"
],
[
"13.45214447",
"10.5"
],
[
"13.45214538",
"269.8"
],
[
"13.452157",
"277"
],
[
"13.45217672",
"64.9"
],
[
"13.45218746",
"45.2"
],
[
"13.45220383",
"82.8"
],
[
"13.45220576",
"255.8"
],
[
"13.45221677",
"277.9"
],
[
"13.45222997",
"172.9"
],
[
"13.45223067",
"121"
],
[
"13.45223269",
"18.7"
],
[
"13.4522373",
"271.9"
],
[
"13.45224557",
"61.3"
],
[
"13.45224574",
"220.2"
],
[
"13.45225815",
"287.2"
],
[
"13.4531569",
"72.2"
],
[
"13.45315934",
"115.4"
],
[
"13.45315935",
"159"
],
[
"13.45316681",
"42.3"
],
[
"13.45318114",
"279.1"
],
[
"13.45319471",
"36.1"
],
[
"13.45322455",
"53.4"
],
[
"13.45322518",
"84.4"
],
[
"13.45322568",
"179.3"
],
[
"13.45322724",
"206.8"
],
[
"13.45323938",
"264.7"
],
[
"13.45325446",
"277.4"
],
[
"13.45325776",
"172.1"
],
[
"13.4541433",
"44"
],
[
"13.45414817",
"249.6"
],
[
"13.45416456",
"278.6"
],
[
"13.45416686",
"73.4"
],
[
"13.45417828",
"267.6"
],
[
"13.45417986",
"280.6"
],
[
"13.45418842",
"137.2"
],
[
"13.45419044",
"61.2"
],
[
"13.45419847",
"113.1"
],
[
"13.45422626",
"167.3"
],
[
"13.45423962",
"147.6"
],
[
"13.45424292",
"175.3"
],
[
"13.45424945",
"235.3"
],
[
"13.45425272",
"33.4"
],
[
"13.45425655",
"272.8"
],
[
"13.45426892",
"2.6"
],
[
"13.45515582",
"187.1"
],
[
"13.45516174",
"11.5"
],
[
"13.4551718",
"126.2"
],
[
"13.45517967",
"152.3"
],
[
"13.45518146",
"151.8"
],
[
"13.45518275",
"234.3"
],
[
"13.45520044",
"253.7"
],
[
"13.45522118",
"203.8"
],
[
"13.45522291",
"164"
],
[
"13.45522663",
"21.8"
],
[
"13.45522971",
"65.1"
],
[
"13.45523073",
"43"
],
[
"13.45524293",
"10.4"
],
[
"13.45524635",
"285.3"
],
[
"13.45525796",
"225.8"
],
[
"13.45717253",
"76.4"
],
[
"13.45717886",
"246.9"
],
[
"13.45724409",
"145.8"
],
[
"13.45815312",
"213.8"
],
[
"13.45815659",
"75.8"
],
[
"13.45816097",
"302.6"
],
[
"13.45819123",
"293.6"
],
[
"13.45823619",
"257.2"
],
[
"13.45824604",
"118.3"
],
[
"13.45825518",
"52.7"
],
[
"13.45826243",
"305.7"
],
[
"13.45826521",
"116.3"
],
[
"13.45917622",
"6.9"
],
[
"13.45917875",
"203"
],
[
"13.45918239",
"297.8"
],
[
"13.45921011",
"7.5"
],
[
"13.46016899",
"253.2"
],
[
"13.46020896",
"190.9"
],
[
"13.46021051",
"130.4"
],
[
"13.46021939",
"227.2"
],
[
"13.46025238",
"294.9"
],
[
"13.46026153",
"306.1"
],
[
"13.46026189",
"178.5"
],
[
"13.46115355",
"66.1"
],
[
"13.4611606",
"58"
],
[
"13.46116673",
"84.8"
],
[
"13.46117737",
"254.7"
],
[
"13.46118076",
"205.7"
],
[
"13.4611824",
"237.2"
],
[
"13.46118383",
"233.9"
],
[
"13.4611853",
"243.9"
],
[
"13.46119244",
"115.1"
],
[
"13.46119634",
"267.9"
],
[
"13.46120377",
"253.7"
],
[
"13.46121438",
"282.6"
],
[
"13.46122503",
"225.4"
],
[
"13.4612338",
"105"
],
[
"13.46123384",
"20.7"
],
[
"13.46124167",
"100.1"
],
[
"13.461247",
"271.6"
],
[
"13.46125373",
"165.5"
],
[
"13.46126615",
"270.8"
],
[
"13.46126743",
"44.9"
],
[
"13.46215049",
"90.1"
],
[
"13.46218433",
"260"
],
[
"13.4621891",
"10.5"
],
[
"13.46219528",
"138.4"
],
[
"13.46220328",
"16.1"
],
[
"13.46221417",
"19.3"
],
[
"13.46222722",
"189.6"
],
[
"13.46225309",
"150.1"
],
[
"13.46313608",
"112.8"
],
[
"13.46315334",
"225.4"
],
[
"13.4632322",
"270.9"
],
[
"13.46326323",
"9.3"
],
[
"13.46423586",
"200.4"
],
[
"13.46424828",
"68.7"
],
[
"13.46516297",
"37.7"
],
[
"13.46519925",
"223.9"
],
[
"13.46520645",
"29.3"
],
[
"13.46521516",
"239.6"
],
[
"13.4652257",
"129.3"
],
[
"13.4661401",
"162.7"
],
[
"13.46614381",
"51.4"
],
[
"13.46617425",
"157.3"
],
[
"13.46618557",
"111"
],
[
"13.46619711",
"17.3"
],
[
"13.46623575",
"159.2"
],
[
"13.4662506",
"56.9"
],
[
"13.46625189",
"150.7"
],
[
"13.46625202",
"298"
],
[
"13.46625208",
"162.6"
],
[
"13.46626251",
"182"
],
[
"13.46713729",
"212.2"
],
[
"13.46713755",
"127.9"
],
[
"13.46714189",
"16.3"
],
[
"13.46714718",
"18.4"
],
[
"13.4671665",
"251.5"
],
[
"13.46717048",
"49.8"
],
[
"13.46717623",
"160.8"
],
[
"13.46719443",
"197.1"
],
[
"13.46720312",
"174.2"
],
[
"13.46721449",
"181.5"
],
[
"13.46721719",
"128"
],
[
"13.46721751",
"140.3"
],
[
"13.46721956",
"164.5"
],
[
"13.4672268",
"196"
],
[
"13.46724498",
"168.4"
],
[
"13.46813646",
"257.8"
],
[
"13.46814769",
"215.8"
],
[
"13.4681666",
"194.2"
],
[
"13.46817128",
"49.4"
],
[
"13.46818877",
"146.2"
],
[
"13.46819064",
"151.2"
],
[
"13.46820371",
"93.8"
],
[
"13.46820408",
"20.8"
],
[
"13.46820689",
"300.9"
],
[
"13.46821794",
"207.7"
],
[
"13.46823432",
"228"
],
[
"13.46825742",
"92.9"
],
[
"13.46825911",
"155.2"
],
[
"13.46826691",
"216.5"
],
[
"13.46916369",
"298.2"
],
[
"13.4691766",
"134"
],
[
"13.47014546",
"8.5"
],
[
"13.47021761",
"179.9"
],
[
"13.47025161",
"19.4"
],
[
"13.47113927",
"278"
],
[
"13.47118123",
"66.4"
],
[
"13.47118941",
"48.6"
],
[
"13.47119235",
"106.5"
],
[
"13.47119247",
"202.9"
],
[
"13.47119362",
"244.3"
],
[
"13.47119831",
"22"
],
[
"13.4712544",
"48.2"
],
[
"13.47126666",
"138.5"
],
[
"13.47215316",
"97.7"
],
[
"13.47215545",
"157.2"
],
[
"13.47218026",
"110.2"
],
[
"13.47219078",
"196"
],
[
"13.47224537",
"267.4"
],
[
"13.47224905",
"288.2"
],
[
"13.47226025",
"294.6"
],
[
"13.47226187",
"171.6"
],
[
"13.47226684",
"27.3"
],
[
"13.47226872",
"283.1"
],
[
"13.47413889",
"41.1"
],
[
"13.47415437",
"266.1"
],
[
"13.47416892",
"116.9"
],
[
"13.47418508",
"205.2"
],
[
"13.47418707",
"173.4"
],
[
"13.47420508",
"205.1"
],
[
"13.4742173",
"161"
],
[
"13.47422737",
"34.2"
],
[
"13.47424878",
"161.8"
],
[
"13.47425977",
"0.5"
],
[
"13.4751351",
"3.3"
],
[
"13.47523081",
"47.2"
],
[
"13.47613483",
"123"
],
[
"13.47613735",
"154.9"
],
[
"13.47614458",
"90.7"
],
[
"13.47615751",
"144.6"
],
[
"13.47616377",
"244.4"
],
[
"13.476173",
"301.1"
],
[
"13.47617548",
"219.4"
],
[
"13.4761878",
"132.4"
],
[
"13.47620144",
"86.9"
],
[
"13.47620927",
"247.3"
],
[
"13.47621031",
"85.1"
],
[
"13.47624822",
"149.4"
],
[
"13.47626758",
"45.6"
],
[
"13.47713505",
"15.9"
],
[
"13.47713796",
"165.6"
],
[
"13.47714275",
"263.6"
],
[
"13.47715826",
"25.1"
],
[
"13.47724084",
"69.2"
],
[
"13.47726429",
"100.6"
],
[
"13.47815946",
"246.8"
],
[
"13.47818235",
"80.1"
],
[
"13.47819116",
"243.8"
],
[
"13.47819784",
"236.4"
],
[
"13.47822677",
"185.9"
],
[
"13.47823177",
"153.2"
],
[
"13.47823663",
"306.1"
],
[
"13.47825735",
"158.1"
],
[
"13.47826158",
"95"
],
[
"13.47915437",
"104.3"
],
[
"13.47915924",
"172"
],
[
"13.47918164",
"249.3"
],
[
"13.47919045",
"290"
],
[
"13.47919722",
"3.8"
],
[
"13.47920197",
"85.7"
],
[
"13.47920271",
"146.4"
],
[
"13.47920559",
"53.1"
],
[
"13.47920637",
"208.6"
],
[
"13.47922165",
"292"
],
[
"13.47922742",
"152.2"
],
[
"13.47922975",
"277.5"
],
[
"13.47923781",
"30.5"
],
[
"13.47924243",
"156.3"
],
[
"13.47924536",
"32.9"
],
[
"13.47924941",
"251.5"
],
[
"13.4792498",
"106.7"
],
[
"13.47925593",
"300.9"
],
[
"13.4801376",
"70.6"
],
[
"13.48014205",
"194.3"
],
[
"13.48014578",
"108.7"
],
[
"13.48014834",
"54"
],
[
"13.48017841",
"148.4"
],
[
"13.480187",
"174.1"
],
[
"13.48020026",
"252.6"
],
[
"13.48020199",
"289"
],
[
"13.48020692",
"125.4"
],
[
"13.48020836",
"293.1"
],
[
"13.48021413",
"5.1"
],
[
"13.48023054",
"154.8"
],
[
"13.48023428",
"196.2"
],
[
"13.48024711",
"252.1"
],
[
"13.48025164",
"272.2"
],
[
"13.48215103",
"123.9"
],
[
"13.48217004",
"111.3"
],
[
"13.48217388",
"251.8"
],
[
"13.48221734",
"304"
],
[
"13.48224568",
"172.6"
],
[
"13.4831655",
"115.5"
],
[
"13.48319393",
"38.2"
],
[
"13.48319894",
"151.6"
],
[
"13.48322562",
"221.1"
],
[
"13.48324096",
"302.3"
],
[
"13.48326142",
"207.6"
],
[
"13.48415825",
"226.4"
],
[
"13.48514432",
"39.6"
],
[
"13.48516111",
"95.9"
],
[
"13.48516563",
"234.1"
],
[
"13.48520857",
"303.8"
],
[
"13.4852429",
"144.2"
],
[
"13.48526156",
"123.8"
],
[
"13.48615191",
"56.2"
],
[
"13.48621007",
"282.5"
],
[
"13.48624812",
"85.5"
],
[
"13.48718719",
"211.3"
],
[
"13.48720005",
"100.3"
],
[
"13.48813974",
"156.7"
],
[
"13.4881502",
"16.8"
],
[
"13.48818064",
"58.3"
],
[
"13.48818291",
"14"
],
[
"13.4882005",
"258.7"
],
[
"13.48823416",
"6.6"
],
[
"13.48823469",
"10.9"
],
[
"13.48823766",
"41.5"
],
[
"13.48824317",
"219.4"
],
[
"13.48826171",
"241.5"
],
[
"13.4882638",
"167.2"
],
[
"13.48913495",
"244.5"
],
[
"13.48914157",
"151.7"
],
[
"13.48914303",
"26.1"
],
[
"13.48914351",
"124.7"
],
[
"13.48918854",
"162.5"
],
[
"13.48919779",
"240.7"
],
[
"13.48921636",
"219"
],
[
"13.4892185",
"62.2"
],
[
"13.48926248",
"258.4"
],
[
"13.49016191",
"187.4"
],
[
"13.49017332",
"54.7"
],
[
"13.49020687",
"141.1"
],
[
"13.49025537",
"165.2"
],
[
"13.49115067",
"2"
],
[
"13.49115601",
"145"
],
[
"13.49118407",
"174.5"
],
[
"13.49118895",
"213.3"
],
[
"13.49120893",
"24.5"
],
[
"13.49121109",
"263.2"
],
[
"13.49121434",
"101.7"
],
[
"13.491251",
"306"
],
[
"13.49125704",
"244.9"
],
[
"13.49213995",
"99.1"
],
[
"13.49215703",
"179.9"
],
[
"13.4921653",
"132.5"
],
[
"13.49217388",
"250.2"
],
[
"13.49217908",
"10.5"
],
[
"13.49220333",
"253.3"
],
[
"13.49221714",
"146"
],
[
"13.49225116",
"182.9"
],
[
"13.49225596",
"96.2"
],
[
"13.49226215",
"133.8"
],
[
"13.49226755",
"146.7"
],
[
"13.49313614",
"285.7"
],
[
"13.49314627",
"5.6"
],
[
"13.49315285",
"100.4"
],
[
"13.49316444",
"201.5"
],
[
"13.49317224",
"75.9"
],
[
"13.49319552",
"229"
],
[
"13.49319836",
"198.4"
],
[
"13.49320775",
"97.9"
],
[
"13.49320812",
"170.1"
],
[
"13.49320975",
"263.5"
],
[
"13.49321624",
"236.1"
],
[
"13.49323993",
"55.1"
],
[
"13.49324566",
"75.8"
],
[
"13.4932525",
"162.1"
],
[
"13.49417604",
"246.8"
],
[
"13.49418613",
"193.6"
],
[
"13.49425949",
"169.4"
],
[
"13.49516339",
"246"
],
[
"13.49519262",
"211"
],
[
"13.49525971",
"129.8"
],
[
"13.49615471",
"162.9"
],
[
"13.49617456",
"33.7"
],
[
"13.49618297",
"200.7"
],
[
"13.49618305",
"29.7"
],
[
"13.49620174",
"145.5"
],
[
"13.49622518",
"66.6"
],
[
"13.49623658",
"302.6"
],
[
"13.49624207",
"178"
],
[
"13.49624636",
"275.8"
],
[
"13.49624714",
"186.1"
],
[
"13.49625287",
"33.8"
],
[
"13.49718401",
"52.9"
],
[
"13.49718485",
"277.8"
],
[
"13.49719392",
"46.1"
],
[
"13.49721931",
"175.6"
],
[
"13.49725171",
"203.9"
],
[
"13.49815372",
"66.2"
],
[
"13.49816009",
"202.4"
],
[
"13.49816504",
"56.6"
],
[
"13.49819834",
"11.4"
],
[
"13.49820126",
"165.2"
],
[
"13.49821088",
"256.3"
],
[
"13.49822259",
"150.3"
],
[
"13.49822784",
"105.5"
],
[
"13.49826107",
"89.8"
],
[
"13.49826165",
"303.6"
],
[
"13.50013935",
"120.3"
],
[
"13.50019193",
"17"
],
[
"13.50021891",
"300.2"
],
[
"13.50026519",
"141"
],
[
"13.50115145",
"128.8"
],
[
"13.50115871",
"101.4"
],
[
"13.50116244",
"122.5"
],
[
"13.50118424",
"78.8"
],
[
"13.50126215",
"259.4"
],
[
"13.50314293",
"238.8"
],
[
"13.50315902",
"29.9"
],
[
"13.50316294",
"36.3"
],
[
"13.50316539",
"58.7"
],
[
"13.5031941",
"209.6"
],
[
"13.50320423",
"228.6"
],
[
"13.50325089",
"89.1"
],
[
"13.50326022",
"150.4"
],
[
"13.50326377",
"57.5"
],
[
"13.50415219",
"142"
],
[
"13.50416615",
"114"
],
[
"13.50417711",
"297.4"
],
[
"13.50819425",
"226.7"
],
[
"13.50824894",
"169.9"
],
[
"13.50825809",
"45.7"
],
[
"13.51013584",
"47.1"
],
[
"13.51016638",
"172.9"
],
[
"13.51017198",
"208.3"
],
[
"13.51020669",
"262.7"
],
[
"13.5102398",
"111.9"
],
[
"13.51820005",
"10"
],
[
"13.51825666",
"42.1"
],
[
"13.51926444",
"52.8"
],
[
"13.53116412",
"216.9"
],
[
"13.53122778",
"239.8"
],
[
"13.53316306",
"17.1"
],
[
"13.53324027",
"273.7"
],
[
"13.53325311",
"233"
],
[
"13.53325421",
"79.4"
],
[
"13.5351406",
"17.7"
],
[
"13.53514489",
"154.5"
],
[
"13.53515251",
"268.2"
],
[
"13.53613582",
"14.5"
],
[
"13.53614592",
"15.5"
],
[
"13.53614898",
"76.8"
],
[
"13.53616862",
"302.3"
],
[
"13.53621023",
"143.2"
],
[
"13.54314925",
"196.3"
],
[
"13.54320752",
"21.3"
],
[
"13.54715856",
"203.7"
],
[
"13.54719006",
"147"
],
[
"13.54725081",
"66.2"
],
[
"13.55019185",
"45.5"
],
[
"13.5502239",
"248.8"
]
],
"timestamp": "1764296374",
"ticker_id": "LINKUSDT_PERP"
}

