{"info":{"_postman_id":"69c37426-3c42-4c8d-ac62-a653189be7cb","name":"NCFX Data Services – API Documentation Overview","description":"<html><head></head><body><p>Welcome to the documentation for <strong>NCFX’s data services</strong>. This guide is your central reference for everything you need to understand, authenticate, and integrate with our APIs. You can execute all APIs <strong>(excluding FIX and WebSockets)</strong> directly in Postman.</p>\n<hr>\n<h2 id=\"🔒-access--permissions\">🔒 Access &amp; Permissions</h2>\n<ul>\n<li><p><strong>Services are licensed per customer</strong>, based on your agreement.</p>\n</li>\n<li><p>Usage may be limited by:</p>\n<ul>\n<li><p>Allowed instruments or groups</p>\n</li>\n<li><p>Monthly call quotas</p>\n</li>\n<li><p>Bulk data volume caps (in GB)</p>\n</li>\n<li><p>Time window limits for time-series APIs</p>\n</li>\n<li><p>Earliest available date for historical queries</p>\n</li>\n</ul>\n</li>\n<li><p><strong>Contact your account manager</strong> for details about your limits.</p>\n</li>\n</ul>\n<p>Access is granted per:</p>\n<ul>\n<li><p><strong>Organization</strong> (shared pool)</p>\n</li>\n<li><p><strong>Individual or machine accounts</strong> (personal quotas)</p>\n</li>\n</ul>\n<p>Note: <strong>Personal usage</strong> consumes individual quotas before organizational ones.</p>\n<hr>\n<h2 id=\"🔐-authentication--authorization\">🔐 Authentication &amp; Authorization</h2>\n<p>All data APIs (except general reference endpoints) require authentication. Supported methods vary by service:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Service Type</th>\n<th>Authentication Method</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>Fiat &amp; Crypto APIs</strong></td>\n<td>OAuth 2.0 (preferred)</td>\n</tr>\n<tr>\n<td><strong>API &amp; Fiat WebSockets</strong></td>\n<td>OAuth 2.0</td>\n</tr>\n<tr>\n<td><strong>FIX Services</strong></td>\n<td>Username/password</td>\n</tr>\n<tr>\n<td><strong>Crypto WebSockets</strong></td>\n<td>Username/password challenge on connect</td>\n</tr>\n<tr>\n<td><strong>SFTP</strong></td>\n<td>Username/password → PEM file</td>\n</tr>\n</tbody>\n</table>\n</div><p>A single set of NCFX credentials grants access to all services (including visualizations).</p>\n<p>For <strong>TCA services</strong>, additional <strong>MFA or enterprise SSO</strong> may apply.</p>\n<hr>\n<h3 id=\"oauth-20-api--fiat--crypto\">OAuth 2.0 (API &amp; Fiat / Crypto)</h3>\n<ol>\n<li><p>Use your <strong>username/password</strong> to obtain an <code>access_token</code> (+ <code>refresh_token</code>) via the Token API.</p>\n</li>\n<li><p><strong>Access tokens</strong> last 1 hour; <strong>refresh tokens</strong> are valid for 1 year.</p>\n</li>\n<li><p>makefileCopyEditAuthorization: Bearer</p>\n</li>\n<li><p>Refresh expiring tokens using the <code>refresh_token</code> endpoint.</p>\n</li>\n</ol>\n<p>For simpler workflows, NCFX supports <strong>API keys</strong> as an alternative to OAuth. To note, these are:</p>\n<ul>\n<li><p>Tied to your username/password</p>\n</li>\n<li><p>Invalidated upon password reset</p>\n</li>\n</ul>\n<p>Request an API key via your account manager</p>\n<hr>\n<h3 id=\"api-keys\">API Keys</h3>\n<p>Ideal for systems that cannot manage OAuth tokens. You can authenticate using <strong>either</strong> of:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Apikey &lt;your-api-key&gt;\n\n</code></pre><p>or</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>x-api-key: &lt;your-api-key&gt;\n\n</code></pre><p>If you need an API key, please reach out to your account manager.</p>\n<hr>\n<h3 id=\"basic-authentication-usernamepassword\">Basic Authentication (Username/Password)</h3>\n<p>Supported for services like FIX and SFTP, also supported (as below) for APIs.</p>\n<p>To use for API access:</p>\n<ol>\n<li><p>Encode <code>username:password</code> in Base64.</p>\n</li>\n<li><p><code>Authorization: Basic</code></p>\n</li>\n</ol>\n<hr>\n<h3 id=\"🔐-important-security-notes\">🔐 Important Security Notes</h3>\n<ul>\n<li><p>NCFX does <strong>not enforce forced password rotation</strong>—change your password if you suspect a security issue.</p>\n</li>\n<li><p>Changing your password <strong>automatically invalidates your API key</strong>.</p>\n</li>\n<li><p>Credentials should <strong>never be shared</strong> or exposed publicly.</p>\n</li>\n</ul>\n<hr>\n<h2 id=\"🧪-using-apis-in-postman\">🧪 Using APIs in Postman</h2>\n<p>NCFX APIs can be imported and executed in Postman:</p>\n<p><strong>Getting started:</strong></p>\n<ol>\n<li><p>Sign in or sign up at <a href=\"https://www.postman.com\">postman.com</a>.</p>\n</li>\n<li><p>Click <strong>“Run in Postman”</strong> in this documentation.</p>\n</li>\n<li><p>Select a workspace (e.g. <em>My Workspace</em>) and import the collection.</p>\n</li>\n</ol>\n<p><strong>Configure credentials:</strong></p>\n<ol>\n<li><p>In <strong>NCFX data services</strong> collection, open the <strong>Variables</strong> tab:</p>\n<ul>\n<li>Set <code>username</code> &amp; <code>password</code> —or— <code>apikey</code> in the <strong>Current Value</strong> column.</li>\n</ul>\n</li>\n<li><p>Under the <strong>API</strong> folder, open the <strong>Authorization</strong> tab:</p>\n<ul>\n<li><p><strong>OAuth 2.0</strong>: Click <strong>Get New Access Token</strong>, then <strong>Use Token</strong></p>\n</li>\n<li><p><code>x-api-key: {{apikey}}</code></p>\n</li>\n</ul>\n</li>\n</ol>\n<p>You're now ready to interact with licensed APIs.</p>\n<p><strong>Making a request:</strong></p>\n<ol>\n<li><p>Navigate the API tree to your endpoint (e.g. <code>fiat → live → midrate → v1 → strict</code>)</p>\n</li>\n<li><p>Click <strong>Params</strong>, enter your parameter values (helpful examples appear on the right)</p>\n</li>\n<li><p>Click <strong>Send</strong> to run the request</p>\n</li>\n</ol>\n<hr>\n<h2 id=\"🔧-using-apis-in-other-tools\">🔧 Using APIs in Other Tools</h2>\n<p>When building your own integration, remember:</p>\n<ul>\n<li><p><strong>OAuth 2.0 APIs</strong> require valid <code>Authorization: Bearer</code></p>\n</li>\n<li><p><strong>API Key</strong> use <code>Authorization: Apikey</code> or <code>x-api-key:</code></p>\n</li>\n<li><p><strong>Basic Auth</strong> uses <code>Authorization: Basic</code></p>\n</li>\n</ul>\n<p>Authentication examples are in <strong>Authentication → Authenticating to an API</strong>.</p>\n<blockquote>\n<p>⚠️ Most other code samples omit authentication headers for readability—you must include them in real requests. </p>\n</blockquote>\n<hr>\n<h3 id=\"⚙️-platform-considerations\">⚙️ Platform Considerations</h3>\n<ul>\n<li>You can switch the language displayed in examples using the language selector, and change OS settings using the gear icon to tailor the examples.</li>\n</ul>\n<hr>\n<h2 id=\"🧱-documentation-structure\">🧱 Documentation Structure</h2>\n<ol>\n<li><p><strong>API</strong></p>\n<ul>\n<li><p>Organized by <strong>Crypto / Fiat</strong> and <strong>Live / Historic</strong></p>\n</li>\n<li><p>All endpoints work directly in Postman</p>\n</li>\n<li><p>Returns JSON, except Bulk APIs (CSV delivered via GZIP + SFTP)</p>\n</li>\n</ul>\n</li>\n<li><p><strong>FIX</strong></p>\n<ul>\n<li>Protocol-level descriptions only</li>\n</ul>\n</li>\n<li><p><strong>WebSockets</strong></p>\n<ul>\n<li>Live-streaming setup for Crypto and Fiat (documentation only)</li>\n</ul>\n</li>\n</ol>\n<p>Authentication configured at the collection level applies to all API requests.</p>\n<hr>\n<h2 id=\"⏰-time-formats--url-styles\">⏰ Time Formats &amp; URL Styles</h2>\n<ul>\n<li><p><code>yyyy-mm-ddHH:mm:ss.000</code></p>\n</li>\n<li><p><strong>Query string routes</strong> support:</p>\n<ul>\n<li><p>ISO-8601, RFC 2822, ATOM, COOKIE, Unix Epoch</p>\n</li>\n<li><p><code>yyyy-mm-dd hh:mm:ss.000 (UTC)</code></p>\n</li>\n</ul>\n</li>\n<li><p>All data uses <strong>UTC timestamps</strong></p>\n<ul>\n<li>Daily OHLC values are calculated at <strong>5 PM New York</strong> (as the reference cutoff)</li>\n</ul>\n</li>\n</ul>\n<hr>\n<h2 id=\"📈-defining-a-fiat-currency-instrument\">📈 Defining a Fiat Currency Instrument</h2>\n<p>To request FX rates, specify these fields:</p>\n<ul>\n<li><p><code>pair</code> (e.g. <code>USDJPY</code>)</p>\n</li>\n<li><p><code>tenor</code> or specific date</p>\n</li>\n<li><p><code>type</code> (<code>Deliverable</code> or <code>NDF</code>)</p>\n</li>\n<li><p><code>route</code> (<code>Observed</code> or <code>Crossed</code>)</p>\n</li>\n</ul>\n<p>Use the <strong>Fiat Reference API</strong> (found under <code>API → fiat → general</code>) to:</p>\n<ul>\n<li><p>Discover available pairs and NDF flags</p>\n</li>\n<li><p>Learn which currencies are observed vs crossed</p>\n</li>\n<li><p>Understand rate deliverability</p>\n</li>\n</ul>\n<p>Most APIs annotate each rate with <strong>deliverable status</strong> and <strong>route</strong>.</p>\n<p>Some endpoints don’t require <code>type</code> or <code>route</code>—they assume the most common/“default” type and return annotated data accordingly.</p>\n<hr>\n<h2 id=\"🔁-cross-rates--spot-date-conventions\">🔁 Cross Rates &amp; Spot Date Conventions</h2>\n<ul>\n<li><p><strong>Crosses</strong>: Used for currency pairs lacking direct market liquidity; calculated via liquid paths (e.g. through USD/EUR).</p>\n</li>\n<li><p><strong>Spot date calculations</strong>:</p>\n<ul>\n<li><p>Based on settlement conventions of the later-settling currency</p>\n</li>\n<li><p>NDF deliverable pairs may have different adjustments</p>\n</li>\n</ul>\n</li>\n</ul>\n<hr>\n<h2 id=\"🏛️-benchmarks--benchmark-windows\">🏛️ Benchmarks &amp; Benchmark Windows</h2>\n<ul>\n<li><p>NCFX is a regulated Benchmark Administrator.</p>\n</li>\n<li><p>Some data types are defined as <strong>benchmarks</strong>, flagged in responses.</p>\n</li>\n<li><p><strong>Benchmark windows</strong> indicate reliability duration (usually daily windows).</p>\n</li>\n<li><p>Windows are defined in local timezones.</p>\n</li>\n<li><p>Details are available in the <strong>Fiat Reference API</strong>.</p>\n</li>\n</ul>\n</body></html>","schema":"https://schema.getpostman.com/json/collection/v2.0.0/collection.json","toc":[],"owner":"45195119","collectionId":"69c37426-3c42-4c8d-ac62-a653189be7cb","publishedId":"2sB2qai1it","public":true,"customColor":{"top-bar":"FFFFFF","right-sidebar":"303030","highlight":"FF6C37"},"publishDate":"2025-05-22T14:00:25.000Z"},"item":[{"name":"AUTHENTICATION","item":[{"name":"🔐 OAuth 2.0 Authentication","item":[{"name":"Using AccessToken","item":[{"name":"API request using Access Token","id":"b2241848-2639-4c14-b235-02f0b787afec","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer <your access token>","type":"text"}],"url":"{{FIAT_API_ENDPOINT}}/live/midrate/v1/rates/GBPUSD/SPT/D/O","description":"<p>This example requests some fiat data. It is intended to demonstrate the use of an access token in the header of a generic data request. Please note that the term 'Bearer' must be included in the header before the token itself.</p>\n","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"2697646b-d5bf-43fd-87d0-7201abd230f5","id":"2697646b-d5bf-43fd-87d0-7201abd230f5","name":"🔐 OAuth 2.0 Authentication","type":"folder"}},"urlObject":{"path":["live","midrate","v1","rates","GBPUSD","SPT","D","O"],"host":["{{FIAT_API_ENDPOINT}}"],"query":[],"variable":[]}},"response":[{"id":"af4e9aba-d775-4d3e-8312-78ef716316e4","name":"API request using Access Token","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"SOg9eiBPX5M9vFbP9ytq-ZSFjWp0SdQtmv","type":"text"}],"url":"https://fiat.api.newchangefx.com/live/midrate/v1/rates/GBPUSD/SPT/D/O"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"openresty","enabled":true},{"key":"Date","value":"Wed, 31 Jan 2024 13:29:51 GMT","enabled":true},{"key":"Content-Type","value":"application/json","enabled":true},{"key":"Content-Length","value":"104","enabled":true},{"key":"Last-Modified","value":"Wed, 31 Jan 2024 13:29:50 GMT","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Etag","value":"18","enabled":true},{"key":"Vary","value":"If-None-Match, If-Modified-Since","enabled":true},{"key":"Access-Control-Allow-Headers","value":"Authorization,x-api-key","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"rt\": \"2024-01-31 13:29:50.920\",\n    \"p\": \"GBPUSD\",\n    \"tn\": \"SPT\",\n    \"m\": \"1.2693\",\n    \"ib\": 1,\n    \"ic\": 0,\n    \"in\": 0,\n    \"ix\": 0,\n    \"io\": 1\n}"}],"_postman_id":"b2241848-2639-4c14-b235-02f0b787afec"}],"id":"d4c807b6-4e89-489d-9713-82e17161b127","_postman_id":"d4c807b6-4e89-489d-9713-82e17161b127","description":"","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"2697646b-d5bf-43fd-87d0-7201abd230f5","id":"2697646b-d5bf-43fd-87d0-7201abd230f5","name":"🔐 OAuth 2.0 Authentication","type":"folder"}}},{"name":"Client Authentication","id":"82222567-15e2-4b6d-bde0-fdf7860a23fe","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"urlencoded","urlencoded":[{"key":"username","value":"{{AUTH_USERNAME}}","description":"<p>your username</p>\n","type":"text"},{"key":"password","value":"{{AUTH_PASSWORD}}","description":"<p>your password</p>\n","type":"text"},{"key":"grant_type","value":"password","description":"<p>use this exact string</p>\n","type":"text"}]},"url":"{{AUTH_ENDPOINT}}/auth","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"2697646b-d5bf-43fd-87d0-7201abd230f5","id":"2697646b-d5bf-43fd-87d0-7201abd230f5","name":"🔐 OAuth 2.0 Authentication","type":"folder"}},"urlObject":{"path":["auth"],"host":["{{AUTH_ENDPOINT}}"],"query":[],"variable":[]}},"response":[{"id":"53fba5dd-9a98-4668-8c2f-db4d8727b025","name":"Get refresh token with username and password","originalRequest":{"method":"POST","header":[],"body":{"mode":"urlencoded","urlencoded":[{"key":"username","value":"acme.sarah","description":"Username","type":"text"},{"key":"password","value":"abc123!","description":"Password","type":"text"},{"key":"grant_type","value":"password","description":"use this exact string","type":"text"}]},"url":"https://auth.newchangefx.com/auth"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"openresty","enabled":true},{"key":"Date","value":"Wed, 31 May 2023 08:03:11 GMT","enabled":true},{"key":"Content-Type","value":"application/json;charset=UTF-8","enabled":true},{"key":"Transfer-Encoding","value":"chunked","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"refresh_token\": \"eyJjdHkiOiJKV1QilbmMiOi0IiwiYWxnIjoiUlNBLU9BRVAifQ.UwcL3Ub7pDjLruwM_iBQga84202LQWgKeHZtRCSAO8LdqvWWb2BT6F2OOipJR7nTXn4g_biuooCWy623ZMjhCBHlLazKkmj2kNqr2Jd7FS-mLAkrG2vY1sB38Ue0G-qAtxE-00vn_4DthsZjceBHIokUFE3cvVHZfxqyeaCFQ9-RfEmG_WahD1D94qgwOpROUit1LlEE0XAQMfuYUMIOheaoo0a_JeCBmIHDDhEeJc7AmGdbW8C-ueompKq6_3jxTSLTXW_umJuTMSBwmZuv0fx0Clo4ELkmoEfTkQhZqFgrd7hk95maMmbhPVKz7RHi4s9dAPyUTblKc9iTThP1mqC55wNjvNl6PzKeG48aYC2FXpNsNOfhr9QJJ5JJJXFTqznmTvglmilNwAlGuiluifg7bYKIRedlSi6ENCgoSAghNPaKErREu-GBSC5NfJfxDF9jvpyPM7Acb0Wqfl3EwroTICXh3BJoXdpAtgSgv0L1B4kaMLO_rlW_rN2sZIC2OpbmuPfggcpZVBjG5-RYfvVnS4FkfcC79Xxnqloq9MmdjZaIm9jRlkw_I38DMsVIfWssLKO7HW4nbqLDt_0R9LI96FimD3Lf94uNxyjaKFRw4ia2NMkUu7OEZnlLhNDjPRbhg6pjGwvbcsjs8m4B3d6c-KpGnr30PprF4gb_dblqYDN_Z8vZqGKjMVHv0CxobPBHbCOWmLeNGc8CYhuuOh0lx-Qo2Nk87DptgD-zFkcLbINrE_Kjqdht7lyzx0jDjlF3xgye8yFUY1YVID_EBrTOL3WlKp9TNzrwt-0N7SCpTEIWplTe5VbJY4_CHxtDHEa76Uj7Ts6H2QrNi8PnVKbld0bXTb1q3dzTGfJiq2MESJuobI4XusgevxnsJK4iEzq9NzE-VRQ6qVQaDjHBn2jDxGId-UvZd5bOhaoOmgt_6xG0MfucIsDhyD0nHWTDWs4S2tpp5HH1c0OLIQKfT6fdksao_AtmkAGpxS6cieAMFGBQQFYPBeokWbQaaJBByCwYC0vGnvs6goIgSPSv4IJS_ESZH5UnpbGTxHYNtgJ2y-vOfpJtpO-zB9irBZ2qrrAo-ssONT_k709SjO6GPuCb4_e5otvw86OfRqU_yyqcUGkFjvb8pNXNJVYHTDApc1XuoK_e3p0oTgm-uE_SrW44Xw.-6RwRUWvETspmuOg\",\n    \"access_token\": \"eyJraWQiOiJwT1YrblZHWUd2R1lVuW8wWStUeGtU52cHU5bHRBcFpieGRtSERjPSIsImFsZyI6IlJTMjU2In0.eyJzdWIiOiINjUyZjJmNC1lMDIxLTcw7MmQtxMzU1YmmgmghMwOWVmMTAiLCJjb2duaXRvOdyb3VwcyI6WyJuY2Z4Il0sImlzcyI6Imh0dHBzOlwvXC9jb2duaXRvLWlkcC5ldS13ZXN0LTIuYW1hem9uYXdzLmNvbwvZXUatd2VzsddC0X1ZrGI1SU1XVCIsmNsaWVudF9pZCIgIocDNrMzFhYmxjazV2aGN2a21xanY0c2giLCJclnaW5fanRpIjoiOGJhMzFgM2ItZmNkNi00OTY4LTgxZtZTk2MzYzMTk5MTA4IiwiZXZlbnRaWQiOiIzZmZmZmQwMy0yOTYxLc3Ng1NjFkMDEiCJ0db2tlbl91c2UiiJhY2Nlc3MiLCJzY29wZS6mF3cy5jb2duaXRvLnNpZ25pb51c2VyLmFkbWluIiwiYXV0aF90aW1lIjoxNzA2NTQ2MzEwLCJeHAiOjE3MDY1NDk5MTAsImlhdCI6MTwNjU0NjjoijVmOTY1Y2MtzBhMC00MDIwLTk0YmItOGIyOTFmNTA1YjczIiwidXNlm5hbWUiOiJuY2Z4LmthbSJ9.cXsIqppZKkp24l_G2Q6KAa3qBxVIVAMkT7Paxfx4zwh6S9qzuClrYV7qG0U0AYxCJg_JXo11HAQycOVLug\",\n    \"expires_in\": 3600,\n    \"token_type\": \"Bearer\"\n}"}],"_postman_id":"82222567-15e2-4b6d-bde0-fdf7860a23fe"},{"name":"Refresh Tokens","id":"d9adb2d3-08c2-4f0f-95a3-d0d45ace31d2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"urlencoded","urlencoded":[{"key":"username","value":"{{AUTH_USERNAME}}","description":"<p>Username</p>\n","type":"text"},{"key":"refresh_token","value":"<your refresh token>","description":"<p>Refresh token (generated from the Client Authentication API)</p>\n","type":"text"},{"key":"grant_type","value":"refresh_token","description":"<p>use this exact string</p>\n","type":"text"}]},"url":"{{AUTH_ENDPOINT}}/auth","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"2697646b-d5bf-43fd-87d0-7201abd230f5","id":"2697646b-d5bf-43fd-87d0-7201abd230f5","name":"🔐 OAuth 2.0 Authentication","type":"folder"}},"urlObject":{"path":["auth"],"host":["{{AUTH_ENDPOINT}}"],"query":[],"variable":[]}},"response":[{"id":"7022ee3e-29fa-40fe-a7a7-ee33fa6fc303","name":"Get access token with refresh token","originalRequest":{"method":"POST","header":[],"body":{"mode":"urlencoded","urlencoded":[{"key":"username","value":"acme.sarah","description":"Username","type":"text"},{"key":"refresh_token","value":"IjoiUlNBLU9BRVAifQ.UwcL3Ub7pDjLp[#ruwM_iBQga84202LQWgKeHZtRCSAO[#8LdqvWWb2BT6F2OOipJR7nTXn4g_biuooCWy6l23ZMjhCBHlLazKkmj2kNqr2Jd7FS-mp[#HZfxqyeaCFQ9-RfEmG_WahD1D94qdgwOpROUit1LlEE0XAQMfuYUMIOheaoo0a_JeCBmIHDDhEeJc7AmGdbW8C-ueompKq6_3p[p[jxT6SLTW_umJuTMSBwmZuv0fx0Clo4ELkmoEfTkQhpZqFgrsrgd7hk95maMmbhPVKz7RHi4s9dAPyUTblKc9iTThP1mfqC55wNjvNl6PzKeGp[#4aYC2FXpNsp[#Ofhr9QJJ5JJJXFTqznmTvglmilNwAlGuiluifg7bYKIRedlSi6ENCgoSAghNPaKErREu-GBSC5NfJfxfDF9jvpfbPTICXh3BJoXdpAtgSgv0L1B4kaMLO_rlW_rN2sZIC2OpbmuPfggcpZVBjG5-RYfvVnS4F6kfcCm9Xxnqloq9MmdjZaIm9jRlkw_I38DMsVIfWssLKOx7HW4nbqLDt_0R9LI96FimD3Lf94uNxyjKFRw4dia2NMkUu7OEZnlLhNDjPRbhg6pjGwvbcsjs8m4B3d6c-KpGnr30PprF4gb_dblqYDN_Z8vZqGKjMVHv0CxobPBHbCOWmLeNGc8CYhuuOh0lx-Qo2Nk87DptgD--zFkcLbINrE_Kjqdht7lyzx0jDjlF3xgye8CyFUY1YVID_EBrTOL3WlKp9TNzOrw-0N7SCpTEIWplTe5VbJY4_CHxtDHEa76Uj7Ts6H2QrNi8PnVKbld0bXTb1q3dzTGfJiYq2MESJuobI4XusgevxnsJK4iEzq9NzE-VRQ6qVQaDjHBn2jDxGId-UvZd5bOhaoOmgt_6xG0MfucIsDhyD0nHWTDWs4S2tpp5HH1c0OLIQKfT6fdksao_AtmkAGpxS6cieAMFGBQQFYPBeokWbQaaJBByCwYC0vGnvs6oIgSPSv4IJS_ESZH5UnpbGTxHYNtgJ2y-vOfpJtpO-zB9irBZ2qrrAo-ssONT_k709SjO6GPuCb4_e5otvw86OfRqU_yyqcUGkFjvb8pNXNJVYHTDApc1XuoK_e3p0oTgm-uE_SrW44Xw.-6RwRUWvETspmuOg","description":"Refresh token (generated from the Client Authentication API)","type":"text"},{"key":"grant_type","value":"refresh_token","description":"use this exact string","type":"text"}]},"url":"https://auth.newchangefx.com/auth"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"","type":"text","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"refresh_token\": \"eyJjdHkiOiJKV1QiLCJlbmMiOi0IiwiYWxnIjoiUlNBLU9BRVAifQ.UwcL3Ub7pDjLruwM_iBQga84202LQWgKeHZtRCSAO8LdqvWWb2BT6F2OOipJR7nTXn4g_biuooCWy623ZMjhCBHlLazKkmj2kNqr2Jd7FS-mLAkrG2vY1sB38Ue0G-qAtxE-00vn_4DthsZjceBHIokUFE3cvVHZfxqyeaCFQ9-RfEm7G_ahD1D94qdgwOpROUit1LlEE0XAQMfuYUMIOheaoo0a_JeCBmIHDDhEeJc7AmGdbW8C-eompKq6_3jx6SLTXW_umJuTMSBwmZuv0fx0Cl4ELkmoEfTkQhpZqFgrd7hk95maMmbhPVKez7RHi4s9dAPyUTblKc9iTThP1mfqC55wNjvNl6PzKeG4aYC2FXpNsNOfhr9QJJ5JJJXFqznmTvglmilNwAlGuluifg7bYKIRedlSi6ENCgoSAghNPaKErR-GBSC5NfJfxfDF9jvpkyPMAcb0Wqfl3EywroTICXh3BJoXdpAtgSgv0L1B4kaMLO_rlW_rN2sZIC2OpbmuPfggcpZVBjG5-RYfvVnS4F6kfcC79Xxnqloq9MmdjZaIm9jRlkw_I38DMsVIfWssLKOx7HW4nbqLDt_0R9LI96FimD3Lf94uNxyjKkFRwia2NMkUu7OEZnlLhNDjPRbhgad6pjGwvbcsjsm4B3d6c-KpGnr30PprF4gb_dlqYDN_Z8vZqGKjMVHv0CxobPBHbCOWmLeGc8CYhuuOh0lx-Qo2Nk87ptgD--zFkcLbINrE_Kjqdht7lyzx0jDjlF3xgye8CyFUY1YVID_EBrTOL3WlKp9TNzOrw-0N7SCpTEIWplTe5VbJY4_CHxtDHEa76Uj7Ts6H2QrNi8PnVKbld0bXTbq3dzTGfJiYq2MEfSJuobI4XusgevaxnsJK4iEzq9NzE-VRQ6qVQaDjHBn2jDxGId-UvZd5bOhaoOmgt_6xG0MfuclIsDhyD0nHWTDWs42tpp5HH1c0OLIQKfT6fdksao_AtmkAGpxS6cieAMFGBQQFYPBeokWbQaaJBByCwYC0vGnvs6oIgSPSv4IJS_ESZH5UnpbGTxHYNtgJ2y-vOfpJtpO-zB9irBZ2qrrAo-ssONT_k709SjO6GPuCb4_e5otvw86OfRqU_yyqcUGkFjvb8pNXNJVYHTDApc1XuoK_e3p0oTgm-uE_SrW44Xw.-6RwRUWvETspmuOg\",\n    \"access_token\": \"eyJraWQiOiT1YrblZHWUd2R1VueW8wWStUeGtU52cHU5bHRBcFpieGRtSERjPSIsFsZyI6IlJTMjU2In0.eyJzdWIiOiINjUyZjJmNC1lMDIxLTcw7MmQtxMzU1YmmgmhMwOWVmMTiLCJjb2duaXRvOmdyb3VwcyI6WyJuY2Z4Il0sImlzcyI6Imh0dHBzOlwvXC9jb2duaXRvLWlkcC5ldS13ZXN0LTIuYW1hem9uYXdzmNvbVwvZXtd2VzssX1ZrdGI1SU1XVCIsmNsaW4VudF9pZCI6IocDNrMzFhYmxjazV2aGN2a21xanY0c2giLCJclnaW5fanRpIjoiOGpJhMzFgM2ItZmNkNi00OTY4LgxZtZTk2MzYzMTk5MTA4IiwiZXZlbnRaWQiOiIzZmZmZmQwMyyOTYxLc3NTdg1NjFkMDEiCJ0db2tlbl91c2UiiJhY2Nlc3MiLCJzY29wZSI6mF3cy5jb2duaXRvLnNpZ25pb51c2VyLmFkbWluIiwiYXV0aF90aW1lIjoxNzA2NTQ2MzEgwLCJleHAiOjE3MDY1NDk5MTAsImlbbhdCI6MTwNjU0NjjoiYjVmOTY1Y2MtzBhMC00MDIwLTk0YmItOGIyOTFmNTA1YjczIiwidXNlm5hbWUiOiJuY2Z4LmthbSJ9.cXsIqppZKkp24l_G2Q6KAa3qBxVIVAMkT7Paxfx4zwh6S9qzuClrYV7qG0U0AYxCJg_Xo11HAQycOVLug\",\n    \"expires_in\": 3600,\n    \"token_type\": \"Bearer\"\n}"}],"_postman_id":"d9adb2d3-08c2-4f0f-95a3-d0d45ace31d2"}],"id":"2697646b-d5bf-43fd-87d0-7201abd230f5","description":"<p>This section provides the APIs for obtaining and refreshing OAuth 2.0 tokens.</p>\n<p>OAuth 2.0 is the recommended method for authenticating to our APIs. It supports secure, token-based access using short-lived access tokens and long-lived refresh tokens.</p>\n<hr />\n<h3 id=\"✅-how-oauth-20-works\">✅ How OAuth 2.0 Works</h3>\n<p>To authenticate using OAuth 2.0, follow these steps:</p>\n<hr />\n<h4 id=\"1-request-access-and-refresh-tokens\"><strong>1. Request Access and Refresh Tokens</strong></h4>\n<p>Use your <strong>username and password</strong> to request an <code>access_token</code> and <code>refresh_token</code> by calling the <strong>Client Authentication API</strong>.</p>\n<p><strong>Example Request:</strong></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>POST /auth\nContent-Type: application/json\n{\n  \"grant_type\": \"password\",\n  \"username\": \"your-username\",\n  \"password\": \"your-password\"\n}\n\n</code></pre><p><strong>Example Response:</strong></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n  \"access_token\": \"abc123...\",\n  \"refresh_token\": \"xyz789...\",\n  \"expires_in\": 3600,\n  \"token_type\": \"Bearer\"\n}\n\n</code></pre><ul>\n<li><p>The <code>access_token</code> is used to authorize API requests.</p>\n</li>\n<li><p>The <code>refresh_token</code> can be used to obtain a new access token without re-authenticating.</p>\n</li>\n<li><p>The <code>refresh_token</code> is valid for <strong>1 year</strong> unless revoked.</p>\n</li>\n<li><p>The <code>access_token</code> is valid for the duration specified in <code>expires_in</code> (in seconds, typically 3600 for 1 hour).</p>\n</li>\n</ul>\n<hr />\n<h4 id=\"2-use-the-access-token-in-api-requests\"><strong>2. Use the Access Token in API Requests</strong></h4>\n<p>Add the access token to the <code>Authorization</code> header of your API calls using the <code>Bearer</code> scheme.</p>\n<p><strong>Example:</strong></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>GET /api/resource\nAuthorization: {{vault:bearer-token}}\n\n</code></pre><p>For more details, see: 📘 <strong>Authenticating to an API &gt; API Request Using an Access Token</strong></p>\n<hr />\n<h4 id=\"3-refresh-the-access-token\"><strong>3. Refresh the Access Token</strong></h4>\n<p>Once your <code>access_token</code> expires, use the <code>refresh_token</code> to obtain a new one by calling the <strong>Refresh Token API</strong>.</p>\n<p><strong>Example Request:</strong></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>POST /auth\nContent-Type: application/json\n{\n  \"grant_type\": \"refresh_token\",\n  \"refresh_token\": \"xyz789...\",\n  \"username\": \"your-username\"\n}\n\n</code></pre><p><strong>Example Response:</strong></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n  \"access_token\": \"new-access-token\",\n  \"expires_in\": 3600,\n  \"token_type\": \"Bearer\"\n}\n\n</code></pre><p>Repeat this process to keep your session active without prompting the user again for credentials.</p>\n<hr />\n<h3 id=\"⚠️-token-expiration--best-practices\">⚠️ Token Expiration &amp; Best Practices</h3>\n<ul>\n<li><p><strong>Access tokens</strong> are short-lived (typically 1 hour). Ensure your client <strong>refreshes the token before or immediately after it expires</strong>.</p>\n</li>\n<li><p><strong>Refresh tokens</strong> last up to 1 year and can be reused until they expire or are revoked.</p>\n</li>\n<li><p>Always securely store your tokens and avoid logging them.</p>\n</li>\n</ul>\n<hr />\n","auth":{"type":"noauth","isInherited":false},"event":[{"listen":"prerequest","script":{"type":"text/javascript","exec":[""],"id":"1417b8f6-2663-424c-a9d6-6869dbc8eac4"}},{"listen":"test","script":{"type":"text/javascript","exec":[""],"id":"3f6e0daa-bd36-4dbf-b151-423efc54b8b7"}}],"_postman_id":"2697646b-d5bf-43fd-87d0-7201abd230f5"},{"name":"🔑 API Key Authentication","item":[{"name":"Using APIKey","item":[{"name":"API request using APIkey","id":"f69c81c5-0df7-4778-b8fe-582783f3e2a3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"x-api-key","value":"<your api key>","type":"text"}],"url":"{{FIAT_API_ENDPOINT}}/live/midrate/v1/rates/GBPUSD/SPT/D/O","description":"<p>This example requests some fiat data. It is intended to demonstrate the use of an APIkey in the header of a generic data request. Please note that the header name is 'x-api-key'.</p>\n","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"eb06a65a-a1ae-48e7-bff8-c44349670ab7","id":"eb06a65a-a1ae-48e7-bff8-c44349670ab7","name":"Using APIKey","type":"folder"}},"urlObject":{"path":["live","midrate","v1","rates","GBPUSD","SPT","D","O"],"host":["{{FIAT_API_ENDPOINT}}"],"query":[],"variable":[]}},"response":[{"id":"b9ef2b4b-a56f-4d4c-816a-202d60cd2ba2","name":"API request using APIkey","originalRequest":{"method":"GET","header":[{"key":"x-api-key","value":"DDEEC42EFC439B7EBB05090283429FC95B0C498FA52EF551AFADAC7071332A7609EB40F1D632B6990307B7E6607A403C","type":"text"}],"url":"{{FIAT_API_ENDPOINT}}/live/midrate/v1/rates/GBPUSD/SPT/D/O"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"openresty","enabled":true},{"key":"Date","value":"Wed, 31 Jan 2024 13:33:29 GMT","enabled":true},{"key":"Content-Type","value":"application/json","enabled":true},{"key":"Content-Length","value":"105","enabled":true},{"key":"Last-Modified","value":"Wed, 31 Jan 2024 13:33:29 GMT","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Etag","value":"12","enabled":true},{"key":"Vary","value":"If-None-Match, If-Modified-Since","enabled":true},{"key":"Access-Control-Allow-Headers","value":"Authorization,x-api-key","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"rt\": \"2024-01-31 13:33:29.620\",\n    \"p\": \"GBPUSD\",\n    \"tn\": \"SPT\",\n    \"m\": \"1.27011\",\n    \"ib\": 1,\n    \"ic\": 0,\n    \"in\": 0,\n    \"ix\": 0,\n    \"io\": 1\n}"}],"_postman_id":"f69c81c5-0df7-4778-b8fe-582783f3e2a3"}],"id":"eb06a65a-a1ae-48e7-bff8-c44349670ab7","description":"<p>This section contains examples of how to use your access tokens or APIkeys to authenticate to data APIs.</p>\n","auth":{"type":"noauth","isInherited":false},"event":[{"listen":"prerequest","script":{"type":"text/javascript","exec":[""],"id":"efb801a5-6292-42b3-9037-cd6e747414cf"}},{"listen":"test","script":{"type":"text/javascript","exec":[""],"id":"5b6259a2-a1fe-4dca-bc7f-891c1024af1a"}}],"_postman_id":"eb06a65a-a1ae-48e7-bff8-c44349670ab7"}],"id":"57757b07-2863-45ea-8558-f09e25da7fda","description":"<p>In cases where OAuth 2.0 is not practical—such as when working with legacy systems, manual scripts, or simpler tools—you can use an <strong>API key</strong> for authentication.</p>\n<p>You can request an API key from your account manager.</p>\n<p><strong>Note:</strong> API keys are valid until the password for the associated account is changed.</p>\n<hr />\n<h3 id=\"supported-api-key-formats\">Supported API Key Formats</h3>\n<p>We support two formats for sending API keys in your requests:</p>\n<h4 id=\"1-using-the-authorization-header\"><strong>1. Using the</strong> <strong><code>Authorization</code></strong> <strong>Header</strong></h4>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Apikey your-api-key-here\n\n</code></pre><h4 id=\"2-using-the-x-api-key-header\"><strong>2. Using the</strong> <strong><code>x-api-key</code></strong> <strong>Header</strong></h4>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>x-api-key: your-api-key-here\n\n</code></pre><blockquote>\n<p>&lt;p &gt;You can use either method based on what your client or library supports.&lt;/p&gt; </p>\n</blockquote>\n<hr />\n<h3 id=\"📘-example-api-request\">📘 Example API Request</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>GET /api/resource\nHost: api.example.com\nAuthorization: Apikey abc123xyz456\n\n</code></pre><p><strong>or</strong></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>GET /api/resource\nHost: api.example.com\nx-api-key: abc123xyz456\n\n</code></pre><hr />\n<h3 id=\"⚠️-notes\">⚠️ Notes</h3>\n<ul>\n<li><p>Do not include both headers at the same time.</p>\n</li>\n<li><p>API keys should be stored securely and never hardcoded in public code or shared repositories.</p>\n</li>\n<li><p>Rotate API keys periodically for improved security.</p>\n</li>\n</ul>\n","auth":{"type":"apikey","apikey":{"value":"{{AUTH_APIKEY}}","key":"<key>"},"isInherited":false},"event":[{"listen":"prerequest","script":{"type":"text/javascript","packages":{},"exec":[""],"id":"af6e53b3-e857-4233-aa4a-d0489959eb3a"}},{"listen":"test","script":{"type":"text/javascript","packages":{},"exec":[""],"id":"95517d2c-2c05-4297-94fb-1b3e2913721d"}}],"_postman_id":"57757b07-2863-45ea-8558-f09e25da7fda"},{"name":"🔐 Basic Authentication","item":[{"name":"Using Basic Auth","item":[{"name":"API request using Basic Auth","id":"170a27b7-0068-4407-99b0-afc2b9677a80","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Basic <credentials>","type":"text"}],"url":"{{FIAT_API_ENDPOINT}}/live/midrate/v1/rates/GBPUSD/SPT/D/O","description":"<p>This example requests some fiat data. It is intended to demonstrate the use of an APIkey in the header of a generic data request. Please note that the header name is 'x-api-key'.</p>\n","auth":{"type":"basic","basic":{"password":"{{AUTH_PASSWORD}}","username":"{{AUTH_USERNAME}}"},"isInherited":true,"source":{"_postman_id":"b1d13f7e-7b84-4a49-bf52-3b3d14b0af5e","id":"b1d13f7e-7b84-4a49-bf52-3b3d14b0af5e","name":"🔐 Basic Authentication","type":"folder"}},"urlObject":{"path":["live","midrate","v1","rates","GBPUSD","SPT","D","O"],"host":["{{FIAT_API_ENDPOINT}}"],"query":[],"variable":[]}},"response":[{"id":"44340218-fff5-42e7-ba08-2ea4515b5ecb","name":"API request using APIkey","originalRequest":{"method":"GET","header":[],"url":"{{FIAT_API_ENDPOINT}}/live/midrate/v1/rates/GBPUSD/SPT/D/O"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"openresty","enabled":true},{"key":"Date","value":"Wed, 31 Jan 2024 13:33:29 GMT","enabled":true},{"key":"Content-Type","value":"application/json","enabled":true},{"key":"Content-Length","value":"105","enabled":true},{"key":"Last-Modified","value":"Wed, 31 Jan 2024 13:33:29 GMT","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Etag","value":"12","enabled":true},{"key":"Vary","value":"If-None-Match, If-Modified-Since","enabled":true},{"key":"Access-Control-Allow-Headers","value":"Authorization,x-api-key","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"rt\": \"2024-01-31 13:33:29.620\",\n    \"p\": \"GBPUSD\",\n    \"tn\": \"SPT\",\n    \"m\": \"1.27011\",\n    \"ib\": 1,\n    \"ic\": 0,\n    \"in\": 0,\n    \"ix\": 0,\n    \"io\": 1\n}"}],"_postman_id":"170a27b7-0068-4407-99b0-afc2b9677a80"}],"id":"92ab5a9f-7ed5-448a-b8fe-19d9bfb36dfd","_postman_id":"92ab5a9f-7ed5-448a-b8fe-19d9bfb36dfd","description":"","auth":{"type":"basic","basic":{"password":"{{AUTH_PASSWORD}}","username":"{{AUTH_USERNAME}}"},"isInherited":true,"source":{"_postman_id":"b1d13f7e-7b84-4a49-bf52-3b3d14b0af5e","id":"b1d13f7e-7b84-4a49-bf52-3b3d14b0af5e","name":"🔐 Basic Authentication","type":"folder"}}}],"id":"b1d13f7e-7b84-4a49-bf52-3b3d14b0af5e","description":"<p><strong>Basic Authentication</strong> provides a simple and widely supported way to authenticate using a username and password. It is typically used in scripts or development tools.</p>\n<hr />\n<h3 id=\"how-it-works\">How It Works</h3>\n<p>To use Basic Auth:</p>\n<ul>\n<li><p>Concatenate your username and password with a colon (<code>:</code>), e.g., <code>username:password</code></p>\n</li>\n<li><p>Encode the result in <strong>Base64</strong></p>\n</li>\n<li><p>Add it to the <code>Authorization</code> header with the <code>Basic</code> scheme</p>\n</li>\n</ul>\n<hr />\n<h3 id=\"📘-example\">📘 Example</h3>\n<p><strong>Credentials:</strong></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>username: myuser\npassword: mypass\n\n</code></pre><p><strong>Base64-encoded:</strong></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>iniCopyEditbXl1c2VyOm15cGFzcw==\n\n</code></pre><p><strong>Request Header:</strong></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: {{vault:basic-auth}}\n\n</code></pre><hr />\n<h3 id=\"📘-example-api-request\">📘 Example API Request</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>GET /api/resource\nHost: api.example.com\nAuthorization: {{vault:basic-auth}}\n\n</code></pre><hr />\n<h3 id=\"⚠️-security-reminder\">⚠️ Security Reminder</h3>\n<ul>\n<li><p>Always use <strong>HTTPS</strong> when using Basic Authentication.</p>\n</li>\n<li><p>Avoid using Basic Auth in production where possible, unless protected by additional layers (e.g., IP restrictions, short TTL sessions).</p>\n</li>\n<li><p>Consider using OAuth 2.0 or API keys for long-term or production integrations.</p>\n</li>\n</ul>\n","auth":{"type":"basic","basic":{"password":"{{AUTH_PASSWORD}}","username":"{{AUTH_USERNAME}}"},"isInherited":false},"event":[{"listen":"prerequest","script":{"type":"text/javascript","packages":{},"exec":[""],"id":"4101614a-d192-4beb-934d-179c6a7f7c44"}},{"listen":"test","script":{"type":"text/javascript","packages":{},"exec":[""],"id":"05be34f6-2a42-4ee0-9e86-647fef973fa4"}}],"_postman_id":"b1d13f7e-7b84-4a49-bf52-3b3d14b0af5e"}],"id":"d38846c2-a68b-4957-a104-b7fa68019916","description":"<h3 id=\"🔐-authentication--authorization-overview\">🔐 Authentication &amp; Authorization Overview</h3>\n<p>Please refer to the <strong>Authentication and Authorization</strong> section in the <strong>Introduction</strong> for an overview of available authentication methods.</p>\n<p>This section provides the APIs used to interact with our <strong>OAuth 2.0 authentication platform</strong>.</p>\n<p><strong>Note:</strong> These authentication-related APIs <strong>do not require prior authentication</strong> themselves.</p>\n<h3 id=\"authentication-endpoint\">Authentication Endpoint:</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{{AUTH_ENDPOINT}}\n\n</code></pre><p>We support the following authentication methods:</p>\n<hr />\n<h4 id=\"1-oauth-20\">1. OAuth 2.0</h4>\n<p>OAuth 2.0 is our primary authentication mechanism. It is recommended for systems that:</p>\n<ul>\n<li><p>Can handle token-based authorization</p>\n</li>\n<li><p>Require secure, delegated access</p>\n</li>\n<li><p>Are automating interactions with our APIs</p>\n</li>\n</ul>\n<p>In some cases, OAuth 2.0 may not be practical — for example:</p>\n<ul>\n<li><p>Your system does not support OAuth 2.0</p>\n</li>\n<li><p>You do not intend to automate the authentication process</p>\n</li>\n</ul>\n<p>You can obtain an access token via the <code>/auth</code> endpoint using your client credentials.</p>\n<p>Once retrieved, include the token in your API requests using the <code>Authorization: Bearer</code> header.</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer &lt;access_token&gt;\n\n</code></pre><hr />\n<h4 id=\"2-api-keys\">2. API Keys</h4>\n<p>For systems that <strong>cannot support OAuth 2.0</strong> or where using OAuth is impractical (e.g., manual testing, legacy systems), you may request an <strong>API key</strong> from your account manager.</p>\n<ul>\n<li><p>API keys are tied to a specific account</p>\n</li>\n<li><p>They remain valid <strong>until the password for that account is changed</strong></p>\n</li>\n</ul>\n<p>You can authenticate using <strong>either</strong> of the following header formats:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Apikey &lt;your-api-key&gt;\n\n</code></pre><p>or</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>x-api-key: &lt;your-api-key&gt;\n\n</code></pre><p>See: 📘 <strong>Authenticating to an API &gt; API Request Using an API Key</strong></p>\n<hr />\n<h4 id=\"3-basic-authentication\">3. Basic Authentication</h4>\n<p>We also support <strong>Basic Authentication</strong> for certain endpoints or workflows, particularly where simplicity is preferred and security context allows.</p>\n<p>To use Basic Auth:</p>\n<ul>\n<li><p>Send your username and password encoded as base64</p>\n</li>\n<li><p>Include them in the <code>Authorization</code> header:</p>\n</li>\n</ul>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Basic &lt;base64(username:password)&gt;\n\n</code></pre><hr />\n<h3 id=\"🚨-important-notes\">🚨 Important Notes</h3>\n<ul>\n<li><p>All code samples in this <strong>Authentication</strong> section include proper authentication headers.</p>\n</li>\n<li><p>Most other examples in this documentation <strong>do not include authentication</strong> for brevity — but you <strong>must</strong> include valid authentication in real requests to receive a successful response.</p>\n</li>\n<li><p>Choose the authentication method that best suits your use case, security requirements, and system capabilities.</p>\n</li>\n</ul>\n","auth":{"type":"noauth","isInherited":false},"event":[{"listen":"prerequest","script":{"type":"text/javascript","exec":[""],"id":"905d2cfc-88bd-4d26-8669-a19f5b06e134"}},{"listen":"test","script":{"type":"text/javascript","exec":[""],"id":"4eba0edf-8d1b-4d6f-aee2-0a3aaf7a8e16"}}],"_postman_id":"d38846c2-a68b-4957-a104-b7fa68019916"},{"name":"API","item":[{"name":"FIAT","item":[{"name":"live","item":[{"name":"midrate","item":[{"name":"v1","item":[{"name":"rates (strict)","event":[{"listen":"prerequest","script":{"exec":[""],"type":"text/javascript","packages":{},"id":"db1e659f-a368-46be-a9f4-7682e2ff28cf"}}],"id":"8c1d1d77-5bf5-47de-a4b1-344fb38985fd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"body":{"mode":"urlencoded","urlencoded":[]},"url":"{{FIAT_API_ENDPOINT}}/live/midrate/v1/rates/:currencypair/:tenor/:deliverability/:type","description":"<p>This API will return the prevailing rate (now) for a selected currency pair. It is necessary to define the type (deliverability) and route (observed or crossed) when making a call (please see the introduction to this documentation for an explanation of why this is necessary).</p>\n<p><strong>NOTE:</strong> currencies must be submitted in a standard format, e.g. ‘EURUSD’.</p>\n<p>For accepted tenor values see <strong>Available fiat tenors</strong> in the general folder.</p>\n<p>Accepted <strong>type</strong> values: <strong>'D'</strong> (deliverable), <strong>'N'</strong> (non-deliverable)</p>\n<p>Accepted <strong>route</strong> values: <strong>'C'</strong> (crossed), <strong>'O'</strong> (observed)</p>\n<p>This API requires authentication, please see instructions in the API\\Authentication folder for how to add the additional necessary header to your request. If you would like to use this collection in Postman to request the data, please follow the instructions in the introduction to this documentation.</p>\n","auth":{"type":"oauth2","oauth2":{"refreshRequestParams":"<refresh-request-params>","password":"{{AUTH_PASSWORD}}","username":"{{AUTH_USERNAME}}","refreshTokenUrl":"<refresh-token-url>","accessTokenUrl":"<access-token-url>","grant_type":"<grant_type>","authUrl":"<auth-url>"},"isInherited":true,"source":{"_postman_id":"9ebb9928-d7bc-4f70-89b3-72c671248367","id":"9ebb9928-d7bc-4f70-89b3-72c671248367","name":"API","type":"folder"}},"urlObject":{"path":["live","midrate","v1","rates",":currencypair",":tenor",":deliverability",":type"],"host":["{{FIAT_API_ENDPOINT}}"],"query":[],"variable":[{"description":{"content":"<p>Required currency pair to convention e.g. \"GBPUSD\", \"USDBRL\", ...</p>\n","type":"text/plain"},"type":"any","value":"<currency pair>","key":"currencypair"},{"description":{"content":"<p>Required tenor e.g. \"SPT\", \"ON\", \"SN\", \"W1\", \"M1\", ...</p>\n","type":"text/plain"},"type":"any","value":"<tenor>","key":"tenor"},{"description":{"content":"<p>\"D\" (Deliverable) or \"N\" (NDF)</p>\n","type":"text/plain"},"type":"any","value":"<deliverability>","key":"deliverability"},{"description":{"content":"<p>\"C\" (Cross) or \"O\" (Observed)</p>\n","type":"text/plain"},"type":"any","value":"<type>","key":"type"}]}},"response":[{"id":"8ab3fb38-44fe-446c-9741-4496f5145ef5","name":"GBPUSD SPT Deliverable Observed","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{FIAT_API_ENDPOINT}}/live/midrate/v1/rates/:currencypair/:tenor/:deliverability/:type","host":["{{FIAT_API_ENDPOINT}}"],"path":["live","midrate","v1","rates",":currencypair",":tenor",":deliverability",":type"],"variable":[{"key":"currencypair","value":"GBPUSD","description":"Required currency pair to convention e.g. \"GBPUSD\", \"USDBRL\", ..."},{"key":"tenor","value":"SPT","description":"Required tenor e.g. \"SPT\", \"ON\", \"SN\", \"W1\", \"M1\", ..."},{"key":"deliverability","value":"D","description":"\"D\" (Deliverable) or \"N\" (NDF)"},{"key":"type","value":"O","description":"\"C\" (Cross) or \"O\" (Observed)"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"openresty","enabled":true},{"key":"Date","value":"Tue, 30 Jan 2024 17:21:38 GMT","enabled":true},{"key":"Content-Type","value":"application/json","enabled":true},{"key":"Content-Length","value":"105","enabled":true},{"key":"Last-Modified","value":"Tue, 30 Jan 2024 17:21:38 GMT","enabled":true},{"key":"Connection","value":"close","enabled":true},{"key":"Etag","value":"14","enabled":true},{"key":"Vary","value":"If-None-Match, If-Modified-Since","enabled":true},{"key":"Access-Control-Allow-Headers","value":"Authorization,x-api-key","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"rt\": \"2024-01-30 17:21:38.712\",\n    \"p\": \"GBPUSD\",\n    \"tn\": \"SPT\",\n    \"m\": \"1.26856\",\n    \"ib\": 1,\n    \"ic\": 0,\n    \"in\": 0,\n    \"ix\": 0,\n    \"io\": 1\n}"}],"_postman_id":"8c1d1d77-5bf5-47de-a4b1-344fb38985fd"},{"name":"rates (permissive)","event":[{"listen":"prerequest","script":{"exec":[""],"type":"text/javascript","packages":{},"id":"2b67d570-6721-49b4-b1f1-51f1126d133f"}}],"id":"85cd56d6-ab3a-4df4-b34d-6d972f182375","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"body":{"mode":"urlencoded","urlencoded":[]},"url":"{{FIAT_API_ENDPOINT}}/live/midrate/v1/rates/:currencypair/:tenor","description":"<p>This API will return the prevailing rate (now) for a selected currency pair. It is <strong>not</strong> necessary to define the type (deliverability) and route (observed or crossed) when making a call. Where more than one possibility exists for the requested currency pair, this API will return the most commonly requested one. This will give by preference:</p>\n<ul>\n<li><p>Directly Observed rates where available</p>\n</li>\n<li><p>NDF forwards where these exist and are larger markets than any onshore market.</p>\n</li>\n</ul>\n<p>The returned data will be decorated to fully describe the route and type.</p>\n<p>This API will also return data when the requested pair is out-of-convention in the order of the currencies (e.g. USDGBP instead of GBPUSD).</p>\n<p>This API requires authentication, please see instructions in the API\\Authentication folder for how to add the additional necessary header to your request. If you would like to use this collection in Postman to request the data, please follow the instructions in the introduction to this documentation.</p>\n","auth":{"type":"oauth2","oauth2":{"refreshRequestParams":"<refresh-request-params>","password":"{{AUTH_PASSWORD}}","username":"{{AUTH_USERNAME}}","refreshTokenUrl":"<refresh-token-url>","accessTokenUrl":"<access-token-url>","grant_type":"<grant_type>","authUrl":"<auth-url>"},"isInherited":true,"source":{"_postman_id":"9ebb9928-d7bc-4f70-89b3-72c671248367","id":"9ebb9928-d7bc-4f70-89b3-72c671248367","name":"API","type":"folder"}},"urlObject":{"path":["live","midrate","v1","rates",":currencypair",":tenor"],"host":["{{FIAT_API_ENDPOINT}}"],"query":[],"variable":[{"description":{"content":"<p>Required currency pair to convention e.g. \"GBPUSD\", \"USDBRL\", ...</p>\n","type":"text/plain"},"type":"any","value":"<currency pair>","key":"currencypair"},{"description":{"content":"<p>Required tenor e.g. \"SPT\", \"ON\", \"SN\", \"W1\", \"M1\", ...</p>\n","type":"text/plain"},"type":"any","value":"<tenor>","key":"tenor"}]}},"response":[{"id":"5f9bab7f-afb5-4e72-9c0d-72b8ba2691d8","name":"GBPUSD M1","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{FIAT_API_ENDPOINT}}/live/midrate/v1/rates/:currencypair/:tenor","host":["{{FIAT_API_ENDPOINT}}"],"path":["live","midrate","v1","rates",":currencypair",":tenor"],"variable":[{"key":"currencypair","value":"GBPUSD","description":"Required currency pair to convention e.g. \"GBPUSD\", \"USDBRL\", ..."},{"key":"tenor","value":"M1","description":"Required tenor e.g. \"SPT\", \"ON\", \"SN\", \"W1\", \"M1\", ..."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"openresty","enabled":true},{"key":"Date","value":"Thu, 22 Feb 2024 12:38:59 GMT","enabled":true},{"key":"Content-Type","value":"application/json;charset=UTF-8","enabled":true},{"key":"Transfer-Encoding","value":"chunked","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains","enabled":true},{"key":"X-Frame-Options","value":"DENY","enabled":true},{"key":"X-Content-Type-Options","value":"nosniff","enabled":true},{"key":"Access-Control-Allow-Credentials","value":"true","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"io\": 0,\n    \"m\": \"2.14920\",\n    \"p\": \"GBPUSD\",\n    \"tn\": \"M1\",\n    \"ix\": 0,\n    \"rt\": \"2024-02-22 12:38:56.509\",\n    \"in\": 0\n}"}],"_postman_id":"85cd56d6-ab3a-4df4-b34d-6d972f182375"}],"id":"8f9476fb-e428-4cda-bd0c-12c7affb393e","_postman_id":"8f9476fb-e428-4cda-bd0c-12c7affb393e","description":"","auth":{"type":"oauth2","oauth2":{"refreshRequestParams":"<refresh-request-params>","password":"{{AUTH_PASSWORD}}","username":"{{AUTH_USERNAME}}","refreshTokenUrl":"<refresh-token-url>","accessTokenUrl":"<access-token-url>","grant_type":"<grant_type>","authUrl":"<auth-url>"},"isInherited":true,"source":{"_postman_id":"9ebb9928-d7bc-4f70-89b3-72c671248367","id":"9ebb9928-d7bc-4f70-89b3-72c671248367","name":"API","type":"folder"}}}],"id":"b26f12a6-513c-4015-b347-1082b086af96","_postman_id":"b26f12a6-513c-4015-b347-1082b086af96","description":"","auth":{"type":"oauth2","oauth2":{"refreshRequestParams":"<refresh-request-params>","password":"{{AUTH_PASSWORD}}","username":"{{AUTH_USERNAME}}","refreshTokenUrl":"<refresh-token-url>","accessTokenUrl":"<access-token-url>","grant_type":"<grant_type>","authUrl":"<auth-url>"},"isInherited":true,"source":{"_postman_id":"9ebb9928-d7bc-4f70-89b3-72c671248367","id":"9ebb9928-d7bc-4f70-89b3-72c671248367","name":"API","type":"folder"}}},{"name":"optioncut","item":[{"name":"v1","item":[{"name":"rates","event":[{"listen":"prerequest","script":{"exec":[""],"type":"text/javascript","packages":{},"id":"704cc473-8daf-404f-855f-bdbfe207c282"}}],"id":"bfd86da5-6a1e-4633-81da-fafa82a6417c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"body":{"mode":"urlencoded","urlencoded":[]},"url":"{{FIAT_API_ENDPOINT}}/live/optioncut/v1/rates/:optioncutname","description":"<p>This API will return the last set of rates for a selected option cut.</p>\n<p>For accepted option cut names see the optioncut reference API in the general folder.</p>\n<p>This API requires authentication, please see instructions in the API\\Authentication folder for how to add the additional necessary header to your request. If you would like to use this collection in Postman to request the data, please follow the instructions in the introduction to this documentation.</p>\n","auth":{"type":"oauth2","oauth2":{"refreshRequestParams":"<refresh-request-params>","password":"{{AUTH_PASSWORD}}","username":"{{AUTH_USERNAME}}","refreshTokenUrl":"<refresh-token-url>","accessTokenUrl":"<access-token-url>","grant_type":"<grant_type>","authUrl":"<auth-url>"},"isInherited":true,"source":{"_postman_id":"9ebb9928-d7bc-4f70-89b3-72c671248367","id":"9ebb9928-d7bc-4f70-89b3-72c671248367","name":"API","type":"folder"}},"urlObject":{"path":["live","optioncut","v1","rates",":optioncutname"],"host":["{{FIAT_API_ENDPOINT}}"],"query":[],"variable":[{"description":{"content":"<p>Required name of the option cut (see reference API for values)</p>\n","type":"text/plain"},"type":"any","value":"","key":"optioncutname"}]}},"response":[{"id":"cb2c12ae-c588-4eb5-8c27-5bd464527081","name":"Tokyo3pm optioncut rate","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{FIAT_API_ENDPOINT}}/live/optioncut/v1/rates/:optioncutname","host":["{{FIAT_API_ENDPOINT}}"],"path":["live","optioncut","v1","rates",":optioncutname"],"variable":[{"key":"optioncutname","value":"Tokyo3pm","description":"Required name of the option cut"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"openresty","enabled":true},{"key":"Date","value":"Tue, 30 Jan 2024 17:22:39 GMT","enabled":true},{"key":"Content-Type","value":"application/json","enabled":true},{"key":"Content-Length","value":"3119","enabled":true},{"key":"Last-Modified","value":"Tue, 30 Jan 2024 16:18:54 GMT","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Etag","value":"1","enabled":true},{"key":"Vary","value":"If-None-Match, If-Modified-Since","enabled":true},{"key":"Access-Control-Allow-Headers","value":"Authorization,x-api-key","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"optionCutName\": \"Tokyo3pm\",\n    \"optionCutDate\": \"2024-01-23\",\n    \"rates\": [\n        {\n            \"rate\": 0.88937,\n            \"currencyPair\": \"AUDCAD\"\n        },\n        {\n            \"rate\": 0.57201,\n            \"currencyPair\": \"AUDCHF\"\n        },\n        {\n            \"rate\": 97.74,\n            \"currencyPair\": \"AUDJPY\"\n        },\n        {\n            \"rate\": 1.08237,\n            \"currencyPair\": \"AUDNZD\"\n        },\n        {\n            \"rate\": 0.88473,\n            \"currencyPair\": \"AUDSGD\"\n        },\n        {\n            \"rate\": 0.66075,\n            \"currencyPair\": \"AUDUSD\"\n        },\n        {\n            \"rate\": 0.64317,\n            \"currencyPair\": \"CADCHF\"\n        },\n        {\n            \"rate\": 109.898,\n            \"currencyPair\": \"CADJPY\"\n        },\n        {\n            \"rate\": 170.872,\n            \"currencyPair\": \"CHFJPY\"\n        },\n        {\n            \"rate\": 1.65069,\n            \"currencyPair\": \"EURAUD\"\n        },\n        {\n            \"rate\": 1.46807,\n            \"currencyPair\": \"EURCAD\"\n        },\n        {\n            \"rate\": 0.94422,\n            \"currencyPair\": \"EURCHF\"\n        },\n        {\n            \"rate\": 24.783,\n            \"currencyPair\": \"EURCZK\"\n        },\n        {\n            \"rate\": 0.85629,\n            \"currencyPair\": \"EURGBP\"\n        },\n        {\n            \"rate\": 161.341,\n            \"currencyPair\": \"EURJPY\"\n        },\n        {\n            \"rate\": 11.4324,\n            \"currencyPair\": \"EURNOK\"\n        },\n        {\n            \"rate\": 1.78671,\n            \"currencyPair\": \"EURNZD\"\n        },\n        {\n            \"rate\": 11.37002,\n            \"currencyPair\": \"EURSEK\"\n        },\n        {\n            \"rate\": 1.09069,\n            \"currencyPair\": \"EURUSD\"\n        },\n        {\n            \"rate\": 1.92771,\n            \"currencyPair\": \"GBPAUD\"\n        },\n        {\n            \"rate\": 1.71445,\n            \"currencyPair\": \"GBPCAD\"\n        },\n        {\n            \"rate\": 1.10268,\n            \"currencyPair\": \"GBPCHF\"\n        },\n        {\n            \"rate\": 188.415,\n            \"currencyPair\": \"GBPJPY\"\n        },\n        {\n            \"rate\": 1.27373,\n            \"currencyPair\": \"GBPUSD\"\n        },\n        {\n            \"rate\": 0.99458,\n            \"currencyPair\": \"NOKSEK\"\n        },\n        {\n            \"rate\": 90.3,\n            \"currencyPair\": \"NZDJPY\"\n        },\n        {\n            \"rate\": 0.61045,\n            \"currencyPair\": \"NZDUSD\"\n        },\n        {\n            \"rate\": 1.34603,\n            \"currencyPair\": \"USDCAD\"\n        },\n        {\n            \"rate\": 0.8657,\n            \"currencyPair\": \"USDCHF\"\n        },\n        {\n            \"rate\": 7.17006,\n            \"currencyPair\": \"USDCNH\"\n        },\n        {\n            \"rate\": 22.7233,\n            \"currencyPair\": \"USDCZK\"\n        },\n        {\n            \"rate\": 6.83747,\n            \"currencyPair\": \"USDDKK\"\n        },\n        {\n            \"rate\": 7.81855,\n            \"currencyPair\": \"USDHKD\"\n        },\n        {\n            \"rate\": 147.927,\n            \"currencyPair\": \"USDJPY\"\n        },\n        {\n            \"rate\": 10.48152,\n            \"currencyPair\": \"USDNOK\"\n        },\n        {\n            \"rate\": 10.42492,\n            \"currencyPair\": \"USDSEK\"\n        },\n        {\n            \"rate\": 1.339,\n            \"currencyPair\": \"USDSGD\"\n        },\n        {\n            \"rate\": 19.09937,\n            \"currencyPair\": \"USDZAR\"\n        },\n        {\n            \"rate\": 22.366,\n            \"currencyPair\": \"XAGUSD\"\n        },\n        {\n            \"rate\": 2030.89,\n            \"currencyPair\": \"XAUUSD\"\n        }\n    ],\n    \"cutsTimestamp\": {\n        \"AUDCAD\": \"2024-01-23 05:59:59.971\",\n        \"AUDCHF\": \"2024-01-23 05:59:59.971\",\n        \"AUDJPY\": \"2024-01-23 05:59:59.971\",\n        \"AUDNZD\": \"2024-01-23 05:59:59.971\",\n        \"AUDSGD\": \"2024-01-23 05:59:59.971\",\n        \"AUDUSD\": \"2024-01-23 05:59:59.971\",\n        \"CADCHF\": \"2024-01-23 05:59:59.971\",\n        \"CADJPY\": \"2024-01-23 05:59:59.971\",\n        \"CHFJPY\": \"2024-01-23 05:59:59.971\",\n        \"EURAUD\": \"2024-01-23 05:59:59.971\",\n        \"EURCAD\": \"2024-01-23 05:59:59.971\",\n        \"EURCHF\": \"2024-01-23 05:59:59.971\",\n        \"EURCZK\": \"2024-01-23 05:59:59.971\",\n        \"EURGBP\": \"2024-01-23 05:59:59.971\",\n        \"EURJPY\": \"2024-01-23 05:59:59.971\",\n        \"EURNOK\": \"2024-01-23 05:59:59.971\",\n        \"EURNZD\": \"2024-01-23 05:59:59.971\",\n        \"EURSEK\": \"2024-01-23 05:59:59.971\",\n        \"EURUSD\": \"2024-01-23 05:59:59.971\",\n        \"GBPAUD\": \"2024-01-23 05:59:59.971\",\n        \"GBPCAD\": \"2024-01-23 05:59:59.971\",\n        \"GBPCHF\": \"2024-01-23 05:59:59.971\",\n        \"GBPJPY\": \"2024-01-23 05:59:59.971\",\n        \"GBPUSD\": \"2024-01-23 05:59:59.971\",\n        \"NOKSEK\": \"2024-01-23 05:59:59.971\",\n        \"NZDJPY\": \"2024-01-23 05:59:59.971\",\n        \"NZDUSD\": \"2024-01-23 05:59:59.971\",\n        \"USDCAD\": \"2024-01-23 05:59:59.971\",\n        \"USDCHF\": \"2024-01-23 05:59:59.971\",\n        \"USDCNH\": \"2024-01-23 05:59:59.971\",\n        \"USDCZK\": \"2024-01-23 05:59:59.971\",\n        \"USDDKK\": \"2024-01-23 05:59:59.971\",\n        \"USDHKD\": \"2024-01-23 05:59:59.971\",\n        \"USDJPY\": \"2024-01-23 05:59:59.971\",\n        \"USDNOK\": \"2024-01-23 05:59:59.971\",\n        \"USDSEK\": \"2024-01-23 05:59:59.971\",\n        \"USDSGD\": \"2024-01-23 05:59:59.971\",\n        \"USDZAR\": \"2024-01-23 05:59:59.971\",\n        \"XAGUSD\": \"2024-01-23 05:59:59.971\",\n        \"XAUUSD\": \"2024-01-23 05:59:59.971\"\n    }\n}"}],"_postman_id":"bfd86da5-6a1e-4633-81da-fafa82a6417c"}],"id":"a9f808f0-c6ce-4026-b85c-5fdd668fec06","_postman_id":"a9f808f0-c6ce-4026-b85c-5fdd668fec06","description":"","auth":{"type":"oauth2","oauth2":{"refreshRequestParams":"<refresh-request-params>","password":"{{AUTH_PASSWORD}}","username":"{{AUTH_USERNAME}}","refreshTokenUrl":"<refresh-token-url>","accessTokenUrl":"<access-token-url>","grant_type":"<grant_type>","authUrl":"<auth-url>"},"isInherited":true,"source":{"_postman_id":"9ebb9928-d7bc-4f70-89b3-72c671248367","id":"9ebb9928-d7bc-4f70-89b3-72c671248367","name":"API","type":"folder"}}}],"id":"3c865202-21f6-4d00-a109-fd18aeac11de","_postman_id":"3c865202-21f6-4d00-a109-fd18aeac11de","description":"","auth":{"type":"oauth2","oauth2":{"refreshRequestParams":"<refresh-request-params>","password":"{{AUTH_PASSWORD}}","username":"{{AUTH_USERNAME}}","refreshTokenUrl":"<refresh-token-url>","accessTokenUrl":"<access-token-url>","grant_type":"<grant_type>","authUrl":"<auth-url>"},"isInherited":true,"source":{"_postman_id":"9ebb9928-d7bc-4f70-89b3-72c671248367","id":"9ebb9928-d7bc-4f70-89b3-72c671248367","name":"API","type":"folder"}}},{"name":"eexcut","item":[{"name":"v1","item":[{"name":"rates","event":[{"listen":"prerequest","script":{"exec":[""],"type":"text/javascript","packages":{},"id":"3d0d22da-0257-4804-afd6-f68a4a0e3001"}}],"id":"b7902a58-4b6f-44cc-9271-cca3efcbe7a6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"body":{"mode":"urlencoded","urlencoded":[]},"url":"{{FIAT_API_ENDPOINT}}/live/eexcut/v1/rates/:eexcutname","description":"<p>This API will return the last set of rates for a selected cut.</p>\n<p>This API requires authentication, please see instructions in the API\\Authentication folder for how to add the additional necessary header to your request. If you would like to use this collection in Postman to request the data, please follow the instructions in the introduction to this documentation.</p>\n","auth":{"type":"oauth2","oauth2":{"refreshRequestParams":"<refresh-request-params>","password":"{{AUTH_PASSWORD}}","username":"{{AUTH_USERNAME}}","refreshTokenUrl":"<refresh-token-url>","accessTokenUrl":"<access-token-url>","grant_type":"<grant_type>","authUrl":"<auth-url>"},"isInherited":true,"source":{"_postman_id":"9ebb9928-d7bc-4f70-89b3-72c671248367","id":"9ebb9928-d7bc-4f70-89b3-72c671248367","name":"API","type":"folder"}},"urlObject":{"path":["live","eexcut","v1","rates",":eexcutname"],"host":["{{FIAT_API_ENDPOINT}}"],"query":[],"variable":[{"description":{"content":"<p>Required name of eexcut ( e.g. ncfxeurusd5pmparisleipzig )</p>\n","type":"text/plain"},"type":"any","value":"<eexcutname>","key":"eexcutname"}]}},"response":[{"id":"056b167c-81d6-4b69-91a7-4292d783e690","name":"ncfxeurusd5pmparisleipzig","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{FIAT_API_ENDPOINT}}/live/eexcut/v1/rates/:eexcutname","host":["{{FIAT_API_ENDPOINT}}"],"path":["live","eexcut","v1","rates",":eexcutname"],"variable":[{"key":"eexcutname","value":"<eexcutname>","description":"Required name of eexcut ( e.g. ncfxeurusd5pmparisleipzig )"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"openresty","enabled":true},{"key":"Date","value":"Tue, 20 May 2025 15:54:57 GMT","enabled":true},{"key":"Content-Type","value":"application/json","enabled":true},{"key":"Content-Length","value":"5269","enabled":true},{"key":"Last-Modified","value":"Tue, 20 May 2025 15:00:00 GMT","enabled":true},{"key":"Connection","value":"close","enabled":true},{"key":"Etag","value":"0","enabled":true},{"key":"Vary","value":"If-None-Match, If-Modified-Since","enabled":true},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains","enabled":true},{"key":"X-Frame-Options","value":"DENY","enabled":true},{"key":"X-Content-Type-Options","value":"nosniff","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"fixId\": \"ncfxeurusd5pmparisleipzig\",\n    \"tradeDate\": \"2025-05-20\",\n    \"currencyPair\": \"EURUSD\",\n    \"ttfExpiry\": [\n        {\n            \"expiryMonth\": \"SPOT\",\n            \"expiryDate\": \"\",\n            \"rate\": \"1.126850\"\n        },\n        {\n            \"expiryMonth\": \"Jun-2025\",\n            \"expiryDate\": \"2025-05-29\",\n            \"rate\": \"1.126850\"\n        },\n        {\n            \"expiryMonth\": \"Jul-2025\",\n            \"expiryDate\": \"2025-06-27\",\n            \"rate\": \"1.129420\"\n        },\n        {\n            \"expiryMonth\": \"Aug-2025\",\n            \"expiryDate\": \"2025-07-30\",\n            \"rate\": \"1.131902\"\n        },\n        {\n            \"expiryMonth\": \"Sep-2025\",\n            \"expiryDate\": \"2025-08-28\",\n            \"rate\": \"1.134112\"\n        },\n        {\n            \"expiryMonth\": \"Oct-2025\",\n            \"expiryDate\": \"2025-09-29\",\n            \"rate\": \"1.136557\"\n        },\n        {\n            \"expiryMonth\": \"Nov-2025\",\n            \"expiryDate\": \"2025-10-30\",\n            \"rate\": \"1.138929\"\n        },\n        {\n            \"expiryMonth\": \"Dec-2025\",\n            \"expiryDate\": \"2025-11-27\",\n            \"rate\": \"1.140983\"\n        },\n        {\n            \"expiryMonth\": \"Jan-2026\",\n            \"expiryDate\": \"2025-12-30\",\n            \"rate\": \"1.143327\"\n        },\n        {\n            \"expiryMonth\": \"Feb-2026\",\n            \"expiryDate\": \"2026-01-29\",\n            \"rate\": \"1.145599\"\n        },\n        {\n            \"expiryMonth\": \"Mar-2026\",\n            \"expiryDate\": \"2026-02-26\",\n            \"rate\": \"1.147483\"\n        },\n        {\n            \"expiryMonth\": \"Apr-2026\",\n            \"expiryDate\": \"2026-03-30\",\n            \"rate\": \"1.149613\"\n        },\n        {\n            \"expiryMonth\": \"May-2026\",\n            \"expiryDate\": \"2026-04-29\",\n            \"rate\": \"1.151552\"\n        },\n        {\n            \"expiryMonth\": \"Jun-2026\",\n            \"expiryDate\": \"2026-05-28\",\n            \"rate\": \"1.153328\"\n        },\n        {\n            \"expiryMonth\": \"Jul-2026\",\n            \"expiryDate\": \"2026-06-29\",\n            \"rate\": \"1.155222\"\n        },\n        {\n            \"expiryMonth\": \"Aug-2026\",\n            \"expiryDate\": \"2026-07-30\",\n            \"rate\": \"1.157057\"\n        },\n        {\n            \"expiryMonth\": \"Sep-2026\",\n            \"expiryDate\": \"2026-08-28\",\n            \"rate\": \"1.158757\"\n        },\n        {\n            \"expiryMonth\": \"Oct-2026\",\n            \"expiryDate\": \"2026-09-29\",\n            \"rate\": \"1.160514\"\n        },\n        {\n            \"expiryMonth\": \"Nov-2026\",\n            \"expiryDate\": \"2026-10-29\",\n            \"rate\": \"1.162161\"\n        },\n        {\n            \"expiryMonth\": \"Dec-2026\",\n            \"expiryDate\": \"2026-11-27\",\n            \"rate\": \"1.163744\"\n        },\n        {\n            \"expiryMonth\": \"Jan-2027\",\n            \"expiryDate\": \"2026-12-30\",\n            \"rate\": \"1.165478\"\n        },\n        {\n            \"expiryMonth\": \"Feb-2027\",\n            \"expiryDate\": \"2027-01-28\",\n            \"rate\": \"1.167001\"\n        },\n        {\n            \"expiryMonth\": \"Mar-2027\",\n            \"expiryDate\": \"2027-02-25\",\n            \"rate\": \"1.168463\"\n        },\n        {\n            \"expiryMonth\": \"Apr-2027\",\n            \"expiryDate\": \"2027-03-30\",\n            \"rate\": \"1.170095\"\n        },\n        {\n            \"expiryMonth\": \"May-2027\",\n            \"expiryDate\": \"2027-04-29\",\n            \"rate\": \"1.171580\"\n        },\n        {\n            \"expiryMonth\": \"Jun-2027\",\n            \"expiryDate\": \"2027-05-28\",\n            \"rate\": \"1.173009\"\n        },\n        {\n            \"expiryMonth\": \"Jul-2027\",\n            \"expiryDate\": \"2027-06-29\",\n            \"rate\": \"1.174551\"\n        },\n        {\n            \"expiryMonth\": \"Aug-2027\",\n            \"expiryDate\": \"2027-07-29\",\n            \"rate\": \"1.175996\"\n        },\n        {\n            \"expiryMonth\": \"Sep-2027\",\n            \"expiryDate\": \"2027-08-30\",\n            \"rate\": \"1.177538\"\n        },\n        {\n            \"expiryMonth\": \"Oct-2027\",\n            \"expiryDate\": \"2027-09-29\",\n            \"rate\": \"1.178983\"\n        },\n        {\n            \"expiryMonth\": \"Nov-2027\",\n            \"expiryDate\": \"2027-10-28\",\n            \"rate\": \"1.180381\"\n        },\n        {\n            \"expiryMonth\": \"Dec-2027\",\n            \"expiryDate\": \"2027-11-29\",\n            \"rate\": \"1.181922\"\n        },\n        {\n            \"expiryMonth\": \"Jan-2028\",\n            \"expiryDate\": \"2027-12-30\",\n            \"rate\": \"1.183416\"\n        },\n        {\n            \"expiryMonth\": \"Feb-2028\",\n            \"expiryDate\": \"2028-01-28\",\n            \"rate\": \"1.184813\"\n        },\n        {\n            \"expiryMonth\": \"Mar-2028\",\n            \"expiryDate\": \"2028-02-28\",\n            \"rate\": \"1.186307\"\n        },\n        {\n            \"expiryMonth\": \"Apr-2028\",\n            \"expiryDate\": \"2028-03-30\",\n            \"rate\": \"1.187800\"\n        },\n        {\n            \"expiryMonth\": \"May-2028\",\n            \"expiryDate\": \"2028-04-27\",\n            \"rate\": \"1.189150\"\n        },\n        {\n            \"expiryMonth\": \"Jun-2028\",\n            \"expiryDate\": \"2028-05-30\",\n            \"rate\": \"1.190731\"\n        },\n        {\n            \"expiryMonth\": \"Jul-2028\",\n            \"expiryDate\": \"2028-06-29\",\n            \"rate\": \"1.192145\"\n        },\n        {\n            \"expiryMonth\": \"Aug-2028\",\n            \"expiryDate\": \"2028-07-28\",\n            \"rate\": \"1.193512\"\n        },\n        {\n            \"expiryMonth\": \"Sep-2028\",\n            \"expiryDate\": \"2028-08-30\",\n            \"rate\": \"1.195067\"\n        },\n        {\n            \"expiryMonth\": \"Oct-2028\",\n            \"expiryDate\": \"2028-09-28\",\n            \"rate\": \"1.196433\"\n        },\n        {\n            \"expiryMonth\": \"Nov-2028\",\n            \"expiryDate\": \"2028-10-30\",\n            \"rate\": \"1.197942\"\n        },\n        {\n            \"expiryMonth\": \"Dec-2028\",\n            \"expiryDate\": \"2028-11-29\",\n            \"rate\": \"1.199355\"\n        },\n        {\n            \"expiryMonth\": \"Jan-2029\",\n            \"expiryDate\": \"2028-12-28\",\n            \"rate\": \"1.200722\"\n        },\n        {\n            \"expiryMonth\": \"Feb-2029\",\n            \"expiryDate\": \"2029-01-30\",\n            \"rate\": \"1.202277\"\n        },\n        {\n            \"expiryMonth\": \"Mar-2029\",\n            \"expiryDate\": \"2029-02-27\",\n            \"rate\": \"1.203597\"\n        },\n        {\n            \"expiryMonth\": \"Apr-2029\",\n            \"expiryDate\": \"2029-03-28\",\n            \"rate\": \"1.204964\"\n        },\n        {\n            \"expiryMonth\": \"May-2029\",\n            \"expiryDate\": \"2029-04-27\",\n            \"rate\": \"1.206377\"\n        },\n        {\n            \"expiryMonth\": \"Jun-2029\",\n            \"expiryDate\": \"2029-05-30\",\n            \"rate\": \"1.207939\"\n        },\n        {\n            \"expiryMonth\": \"Jul-2029\",\n            \"expiryDate\": \"2029-06-28\",\n            \"rate\": \"1.209330\"\n        },\n        {\n            \"expiryMonth\": \"Aug-2029\",\n            \"expiryDate\": \"2029-07-30\",\n            \"rate\": \"1.210864\"\n        },\n        {\n            \"expiryMonth\": \"Sep-2029\",\n            \"expiryDate\": \"2029-08-30\",\n            \"rate\": \"1.212350\"\n        },\n        {\n            \"expiryMonth\": \"Oct-2029\",\n            \"expiryDate\": \"2029-09-27\",\n            \"rate\": \"1.213692\"\n        },\n        {\n            \"expiryMonth\": \"Nov-2029\",\n            \"expiryDate\": \"2029-10-30\",\n            \"rate\": \"1.215275\"\n        },\n        {\n            \"expiryMonth\": \"Dec-2029\",\n            \"expiryDate\": \"2029-11-29\",\n            \"rate\": \"1.216713\"\n        },\n        {\n            \"expiryMonth\": \"Jan-2030\",\n            \"expiryDate\": \"2029-12-28\",\n            \"rate\": \"1.218103\"\n        },\n        {\n            \"expiryMonth\": \"Feb-2030\",\n            \"expiryDate\": \"2030-01-30\",\n            \"rate\": \"1.219686\"\n        },\n        {\n            \"expiryMonth\": \"Mar-2030\",\n            \"expiryDate\": \"2030-02-27\",\n            \"rate\": \"1.221028\"\n        },\n        {\n            \"expiryMonth\": \"Apr-2030\",\n            \"expiryDate\": \"2030-03-28\",\n            \"rate\": \"1.222418\"\n        },\n        {\n            \"expiryMonth\": \"May-2030\",\n            \"expiryDate\": \"2030-04-29\",\n            \"rate\": \"1.223953\"\n        },\n        {\n            \"expiryMonth\": \"Jun-2030\",\n            \"expiryDate\": \"2030-05-30\",\n            \"rate\": \"1.225439\"\n        },\n        {\n            \"expiryMonth\": \"Jul-2030\",\n            \"expiryDate\": \"2030-06-27\",\n            \"rate\": \"1.226781\"\n        },\n        {\n            \"expiryMonth\": \"Aug-2030\",\n            \"expiryDate\": \"2030-07-30\",\n            \"rate\": \"1.228363\"\n        },\n        {\n            \"expiryMonth\": \"Sep-2030\",\n            \"expiryDate\": \"2030-08-29\",\n            \"rate\": \"1.229802\"\n        },\n        {\n            \"expiryMonth\": \"Oct-2030\",\n            \"expiryDate\": \"2030-09-27\",\n            \"rate\": \"1.231192\"\n        },\n        {\n            \"expiryMonth\": \"Nov-2030\",\n            \"expiryDate\": \"2030-10-30\",\n            \"rate\": \"1.232774\"\n        },\n        {\n            \"expiryMonth\": \"Dec-2030\",\n            \"expiryDate\": \"2030-11-28\",\n            \"rate\": \"1.234165\"\n        },\n        {\n            \"expiryMonth\": \"Jan-2031\",\n            \"expiryDate\": \"2030-12-30\",\n            \"rate\": \"1.235699\"\n        },\n        {\n            \"expiryMonth\": \"Feb-2031\",\n            \"expiryDate\": \"2031-01-30\",\n            \"rate\": \"1.237185\"\n        },\n        {\n            \"expiryMonth\": \"Mar-2031\",\n            \"expiryDate\": \"2031-02-27\",\n            \"rate\": \"1.238528\"\n        },\n        {\n            \"expiryMonth\": \"Apr-2031\",\n            \"expiryDate\": \"2031-03-28\",\n            \"rate\": \"1.239918\"\n        },\n        {\n            \"expiryMonth\": \"May-2031\",\n            \"expiryDate\": \"2031-04-29\",\n            \"rate\": \"1.241452\"\n        }\n    ]\n}"}],"_postman_id":"b7902a58-4b6f-44cc-9271-cca3efcbe7a6"}],"id":"7aac85a6-408b-40d0-ab35-6303568033b9","_postman_id":"7aac85a6-408b-40d0-ab35-6303568033b9","description":"","auth":{"type":"oauth2","oauth2":{"refreshRequestParams":"<refresh-request-params>","password":"{{AUTH_PASSWORD}}","username":"{{AUTH_USERNAME}}","refreshTokenUrl":"<refresh-token-url>","accessTokenUrl":"<access-token-url>","grant_type":"<grant_type>","authUrl":"<auth-url>"},"isInherited":true,"source":{"_postman_id":"9ebb9928-d7bc-4f70-89b3-72c671248367","id":"9ebb9928-d7bc-4f70-89b3-72c671248367","name":"API","type":"folder"}}}],"id":"488b50af-48e8-4673-a7cd-31018f6368f4","_postman_id":"488b50af-48e8-4673-a7cd-31018f6368f4","description":"","auth":{"type":"oauth2","oauth2":{"refreshRequestParams":"<refresh-request-params>","password":"{{AUTH_PASSWORD}}","username":"{{AUTH_USERNAME}}","refreshTokenUrl":"<refresh-token-url>","accessTokenUrl":"<access-token-url>","grant_type":"<grant_type>","authUrl":"<auth-url>"},"isInherited":true,"source":{"_postman_id":"9ebb9928-d7bc-4f70-89b3-72c671248367","id":"9ebb9928-d7bc-4f70-89b3-72c671248367","name":"API","type":"folder"}}},{"name":"forwards365","item":[{"name":"v1","item":[{"name":"rates","event":[{"listen":"prerequest","script":{"exec":[""],"type":"text/javascript","packages":{},"id":"26ac238f-f03c-43cd-9672-f5352e1abc89"}}],"id":"67a37945-a94d-4382-9e78-0005ae0bd9c2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"body":{"mode":"urlencoded","urlencoded":[]},"url":"{{FIAT_API_ENDPOINT}}/live/fwdcurve/v1/rates/:currencypair/:deliverability/:type","description":"<p>This API will return the prevailing forward rates from today until the 1 year tenor for a selected currency pair. Data is returned in convention (see fiat reference API) as forward points from spot.<br />NOTE: currencies must be submitted in a standard format, e.g. ‘EURUSD’.</p>\n<p>This API requires authentication, please see instructions in the API\\Authentication folder for how to add the additional necessary header to your request. If you would like to use this collection in Postman to request the data, please follow the instructions in the introduction to this documentation.</p>\n","auth":{"type":"oauth2","oauth2":{"refreshRequestParams":"<refresh-request-params>","password":"{{AUTH_PASSWORD}}","username":"{{AUTH_USERNAME}}","refreshTokenUrl":"<refresh-token-url>","accessTokenUrl":"<access-token-url>","grant_type":"<grant_type>","authUrl":"<auth-url>"},"isInherited":true,"source":{"_postman_id":"9ebb9928-d7bc-4f70-89b3-72c671248367","id":"9ebb9928-d7bc-4f70-89b3-72c671248367","name":"API","type":"folder"}},"urlObject":{"path":["live","fwdcurve","v1","rates",":currencypair",":deliverability",":type"],"host":["{{FIAT_API_ENDPOINT}}"],"query":[],"variable":[{"description":{"content":"<p>Required currency pair</p>\n","type":"text/plain"},"type":"any","value":"<currency pair>","key":"currencypair"},{"description":{"content":"<p>Deliverable 'D' or NDF 'N'</p>\n","type":"text/plain"},"type":"any","value":"<deliverability>","key":"deliverability"},{"description":{"content":"<p>Observed 'O' or Crossed 'C'</p>\n","type":"text/plain"},"type":"any","value":"<type>","key":"type"}]}},"response":[{"id":"22c9549a-64e7-45d4-a488-3280fb23badb","name":"GBPUSD Deliverable Observed rate","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{FIAT_API_ENDPOINT}}/live/fwdcurve/v1/rates/:currencypair/:deliverability/:type","host":["{{FIAT_API_ENDPOINT}}"],"path":["live","fwdcurve","v1","rates",":currencypair",":deliverability",":type"],"variable":[{"key":"currencypair","value":"GBPUSD","description":"Required currency pair"},{"key":"deliverability","value":"D","description":"Deliverable 'D' or NDF 'N'"},{"key":"type","value":"O","description":"Observed 'O' or Crossed 'C'"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"openresty","enabled":true},{"key":"Date","value":"Tue, 30 Jan 2024 17:24:15 GMT","enabled":true},{"key":"Content-Type","value":"application/json","enabled":true},{"key":"Content-Length","value":"22532","enabled":true},{"key":"Last-Modified","value":"Tue, 30 Jan 2024 17:24:09 GMT","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Etag","value":"0","enabled":true},{"key":"Vary","value":"If-None-Match, If-Modified-Since","enabled":true},{"key":"Access-Control-Allow-Headers","value":"Authorization,x-api-key","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"rateTimestamp\": \"2024-01-30 17:24:08.498\",\n    \"pair\": \"GBPUSD\",\n    \"isNDF\": false,\n    \"isOutright\": false,\n    \"rates\": [\n        {\n            \"date\": \"2024-01-30\",\n            \"mid\": \"-0.00001658\",\n            \"ppd\": null\n        },\n        {\n            \"date\": \"2024-01-31\",\n            \"mid\": \"-0.00000887\",\n            \"ppd\": \"0.00000771\"\n        },\n        {\n            \"date\": \"2024-02-01\",\n            \"mid\": \"0.00000000\",\n            \"ppd\": \"0.00000887\"\n        },\n        {\n            \"date\": \"2024-02-02\",\n            \"mid\": \"0.00000794\",\n            \"ppd\": \"0.00000794\"\n        },\n        {\n            \"date\": \"2024-02-03\",\n            \"mid\": \"0.00001554\",\n            \"ppd\": \"0.00000760\"\n        },\n        {\n            \"date\": \"2024-02-04\",\n            \"mid\": \"0.00002314\",\n            \"ppd\": \"0.00000760\"\n        },\n        {\n            \"date\": \"2024-02-05\",\n            \"mid\": \"0.00003074\",\n            \"ppd\": \"0.00000760\"\n        },\n        {\n            \"date\": \"2024-02-06\",\n            \"mid\": \"0.00003834\",\n            \"ppd\": \"0.00000760\"\n        },\n        {\n            \"date\": \"2024-02-07\",\n            \"mid\": \"0.00004593\",\n            \"ppd\": \"0.00000759\"\n        },\n        {\n            \"date\": \"2024-02-08\",\n            \"mid\": \"0.00005352\",\n            \"ppd\": \"0.00000759\"\n        },\n        {\n            \"date\": \"2024-02-09\",\n            \"mid\": \"0.00006117\",\n            \"ppd\": \"0.00000765\"\n        },\n        {\n            \"date\": \"2024-02-10\",\n            \"mid\": \"0.00006883\",\n            \"ppd\": \"0.00000765\"\n        },\n        {\n            \"date\": \"2024-02-11\",\n            \"mid\": \"0.00007647\",\n            \"ppd\": \"0.00000765\"\n        },\n        {\n            \"date\": \"2024-02-12\",\n            \"mid\": \"0.00008412\",\n            \"ppd\": \"0.00000765\"\n        },\n        {\n            \"date\": \"2024-02-13\",\n            \"mid\": \"0.00009177\",\n            \"ppd\": \"0.00000764\"\n        },\n        {\n            \"date\": \"2024-02-14\",\n            \"mid\": \"0.00009941\",\n            \"ppd\": \"0.00000764\"\n        },\n        {\n            \"date\": \"2024-02-15\",\n            \"mid\": \"0.00010705\",\n            \"ppd\": \"0.00000764\"\n        },\n        {\n            \"date\": \"2024-02-16\",\n            \"mid\": \"0.00011477\",\n            \"ppd\": \"0.00000772\"\n        },\n        {\n            \"date\": \"2024-02-17\",\n            \"mid\": \"0.00012248\",\n            \"ppd\": \"0.00000771\"\n        },\n        {\n            \"date\": \"2024-02-18\",\n            \"mid\": \"0.00013019\",\n            \"ppd\": \"0.00000771\"\n        },\n        {\n            \"date\": \"2024-02-19\",\n            \"mid\": \"0.00013790\",\n            \"ppd\": \"0.00000771\"\n        },\n        {\n            \"date\": \"2024-02-20\",\n            \"mid\": \"0.00014560\",\n            \"ppd\": \"0.00000771\"\n        },\n        {\n            \"date\": \"2024-02-21\",\n            \"mid\": \"0.00015331\",\n            \"ppd\": \"0.00000770\"\n        },\n        {\n            \"date\": \"2024-02-22\",\n            \"mid\": \"0.00016101\",\n            \"ppd\": \"0.00000770\"\n        },\n        {\n            \"date\": \"2024-02-23\",\n            \"mid\": \"0.00016876\",\n            \"ppd\": \"0.00000775\"\n        },\n        {\n            \"date\": \"2024-02-24\",\n            \"mid\": \"0.00017651\",\n            \"ppd\": \"0.00000775\"\n        },\n        {\n            \"date\": \"2024-02-25\",\n            \"mid\": \"0.00018425\",\n            \"ppd\": \"0.00000775\"\n        },\n        {\n            \"date\": \"2024-02-26\",\n            \"mid\": \"0.00019200\",\n            \"ppd\": \"0.00000774\"\n        },\n        {\n            \"date\": \"2024-02-27\",\n            \"mid\": \"0.00019974\",\n            \"ppd\": \"0.00000774\"\n        },\n        {\n            \"date\": \"2024-02-28\",\n            \"mid\": \"0.00020748\",\n            \"ppd\": \"0.00000774\"\n        },\n        {\n            \"date\": \"2024-02-29\",\n            \"mid\": \"0.00021522\",\n            \"ppd\": \"0.00000774\"\n        },\n        {\n            \"date\": \"2024-03-01\",\n            \"mid\": \"0.00022295\",\n            \"ppd\": \"0.00000773\"\n        },\n        {\n            \"date\": \"2024-03-02\",\n            \"mid\": \"0.00023109\",\n            \"ppd\": \"0.00000814\"\n        },\n        {\n            \"date\": \"2024-03-03\",\n            \"mid\": \"0.00023922\",\n            \"ppd\": \"0.00000813\"\n        },\n        {\n            \"date\": \"2024-03-04\",\n            \"mid\": \"0.00024735\",\n            \"ppd\": \"0.00000813\"\n        },\n        {\n            \"date\": \"2024-03-05\",\n            \"mid\": \"0.00025548\",\n            \"ppd\": \"0.00000813\"\n        },\n        {\n            \"date\": \"2024-03-06\",\n            \"mid\": \"0.00026361\",\n            \"ppd\": \"0.00000813\"\n        },\n        {\n            \"date\": \"2024-03-07\",\n            \"mid\": \"0.00027173\",\n            \"ppd\": \"0.00000812\"\n        },\n        {\n            \"date\": \"2024-03-08\",\n            \"mid\": \"0.00027986\",\n            \"ppd\": \"0.00000812\"\n        },\n        {\n            \"date\": \"2024-03-09\",\n            \"mid\": \"0.00028798\",\n            \"ppd\": \"0.00000812\"\n        },\n        {\n            \"date\": \"2024-03-10\",\n            \"mid\": \"0.00029610\",\n            \"ppd\": \"0.00000812\"\n        },\n        {\n            \"date\": \"2024-03-11\",\n            \"mid\": \"0.00030421\",\n            \"ppd\": \"0.00000812\"\n        },\n        {\n            \"date\": \"2024-03-12\",\n            \"mid\": \"0.00031232\",\n            \"ppd\": \"0.00000811\"\n        },\n        {\n            \"date\": \"2024-03-13\",\n            \"mid\": \"0.00032044\",\n            \"ppd\": \"0.00000811\"\n        },\n        {\n            \"date\": \"2024-03-14\",\n            \"mid\": \"0.00032854\",\n            \"ppd\": \"0.00000811\"\n        },\n        {\n            \"date\": \"2024-03-15\",\n            \"mid\": \"0.00033665\",\n            \"ppd\": \"0.00000811\"\n        },\n        {\n            \"date\": \"2024-03-16\",\n            \"mid\": \"0.00034476\",\n            \"ppd\": \"0.00000810\"\n        },\n        {\n            \"date\": \"2024-03-17\",\n            \"mid\": \"0.00035286\",\n            \"ppd\": \"0.00000810\"\n        },\n        {\n            \"date\": \"2024-03-18\",\n            \"mid\": \"0.00036096\",\n            \"ppd\": \"0.00000810\"\n        },\n        {\n            \"date\": \"2024-03-19\",\n            \"mid\": \"0.00036905\",\n            \"ppd\": \"0.00000810\"\n        },\n        {\n            \"date\": \"2024-03-20\",\n            \"mid\": \"0.00037715\",\n            \"ppd\": \"0.00000810\"\n        },\n        {\n            \"date\": \"2024-03-21\",\n            \"mid\": \"0.00038524\",\n            \"ppd\": \"0.00000809\"\n        },\n        {\n            \"date\": \"2024-03-22\",\n            \"mid\": \"0.00039147\",\n            \"ppd\": \"0.00000623\"\n        },\n        {\n            \"date\": \"2024-03-23\",\n            \"mid\": \"0.00039690\",\n            \"ppd\": \"0.00000543\"\n        },\n        {\n            \"date\": \"2024-03-24\",\n            \"mid\": \"0.00040233\",\n            \"ppd\": \"0.00000543\"\n        },\n        {\n            \"date\": \"2024-03-25\",\n            \"mid\": \"0.00040776\",\n            \"ppd\": \"0.00000543\"\n        },\n        {\n            \"date\": \"2024-03-26\",\n            \"mid\": \"0.00041319\",\n            \"ppd\": \"0.00000543\"\n        },\n        {\n            \"date\": \"2024-03-27\",\n            \"mid\": \"0.00041861\",\n            \"ppd\": \"0.00000542\"\n        },\n        {\n            \"date\": \"2024-03-28\",\n            \"mid\": \"0.00042404\",\n            \"ppd\": \"0.00000542\"\n        },\n        {\n            \"date\": \"2024-03-29\",\n            \"mid\": \"0.00042946\",\n            \"ppd\": \"0.00000542\"\n        },\n        {\n            \"date\": \"2024-03-30\",\n            \"mid\": \"0.00043488\",\n            \"ppd\": \"0.00000542\"\n        },\n        {\n            \"date\": \"2024-03-31\",\n            \"mid\": \"0.00044030\",\n            \"ppd\": \"0.00000542\"\n        },\n        {\n            \"date\": \"2024-04-01\",\n            \"mid\": \"0.00044571\",\n            \"ppd\": \"0.00000542\"\n        },\n        {\n            \"date\": \"2024-04-02\",\n            \"mid\": \"0.00045113\",\n            \"ppd\": \"0.00000542\"\n        },\n        {\n            \"date\": \"2024-04-03\",\n            \"mid\": \"0.00045654\",\n            \"ppd\": \"0.00000541\"\n        },\n        {\n            \"date\": \"2024-04-04\",\n            \"mid\": \"0.00046196\",\n            \"ppd\": \"0.00000541\"\n        },\n        {\n            \"date\": \"2024-04-05\",\n            \"mid\": \"0.00046737\",\n            \"ppd\": \"0.00000541\"\n        },\n        {\n            \"date\": \"2024-04-06\",\n            \"mid\": \"0.00047278\",\n            \"ppd\": \"0.00000541\"\n        },\n        {\n            \"date\": \"2024-04-07\",\n            \"mid\": \"0.00047819\",\n            \"ppd\": \"0.00000541\"\n        },\n        {\n            \"date\": \"2024-04-08\",\n            \"mid\": \"0.00048359\",\n            \"ppd\": \"0.00000541\"\n        },\n        {\n            \"date\": \"2024-04-09\",\n            \"mid\": \"0.00048900\",\n            \"ppd\": \"0.00000540\"\n        },\n        {\n            \"date\": \"2024-04-10\",\n            \"mid\": \"0.00049440\",\n            \"ppd\": \"0.00000540\"\n        },\n        {\n            \"date\": \"2024-04-11\",\n            \"mid\": \"0.00049980\",\n            \"ppd\": \"0.00000540\"\n        },\n        {\n            \"date\": \"2024-04-12\",\n            \"mid\": \"0.00050520\",\n            \"ppd\": \"0.00000540\"\n        },\n        {\n            \"date\": \"2024-04-13\",\n            \"mid\": \"0.00051060\",\n            \"ppd\": \"0.00000540\"\n        },\n        {\n            \"date\": \"2024-04-14\",\n            \"mid\": \"0.00051600\",\n            \"ppd\": \"0.00000540\"\n        },\n        {\n            \"date\": \"2024-04-15\",\n            \"mid\": \"0.00052139\",\n            \"ppd\": \"0.00000540\"\n        },\n        {\n            \"date\": \"2024-04-16\",\n            \"mid\": \"0.00052679\",\n            \"ppd\": \"0.00000539\"\n        },\n        {\n            \"date\": \"2024-04-17\",\n            \"mid\": \"0.00053218\",\n            \"ppd\": \"0.00000539\"\n        },\n        {\n            \"date\": \"2024-04-18\",\n            \"mid\": \"0.00053757\",\n            \"ppd\": \"0.00000539\"\n        },\n        {\n            \"date\": \"2024-04-19\",\n            \"mid\": \"0.00054296\",\n            \"ppd\": \"0.00000539\"\n        },\n        {\n            \"date\": \"2024-04-20\",\n            \"mid\": \"0.00054835\",\n            \"ppd\": \"0.00000539\"\n        },\n        {\n            \"date\": \"2024-04-21\",\n            \"mid\": \"0.00055374\",\n            \"ppd\": \"0.00000539\"\n        },\n        {\n            \"date\": \"2024-04-22\",\n            \"mid\": \"0.00055912\",\n            \"ppd\": \"0.00000539\"\n        },\n        {\n            \"date\": \"2024-04-23\",\n            \"mid\": \"0.00056451\",\n            \"ppd\": \"0.00000538\"\n        },\n        {\n            \"date\": \"2024-04-24\",\n            \"mid\": \"0.00056989\",\n            \"ppd\": \"0.00000538\"\n        },\n        {\n            \"date\": \"2024-04-25\",\n            \"mid\": \"0.00057527\",\n            \"ppd\": \"0.00000538\"\n        },\n        {\n            \"date\": \"2024-04-26\",\n            \"mid\": \"0.00058065\",\n            \"ppd\": \"0.00000538\"\n        },\n        {\n            \"date\": \"2024-04-27\",\n            \"mid\": \"0.00058603\",\n            \"ppd\": \"0.00000538\"\n        },\n        {\n            \"date\": \"2024-04-28\",\n            \"mid\": \"0.00059140\",\n            \"ppd\": \"0.00000538\"\n        },\n        {\n            \"date\": \"2024-04-29\",\n            \"mid\": \"0.00059678\",\n            \"ppd\": \"0.00000537\"\n        },\n        {\n            \"date\": \"2024-04-30\",\n            \"mid\": \"0.00060215\",\n            \"ppd\": \"0.00000537\"\n        },\n        {\n            \"date\": \"2024-05-01\",\n            \"mid\": \"0.00060752\",\n            \"ppd\": \"0.00000537\"\n        },\n        {\n            \"date\": \"2024-05-02\",\n            \"mid\": \"0.00061289\",\n            \"ppd\": \"0.00000537\"\n        },\n        {\n            \"date\": \"2024-05-03\",\n            \"mid\": \"0.00061223\",\n            \"ppd\": \"-0.00000066\"\n        },\n        {\n            \"date\": \"2024-05-04\",\n            \"mid\": \"0.00061157\",\n            \"ppd\": \"-0.00000066\"\n        },\n        {\n            \"date\": \"2024-05-05\",\n            \"mid\": \"0.00061091\",\n            \"ppd\": \"-0.00000066\"\n        },\n        {\n            \"date\": \"2024-05-06\",\n            \"mid\": \"0.00061025\",\n            \"ppd\": \"-0.00000066\"\n        },\n        {\n            \"date\": \"2024-05-07\",\n            \"mid\": \"0.00060959\",\n            \"ppd\": \"-0.00000066\"\n        },\n        {\n            \"date\": \"2024-05-08\",\n            \"mid\": \"0.00060894\",\n            \"ppd\": \"-0.00000066\"\n        },\n        {\n            \"date\": \"2024-05-09\",\n            \"mid\": \"0.00060828\",\n            \"ppd\": \"-0.00000066\"\n        },\n        {\n            \"date\": \"2024-05-10\",\n            \"mid\": \"0.00060762\",\n            \"ppd\": \"-0.00000066\"\n        },\n        {\n            \"date\": \"2024-05-11\",\n            \"mid\": \"0.00060984\",\n            \"ppd\": \"0.00000222\"\n        },\n        {\n            \"date\": \"2024-05-12\",\n            \"mid\": \"0.00061206\",\n            \"ppd\": \"0.00000222\"\n        },\n        {\n            \"date\": \"2024-05-13\",\n            \"mid\": \"0.00061428\",\n            \"ppd\": \"0.00000222\"\n        },\n        {\n            \"date\": \"2024-05-14\",\n            \"mid\": \"0.00061649\",\n            \"ppd\": \"0.00000222\"\n        },\n        {\n            \"date\": \"2024-05-15\",\n            \"mid\": \"0.00061871\",\n            \"ppd\": \"0.00000222\"\n        },\n        {\n            \"date\": \"2024-05-16\",\n            \"mid\": \"0.00062093\",\n            \"ppd\": \"0.00000222\"\n        },\n        {\n            \"date\": \"2024-05-17\",\n            \"mid\": \"0.00062314\",\n            \"ppd\": \"0.00000222\"\n        },\n        {\n            \"date\": \"2024-05-18\",\n            \"mid\": \"0.00062536\",\n            \"ppd\": \"0.00000222\"\n        },\n        {\n            \"date\": \"2024-05-19\",\n            \"mid\": \"0.00062757\",\n            \"ppd\": \"0.00000221\"\n        },\n        {\n            \"date\": \"2024-05-20\",\n            \"mid\": \"0.00062979\",\n            \"ppd\": \"0.00000221\"\n        },\n        {\n            \"date\": \"2024-05-21\",\n            \"mid\": \"0.00063200\",\n            \"ppd\": \"0.00000221\"\n        },\n        {\n            \"date\": \"2024-05-22\",\n            \"mid\": \"0.00063421\",\n            \"ppd\": \"0.00000221\"\n        },\n        {\n            \"date\": \"2024-05-23\",\n            \"mid\": \"0.00063643\",\n            \"ppd\": \"0.00000221\"\n        },\n        {\n            \"date\": \"2024-05-24\",\n            \"mid\": \"0.00063864\",\n            \"ppd\": \"0.00000221\"\n        },\n        {\n            \"date\": \"2024-05-25\",\n            \"mid\": \"0.00064085\",\n            \"ppd\": \"0.00000221\"\n        },\n        {\n            \"date\": \"2024-05-26\",\n            \"mid\": \"0.00064306\",\n            \"ppd\": \"0.00000221\"\n        },\n        {\n            \"date\": \"2024-05-27\",\n            \"mid\": \"0.00064527\",\n            \"ppd\": \"0.00000221\"\n        },\n        {\n            \"date\": \"2024-05-28\",\n            \"mid\": \"0.00064748\",\n            \"ppd\": \"0.00000221\"\n        },\n        {\n            \"date\": \"2024-05-29\",\n            \"mid\": \"0.00064969\",\n            \"ppd\": \"0.00000221\"\n        },\n        {\n            \"date\": \"2024-05-30\",\n            \"mid\": \"0.00065189\",\n            \"ppd\": \"0.00000221\"\n        },\n        {\n            \"date\": \"2024-05-31\",\n            \"mid\": \"0.00065410\",\n            \"ppd\": \"0.00000221\"\n        },\n        {\n            \"date\": \"2024-06-01\",\n            \"mid\": \"0.00065631\",\n            \"ppd\": \"0.00000221\"\n        },\n        {\n            \"date\": \"2024-06-02\",\n            \"mid\": \"0.00065851\",\n            \"ppd\": \"0.00000221\"\n        },\n        {\n            \"date\": \"2024-06-03\",\n            \"mid\": \"0.00066072\",\n            \"ppd\": \"0.00000221\"\n        },\n        {\n            \"date\": \"2024-06-04\",\n            \"mid\": \"0.00066340\",\n            \"ppd\": \"0.00000268\"\n        },\n        {\n            \"date\": \"2024-06-05\",\n            \"mid\": \"0.00066609\",\n            \"ppd\": \"0.00000268\"\n        },\n        {\n            \"date\": \"2024-06-06\",\n            \"mid\": \"0.00066877\",\n            \"ppd\": \"0.00000268\"\n        },\n        {\n            \"date\": \"2024-06-07\",\n            \"mid\": \"0.00067145\",\n            \"ppd\": \"0.00000268\"\n        },\n        {\n            \"date\": \"2024-06-08\",\n            \"mid\": \"0.00067414\",\n            \"ppd\": \"0.00000268\"\n        },\n        {\n            \"date\": \"2024-06-09\",\n            \"mid\": \"0.00067682\",\n            \"ppd\": \"0.00000268\"\n        },\n        {\n            \"date\": \"2024-06-10\",\n            \"mid\": \"0.00067950\",\n            \"ppd\": \"0.00000268\"\n        },\n        {\n            \"date\": \"2024-06-11\",\n            \"mid\": \"0.00068218\",\n            \"ppd\": \"0.00000268\"\n        },\n        {\n            \"date\": \"2024-06-12\",\n            \"mid\": \"0.00068486\",\n            \"ppd\": \"0.00000268\"\n        },\n        {\n            \"date\": \"2024-06-13\",\n            \"mid\": \"0.00068753\",\n            \"ppd\": \"0.00000268\"\n        },\n        {\n            \"date\": \"2024-06-14\",\n            \"mid\": \"0.00068457\",\n            \"ppd\": \"-0.00000296\"\n        },\n        {\n            \"date\": \"2024-06-15\",\n            \"mid\": \"0.00068161\",\n            \"ppd\": \"-0.00000296\"\n        },\n        {\n            \"date\": \"2024-06-16\",\n            \"mid\": \"0.00067865\",\n            \"ppd\": \"-0.00000296\"\n        },\n        {\n            \"date\": \"2024-06-17\",\n            \"mid\": \"0.00067568\",\n            \"ppd\": \"-0.00000296\"\n        },\n        {\n            \"date\": \"2024-06-18\",\n            \"mid\": \"0.00067272\",\n            \"ppd\": \"-0.00000296\"\n        },\n        {\n            \"date\": \"2024-06-19\",\n            \"mid\": \"0.00066976\",\n            \"ppd\": \"-0.00000296\"\n        },\n        {\n            \"date\": \"2024-06-20\",\n            \"mid\": \"0.00066680\",\n            \"ppd\": \"-0.00000296\"\n        },\n        {\n            \"date\": \"2024-06-21\",\n            \"mid\": \"0.00066385\",\n            \"ppd\": \"-0.00000296\"\n        },\n        {\n            \"date\": \"2024-06-22\",\n            \"mid\": \"0.00066374\",\n            \"ppd\": \"-0.00000010\"\n        },\n        {\n            \"date\": \"2024-06-23\",\n            \"mid\": \"0.00066364\",\n            \"ppd\": \"-0.00000010\"\n        },\n        {\n            \"date\": \"2024-06-24\",\n            \"mid\": \"0.00066354\",\n            \"ppd\": \"-0.00000010\"\n        },\n        {\n            \"date\": \"2024-06-25\",\n            \"mid\": \"0.00066344\",\n            \"ppd\": \"-0.00000010\"\n        },\n        {\n            \"date\": \"2024-06-26\",\n            \"mid\": \"0.00066334\",\n            \"ppd\": \"-0.00000010\"\n        },\n        {\n            \"date\": \"2024-06-27\",\n            \"mid\": \"0.00066324\",\n            \"ppd\": \"-0.00000010\"\n        },\n        {\n            \"date\": \"2024-06-28\",\n            \"mid\": \"0.00066314\",\n            \"ppd\": \"-0.00000010\"\n        },\n        {\n            \"date\": \"2024-06-29\",\n            \"mid\": \"0.00066304\",\n            \"ppd\": \"-0.00000010\"\n        },\n        {\n            \"date\": \"2024-06-30\",\n            \"mid\": \"0.00066294\",\n            \"ppd\": \"-0.00000010\"\n        },\n        {\n            \"date\": \"2024-07-01\",\n            \"mid\": \"0.00066284\",\n            \"ppd\": \"-0.00000010\"\n        },\n        {\n            \"date\": \"2024-07-02\",\n            \"mid\": \"0.00066274\",\n            \"ppd\": \"-0.00000010\"\n        },\n        {\n            \"date\": \"2024-07-03\",\n            \"mid\": \"0.00066264\",\n            \"ppd\": \"-0.00000010\"\n        },\n        {\n            \"date\": \"2024-07-04\",\n            \"mid\": \"0.00066254\",\n            \"ppd\": \"-0.00000010\"\n        },\n        {\n            \"date\": \"2024-07-05\",\n            \"mid\": \"0.00066244\",\n            \"ppd\": \"-0.00000010\"\n        },\n        {\n            \"date\": \"2024-07-06\",\n            \"mid\": \"0.00066234\",\n            \"ppd\": \"-0.00000010\"\n        },\n        {\n            \"date\": \"2024-07-07\",\n            \"mid\": \"0.00066224\",\n            \"ppd\": \"-0.00000010\"\n        },\n        {\n            \"date\": \"2024-07-08\",\n            \"mid\": \"0.00066214\",\n            \"ppd\": \"-0.00000010\"\n        },\n        {\n            \"date\": \"2024-07-09\",\n            \"mid\": \"0.00066204\",\n            \"ppd\": \"-0.00000010\"\n        },\n        {\n            \"date\": \"2024-07-10\",\n            \"mid\": \"0.00066194\",\n            \"ppd\": \"-0.00000010\"\n        },\n        {\n            \"date\": \"2024-07-11\",\n            \"mid\": \"0.00066184\",\n            \"ppd\": \"-0.00000010\"\n        },\n        {\n            \"date\": \"2024-07-12\",\n            \"mid\": \"0.00066174\",\n            \"ppd\": \"-0.00000010\"\n        },\n        {\n            \"date\": \"2024-07-13\",\n            \"mid\": \"0.00066164\",\n            \"ppd\": \"-0.00000010\"\n        },\n        {\n            \"date\": \"2024-07-14\",\n            \"mid\": \"0.00066154\",\n            \"ppd\": \"-0.00000010\"\n        },\n        {\n            \"date\": \"2024-07-15\",\n            \"mid\": \"0.00066144\",\n            \"ppd\": \"-0.00000010\"\n        },\n        {\n            \"date\": \"2024-07-16\",\n            \"mid\": \"0.00066134\",\n            \"ppd\": \"-0.00000010\"\n        },\n        {\n            \"date\": \"2024-07-17\",\n            \"mid\": \"0.00066124\",\n            \"ppd\": \"-0.00000010\"\n        },\n        {\n            \"date\": \"2024-07-18\",\n            \"mid\": \"0.00066114\",\n            \"ppd\": \"-0.00000010\"\n        },\n        {\n            \"date\": \"2024-07-19\",\n            \"mid\": \"0.00066104\",\n            \"ppd\": \"-0.00000010\"\n        },\n        {\n            \"date\": \"2024-07-20\",\n            \"mid\": \"0.00066094\",\n            \"ppd\": \"-0.00000010\"\n        },\n        {\n            \"date\": \"2024-07-21\",\n            \"mid\": \"0.00066084\",\n            \"ppd\": \"-0.00000010\"\n        },\n        {\n            \"date\": \"2024-07-22\",\n            \"mid\": \"0.00066074\",\n            \"ppd\": \"-0.00000010\"\n        },\n        {\n            \"date\": \"2024-07-23\",\n            \"mid\": \"0.00066064\",\n            \"ppd\": \"-0.00000010\"\n        },\n        {\n            \"date\": \"2024-07-24\",\n            \"mid\": \"0.00066054\",\n            \"ppd\": \"-0.00000010\"\n        },\n        {\n            \"date\": \"2024-07-25\",\n            \"mid\": \"0.00066044\",\n            \"ppd\": \"-0.00000010\"\n        },\n        {\n            \"date\": \"2024-07-26\",\n            \"mid\": \"0.00066034\",\n            \"ppd\": \"-0.00000010\"\n        },\n        {\n            \"date\": \"2024-07-27\",\n            \"mid\": \"0.00066024\",\n            \"ppd\": \"-0.00000010\"\n        },\n        {\n            \"date\": \"2024-07-28\",\n            \"mid\": \"0.00066014\",\n            \"ppd\": \"-0.00000010\"\n        },\n        {\n            \"date\": \"2024-07-29\",\n            \"mid\": \"0.00066004\",\n            \"ppd\": \"-0.00000010\"\n        },\n        {\n            \"date\": \"2024-07-30\",\n            \"mid\": \"0.00065994\",\n            \"ppd\": \"-0.00000010\"\n        },\n        {\n            \"date\": \"2024-07-31\",\n            \"mid\": \"0.00065984\",\n            \"ppd\": \"-0.00000010\"\n        },\n        {\n            \"date\": \"2024-08-01\",\n            \"mid\": \"0.00065974\",\n            \"ppd\": \"-0.00000010\"\n        },\n        {\n            \"date\": \"2024-08-02\",\n            \"mid\": \"0.00065359\",\n            \"ppd\": \"-0.00000615\"\n        },\n        {\n            \"date\": \"2024-08-03\",\n            \"mid\": \"0.00065376\",\n            \"ppd\": \"0.00000017\"\n        },\n        {\n            \"date\": \"2024-08-04\",\n            \"mid\": \"0.00065394\",\n            \"ppd\": \"0.00000017\"\n        },\n        {\n            \"date\": \"2024-08-05\",\n            \"mid\": \"0.00065411\",\n            \"ppd\": \"0.00000017\"\n        },\n        {\n            \"date\": \"2024-08-06\",\n            \"mid\": \"0.00065428\",\n            \"ppd\": \"0.00000017\"\n        },\n        {\n            \"date\": \"2024-08-07\",\n            \"mid\": \"0.00065446\",\n            \"ppd\": \"0.00000017\"\n        },\n        {\n            \"date\": \"2024-08-08\",\n            \"mid\": \"0.00065463\",\n            \"ppd\": \"0.00000017\"\n        },\n        {\n            \"date\": \"2024-08-09\",\n            \"mid\": \"0.00065480\",\n            \"ppd\": \"0.00000017\"\n        },\n        {\n            \"date\": \"2024-08-10\",\n            \"mid\": \"0.00065497\",\n            \"ppd\": \"0.00000017\"\n        },\n        {\n            \"date\": \"2024-08-11\",\n            \"mid\": \"0.00065515\",\n            \"ppd\": \"0.00000017\"\n        },\n        {\n            \"date\": \"2024-08-12\",\n            \"mid\": \"0.00065532\",\n            \"ppd\": \"0.00000017\"\n        },\n        {\n            \"date\": \"2024-08-13\",\n            \"mid\": \"0.00065549\",\n            \"ppd\": \"0.00000017\"\n        },\n        {\n            \"date\": \"2024-08-14\",\n            \"mid\": \"0.00065566\",\n            \"ppd\": \"0.00000017\"\n        },\n        {\n            \"date\": \"2024-08-15\",\n            \"mid\": \"0.00065583\",\n            \"ppd\": \"0.00000017\"\n        },\n        {\n            \"date\": \"2024-08-16\",\n            \"mid\": \"0.00065601\",\n            \"ppd\": \"0.00000017\"\n        },\n        {\n            \"date\": \"2024-08-17\",\n            \"mid\": \"0.00065618\",\n            \"ppd\": \"0.00000017\"\n        },\n        {\n            \"date\": \"2024-08-18\",\n            \"mid\": \"0.00065635\",\n            \"ppd\": \"0.00000017\"\n        },\n        {\n            \"date\": \"2024-08-19\",\n            \"mid\": \"0.00065652\",\n            \"ppd\": \"0.00000017\"\n        },\n        {\n            \"date\": \"2024-08-20\",\n            \"mid\": \"0.00065670\",\n            \"ppd\": \"0.00000017\"\n        },\n        {\n            \"date\": \"2024-08-21\",\n            \"mid\": \"0.00065687\",\n            \"ppd\": \"0.00000017\"\n        },\n        {\n            \"date\": \"2024-08-22\",\n            \"mid\": \"0.00065704\",\n            \"ppd\": \"0.00000017\"\n        },\n        {\n            \"date\": \"2024-08-23\",\n            \"mid\": \"0.00065721\",\n            \"ppd\": \"0.00000017\"\n        },\n        {\n            \"date\": \"2024-08-24\",\n            \"mid\": \"0.00065738\",\n            \"ppd\": \"0.00000017\"\n        },\n        {\n            \"date\": \"2024-08-25\",\n            \"mid\": \"0.00065756\",\n            \"ppd\": \"0.00000017\"\n        },\n        {\n            \"date\": \"2024-08-26\",\n            \"mid\": \"0.00065773\",\n            \"ppd\": \"0.00000017\"\n        },\n        {\n            \"date\": \"2024-08-27\",\n            \"mid\": \"0.00065790\",\n            \"ppd\": \"0.00000017\"\n        },\n        {\n            \"date\": \"2024-08-28\",\n            \"mid\": \"0.00065807\",\n            \"ppd\": \"0.00000017\"\n        },\n        {\n            \"date\": \"2024-08-29\",\n            \"mid\": \"0.00065824\",\n            \"ppd\": \"0.00000017\"\n        },\n        {\n            \"date\": \"2024-08-30\",\n            \"mid\": \"0.00065841\",\n            \"ppd\": \"0.00000017\"\n        },\n        {\n            \"date\": \"2024-08-31\",\n            \"mid\": \"0.00065859\",\n            \"ppd\": \"0.00000017\"\n        },\n        {\n            \"date\": \"2024-09-01\",\n            \"mid\": \"0.00065876\",\n            \"ppd\": \"0.00000017\"\n        },\n        {\n            \"date\": \"2024-09-02\",\n            \"mid\": \"0.00065893\",\n            \"ppd\": \"0.00000017\"\n        },\n        {\n            \"date\": \"2024-09-03\",\n            \"mid\": \"0.00065910\",\n            \"ppd\": \"0.00000017\"\n        },\n        {\n            \"date\": \"2024-09-04\",\n            \"mid\": \"0.00066074\",\n            \"ppd\": \"0.00000164\"\n        },\n        {\n            \"date\": \"2024-09-05\",\n            \"mid\": \"0.00066238\",\n            \"ppd\": \"0.00000164\"\n        },\n        {\n            \"date\": \"2024-09-06\",\n            \"mid\": \"0.00066403\",\n            \"ppd\": \"0.00000164\"\n        },\n        {\n            \"date\": \"2024-09-07\",\n            \"mid\": \"0.00066567\",\n            \"ppd\": \"0.00000164\"\n        },\n        {\n            \"date\": \"2024-09-08\",\n            \"mid\": \"0.00066731\",\n            \"ppd\": \"0.00000164\"\n        },\n        {\n            \"date\": \"2024-09-09\",\n            \"mid\": \"0.00066895\",\n            \"ppd\": \"0.00000164\"\n        },\n        {\n            \"date\": \"2024-09-10\",\n            \"mid\": \"0.00067059\",\n            \"ppd\": \"0.00000164\"\n        },\n        {\n            \"date\": \"2024-09-11\",\n            \"mid\": \"0.00067223\",\n            \"ppd\": \"0.00000164\"\n        },\n        {\n            \"date\": \"2024-09-12\",\n            \"mid\": \"0.00067387\",\n            \"ppd\": \"0.00000164\"\n        },\n        {\n            \"date\": \"2024-09-13\",\n            \"mid\": \"0.00067551\",\n            \"ppd\": \"0.00000164\"\n        },\n        {\n            \"date\": \"2024-09-14\",\n            \"mid\": \"0.00067714\",\n            \"ppd\": \"0.00000164\"\n        },\n        {\n            \"date\": \"2024-09-15\",\n            \"mid\": \"0.00067878\",\n            \"ppd\": \"0.00000164\"\n        },\n        {\n            \"date\": \"2024-09-16\",\n            \"mid\": \"0.00068042\",\n            \"ppd\": \"0.00000164\"\n        },\n        {\n            \"date\": \"2024-09-17\",\n            \"mid\": \"0.00068206\",\n            \"ppd\": \"0.00000164\"\n        },\n        {\n            \"date\": \"2024-09-18\",\n            \"mid\": \"0.00068369\",\n            \"ppd\": \"0.00000164\"\n        },\n        {\n            \"date\": \"2024-09-19\",\n            \"mid\": \"0.00068533\",\n            \"ppd\": \"0.00000164\"\n        },\n        {\n            \"date\": \"2024-09-20\",\n            \"mid\": \"0.00067948\",\n            \"ppd\": \"-0.00000584\"\n        },\n        {\n            \"date\": \"2024-09-21\",\n            \"mid\": \"0.00067855\",\n            \"ppd\": \"-0.00000093\"\n        },\n        {\n            \"date\": \"2024-09-22\",\n            \"mid\": \"0.00067762\",\n            \"ppd\": \"-0.00000093\"\n        },\n        {\n            \"date\": \"2024-09-23\",\n            \"mid\": \"0.00067669\",\n            \"ppd\": \"-0.00000093\"\n        },\n        {\n            \"date\": \"2024-09-24\",\n            \"mid\": \"0.00067575\",\n            \"ppd\": \"-0.00000093\"\n        },\n        {\n            \"date\": \"2024-09-25\",\n            \"mid\": \"0.00067482\",\n            \"ppd\": \"-0.00000093\"\n        },\n        {\n            \"date\": \"2024-09-26\",\n            \"mid\": \"0.00067389\",\n            \"ppd\": \"-0.00000093\"\n        },\n        {\n            \"date\": \"2024-09-27\",\n            \"mid\": \"0.00067296\",\n            \"ppd\": \"-0.00000093\"\n        },\n        {\n            \"date\": \"2024-09-28\",\n            \"mid\": \"0.00067202\",\n            \"ppd\": \"-0.00000093\"\n        },\n        {\n            \"date\": \"2024-09-29\",\n            \"mid\": \"0.00067109\",\n            \"ppd\": \"-0.00000093\"\n        },\n        {\n            \"date\": \"2024-09-30\",\n            \"mid\": \"0.00067016\",\n            \"ppd\": \"-0.00000093\"\n        },\n        {\n            \"date\": \"2024-10-01\",\n            \"mid\": \"0.00066923\",\n            \"ppd\": \"-0.00000093\"\n        },\n        {\n            \"date\": \"2024-10-02\",\n            \"mid\": \"0.00066830\",\n            \"ppd\": \"-0.00000093\"\n        },\n        {\n            \"date\": \"2024-10-03\",\n            \"mid\": \"0.00066737\",\n            \"ppd\": \"-0.00000093\"\n        },\n        {\n            \"date\": \"2024-10-04\",\n            \"mid\": \"0.00066644\",\n            \"ppd\": \"-0.00000093\"\n        },\n        {\n            \"date\": \"2024-10-05\",\n            \"mid\": \"0.00066551\",\n            \"ppd\": \"-0.00000093\"\n        },\n        {\n            \"date\": \"2024-10-06\",\n            \"mid\": \"0.00066458\",\n            \"ppd\": \"-0.00000093\"\n        },\n        {\n            \"date\": \"2024-10-07\",\n            \"mid\": \"0.00066365\",\n            \"ppd\": \"-0.00000093\"\n        },\n        {\n            \"date\": \"2024-10-08\",\n            \"mid\": \"0.00066272\",\n            \"ppd\": \"-0.00000093\"\n        },\n        {\n            \"date\": \"2024-10-09\",\n            \"mid\": \"0.00066179\",\n            \"ppd\": \"-0.00000093\"\n        },\n        {\n            \"date\": \"2024-10-10\",\n            \"mid\": \"0.00066086\",\n            \"ppd\": \"-0.00000093\"\n        },\n        {\n            \"date\": \"2024-10-11\",\n            \"mid\": \"0.00065993\",\n            \"ppd\": \"-0.00000093\"\n        },\n        {\n            \"date\": \"2024-10-12\",\n            \"mid\": \"0.00065900\",\n            \"ppd\": \"-0.00000093\"\n        },\n        {\n            \"date\": \"2024-10-13\",\n            \"mid\": \"0.00065807\",\n            \"ppd\": \"-0.00000093\"\n        },\n        {\n            \"date\": \"2024-10-14\",\n            \"mid\": \"0.00065715\",\n            \"ppd\": \"-0.00000093\"\n        },\n        {\n            \"date\": \"2024-10-15\",\n            \"mid\": \"0.00065622\",\n            \"ppd\": \"-0.00000093\"\n        },\n        {\n            \"date\": \"2024-10-16\",\n            \"mid\": \"0.00065529\",\n            \"ppd\": \"-0.00000093\"\n        },\n        {\n            \"date\": \"2024-10-17\",\n            \"mid\": \"0.00065436\",\n            \"ppd\": \"-0.00000093\"\n        },\n        {\n            \"date\": \"2024-10-18\",\n            \"mid\": \"0.00065344\",\n            \"ppd\": \"-0.00000093\"\n        },\n        {\n            \"date\": \"2024-10-19\",\n            \"mid\": \"0.00065251\",\n            \"ppd\": \"-0.00000093\"\n        },\n        {\n            \"date\": \"2024-10-20\",\n            \"mid\": \"0.00065158\",\n            \"ppd\": \"-0.00000093\"\n        },\n        {\n            \"date\": \"2024-10-21\",\n            \"mid\": \"0.00065066\",\n            \"ppd\": \"-0.00000093\"\n        },\n        {\n            \"date\": \"2024-10-22\",\n            \"mid\": \"0.00064973\",\n            \"ppd\": \"-0.00000093\"\n        },\n        {\n            \"date\": \"2024-10-23\",\n            \"mid\": \"0.00064880\",\n            \"ppd\": \"-0.00000093\"\n        },\n        {\n            \"date\": \"2024-10-24\",\n            \"mid\": \"0.00064788\",\n            \"ppd\": \"-0.00000093\"\n        },\n        {\n            \"date\": \"2024-10-25\",\n            \"mid\": \"0.00064695\",\n            \"ppd\": \"-0.00000093\"\n        },\n        {\n            \"date\": \"2024-10-26\",\n            \"mid\": \"0.00064603\",\n            \"ppd\": \"-0.00000093\"\n        },\n        {\n            \"date\": \"2024-10-27\",\n            \"mid\": \"0.00064510\",\n            \"ppd\": \"-0.00000093\"\n        },\n        {\n            \"date\": \"2024-10-28\",\n            \"mid\": \"0.00064418\",\n            \"ppd\": \"-0.00000092\"\n        },\n        {\n            \"date\": \"2024-10-29\",\n            \"mid\": \"0.00064325\",\n            \"ppd\": \"-0.00000092\"\n        },\n        {\n            \"date\": \"2024-10-30\",\n            \"mid\": \"0.00064233\",\n            \"ppd\": \"-0.00000092\"\n        },\n        {\n            \"date\": \"2024-10-31\",\n            \"mid\": \"0.00064140\",\n            \"ppd\": \"-0.00000092\"\n        },\n        {\n            \"date\": \"2024-11-01\",\n            \"mid\": \"0.00064048\",\n            \"ppd\": \"-0.00000092\"\n        },\n        {\n            \"date\": \"2024-11-02\",\n            \"mid\": \"0.00063956\",\n            \"ppd\": \"-0.00000092\"\n        },\n        {\n            \"date\": \"2024-11-03\",\n            \"mid\": \"0.00063863\",\n            \"ppd\": \"-0.00000092\"\n        },\n        {\n            \"date\": \"2024-11-04\",\n            \"mid\": \"0.00063771\",\n            \"ppd\": \"-0.00000092\"\n        },\n        {\n            \"date\": \"2024-11-05\",\n            \"mid\": \"0.00063679\",\n            \"ppd\": \"-0.00000092\"\n        },\n        {\n            \"date\": \"2024-11-06\",\n            \"mid\": \"0.00063586\",\n            \"ppd\": \"-0.00000092\"\n        },\n        {\n            \"date\": \"2024-11-07\",\n            \"mid\": \"0.00063494\",\n            \"ppd\": \"-0.00000092\"\n        },\n        {\n            \"date\": \"2024-11-08\",\n            \"mid\": \"0.00063402\",\n            \"ppd\": \"-0.00000092\"\n        },\n        {\n            \"date\": \"2024-11-09\",\n            \"mid\": \"0.00063382\",\n            \"ppd\": \"-0.00000020\"\n        },\n        {\n            \"date\": \"2024-11-10\",\n            \"mid\": \"0.00063362\",\n            \"ppd\": \"-0.00000020\"\n        },\n        {\n            \"date\": \"2024-11-11\",\n            \"mid\": \"0.00063343\",\n            \"ppd\": \"-0.00000020\"\n        },\n        {\n            \"date\": \"2024-11-12\",\n            \"mid\": \"0.00063323\",\n            \"ppd\": \"-0.00000020\"\n        },\n        {\n            \"date\": \"2024-11-13\",\n            \"mid\": \"0.00063303\",\n            \"ppd\": \"-0.00000020\"\n        },\n        {\n            \"date\": \"2024-11-14\",\n            \"mid\": \"0.00063284\",\n            \"ppd\": \"-0.00000020\"\n        },\n        {\n            \"date\": \"2024-11-15\",\n            \"mid\": \"0.00063264\",\n            \"ppd\": \"-0.00000020\"\n        },\n        {\n            \"date\": \"2024-11-16\",\n            \"mid\": \"0.00063244\",\n            \"ppd\": \"-0.00000020\"\n        },\n        {\n            \"date\": \"2024-11-17\",\n            \"mid\": \"0.00063225\",\n            \"ppd\": \"-0.00000020\"\n        },\n        {\n            \"date\": \"2024-11-18\",\n            \"mid\": \"0.00063205\",\n            \"ppd\": \"-0.00000020\"\n        },\n        {\n            \"date\": \"2024-11-19\",\n            \"mid\": \"0.00063185\",\n            \"ppd\": \"-0.00000020\"\n        },\n        {\n            \"date\": \"2024-11-20\",\n            \"mid\": \"0.00063166\",\n            \"ppd\": \"-0.00000020\"\n        },\n        {\n            \"date\": \"2024-11-21\",\n            \"mid\": \"0.00063146\",\n            \"ppd\": \"-0.00000020\"\n        },\n        {\n            \"date\": \"2024-11-22\",\n            \"mid\": \"0.00063126\",\n            \"ppd\": \"-0.00000020\"\n        },\n        {\n            \"date\": \"2024-11-23\",\n            \"mid\": \"0.00063107\",\n            \"ppd\": \"-0.00000020\"\n        },\n        {\n            \"date\": \"2024-11-24\",\n            \"mid\": \"0.00063087\",\n            \"ppd\": \"-0.00000020\"\n        },\n        {\n            \"date\": \"2024-11-25\",\n            \"mid\": \"0.00063067\",\n            \"ppd\": \"-0.00000020\"\n        },\n        {\n            \"date\": \"2024-11-26\",\n            \"mid\": \"0.00063048\",\n            \"ppd\": \"-0.00000020\"\n        },\n        {\n            \"date\": \"2024-11-27\",\n            \"mid\": \"0.00063028\",\n            \"ppd\": \"-0.00000020\"\n        },\n        {\n            \"date\": \"2024-11-28\",\n            \"mid\": \"0.00063008\",\n            \"ppd\": \"-0.00000020\"\n        },\n        {\n            \"date\": \"2024-11-29\",\n            \"mid\": \"0.00062989\",\n            \"ppd\": \"-0.00000020\"\n        },\n        {\n            \"date\": \"2024-11-30\",\n            \"mid\": \"0.00062969\",\n            \"ppd\": \"-0.00000020\"\n        },\n        {\n            \"date\": \"2024-12-01\",\n            \"mid\": \"0.00062950\",\n            \"ppd\": \"-0.00000020\"\n        },\n        {\n            \"date\": \"2024-12-02\",\n            \"mid\": \"0.00062930\",\n            \"ppd\": \"-0.00000020\"\n        },\n        {\n            \"date\": \"2024-12-03\",\n            \"mid\": \"0.00062984\",\n            \"ppd\": \"0.00000054\"\n        },\n        {\n            \"date\": \"2024-12-04\",\n            \"mid\": \"0.00063039\",\n            \"ppd\": \"0.00000054\"\n        },\n        {\n            \"date\": \"2024-12-05\",\n            \"mid\": \"0.00063093\",\n            \"ppd\": \"0.00000054\"\n        },\n        {\n            \"date\": \"2024-12-06\",\n            \"mid\": \"0.00063148\",\n            \"ppd\": \"0.00000054\"\n        },\n        {\n            \"date\": \"2024-12-07\",\n            \"mid\": \"0.00063202\",\n            \"ppd\": \"0.00000054\"\n        },\n        {\n            \"date\": \"2024-12-08\",\n            \"mid\": \"0.00063256\",\n            \"ppd\": \"0.00000054\"\n        },\n        {\n            \"date\": \"2024-12-09\",\n            \"mid\": \"0.00063311\",\n            \"ppd\": \"0.00000054\"\n        },\n        {\n            \"date\": \"2024-12-10\",\n            \"mid\": \"0.00063365\",\n            \"ppd\": \"0.00000054\"\n        },\n        {\n            \"date\": \"2024-12-11\",\n            \"mid\": \"0.00063419\",\n            \"ppd\": \"0.00000054\"\n        },\n        {\n            \"date\": \"2024-12-12\",\n            \"mid\": \"0.00063474\",\n            \"ppd\": \"0.00000054\"\n        },\n        {\n            \"date\": \"2024-12-13\",\n            \"mid\": \"0.00063528\",\n            \"ppd\": \"0.00000054\"\n        },\n        {\n            \"date\": \"2024-12-14\",\n            \"mid\": \"0.00063582\",\n            \"ppd\": \"0.00000054\"\n        },\n        {\n            \"date\": \"2024-12-15\",\n            \"mid\": \"0.00063636\",\n            \"ppd\": \"0.00000054\"\n        },\n        {\n            \"date\": \"2024-12-16\",\n            \"mid\": \"0.00063691\",\n            \"ppd\": \"0.00000054\"\n        },\n        {\n            \"date\": \"2024-12-17\",\n            \"mid\": \"0.00063745\",\n            \"ppd\": \"0.00000054\"\n        },\n        {\n            \"date\": \"2024-12-18\",\n            \"mid\": \"0.00063799\",\n            \"ppd\": \"0.00000054\"\n        },\n        {\n            \"date\": \"2024-12-19\",\n            \"mid\": \"0.00063853\",\n            \"ppd\": \"0.00000054\"\n        },\n        {\n            \"date\": \"2024-12-20\",\n            \"mid\": \"0.00063787\",\n            \"ppd\": \"-0.00000066\"\n        },\n        {\n            \"date\": \"2024-12-21\",\n            \"mid\": \"0.00063721\",\n            \"ppd\": \"-0.00000066\"\n        },\n        {\n            \"date\": \"2024-12-22\",\n            \"mid\": \"0.00063656\",\n            \"ppd\": \"-0.00000066\"\n        },\n        {\n            \"date\": \"2024-12-23\",\n            \"mid\": \"0.00063590\",\n            \"ppd\": \"-0.00000066\"\n        },\n        {\n            \"date\": \"2024-12-24\",\n            \"mid\": \"0.00063524\",\n            \"ppd\": \"-0.00000066\"\n        },\n        {\n            \"date\": \"2024-12-25\",\n            \"mid\": \"0.00063458\",\n            \"ppd\": \"-0.00000066\"\n        },\n        {\n            \"date\": \"2024-12-26\",\n            \"mid\": \"0.00063392\",\n            \"ppd\": \"-0.00000066\"\n        },\n        {\n            \"date\": \"2024-12-27\",\n            \"mid\": \"0.00063326\",\n            \"ppd\": \"-0.00000066\"\n        },\n        {\n            \"date\": \"2024-12-28\",\n            \"mid\": \"0.00063260\",\n            \"ppd\": \"-0.00000066\"\n        },\n        {\n            \"date\": \"2024-12-29\",\n            \"mid\": \"0.00063195\",\n            \"ppd\": \"-0.00000066\"\n        },\n        {\n            \"date\": \"2024-12-30\",\n            \"mid\": \"0.00063129\",\n            \"ppd\": \"-0.00000066\"\n        },\n        {\n            \"date\": \"2024-12-31\",\n            \"mid\": \"0.00063063\",\n            \"ppd\": \"-0.00000066\"\n        },\n        {\n            \"date\": \"2025-01-01\",\n            \"mid\": \"0.00075422\",\n            \"ppd\": \"0.00012359\"\n        },\n        {\n            \"date\": \"2025-01-02\",\n            \"mid\": \"0.00087781\",\n            \"ppd\": \"0.00012359\"\n        },\n        {\n            \"date\": \"2025-01-03\",\n            \"mid\": \"0.00087712\",\n            \"ppd\": \"-0.00000069\"\n        },\n        {\n            \"date\": \"2025-01-04\",\n            \"mid\": \"0.00087644\",\n            \"ppd\": \"-0.00000069\"\n        },\n        {\n            \"date\": \"2025-01-05\",\n            \"mid\": \"0.00087575\",\n            \"ppd\": \"-0.00000069\"\n        },\n        {\n            \"date\": \"2025-01-06\",\n            \"mid\": \"0.00087507\",\n            \"ppd\": \"-0.00000069\"\n        },\n        {\n            \"date\": \"2025-01-07\",\n            \"mid\": \"0.00087438\",\n            \"ppd\": \"-0.00000068\"\n        },\n        {\n            \"date\": \"2025-01-08\",\n            \"mid\": \"0.00087370\",\n            \"ppd\": \"-0.00000068\"\n        },\n        {\n            \"date\": \"2025-01-09\",\n            \"mid\": \"0.00087301\",\n            \"ppd\": \"-0.00000068\"\n        },\n        {\n            \"date\": \"2025-01-10\",\n            \"mid\": \"0.00087233\",\n            \"ppd\": \"-0.00000068\"\n        },\n        {\n            \"date\": \"2025-01-11\",\n            \"mid\": \"0.00087165\",\n            \"ppd\": \"-0.00000068\"\n        },\n        {\n            \"date\": \"2025-01-12\",\n            \"mid\": \"0.00087096\",\n            \"ppd\": \"-0.00000068\"\n        },\n        {\n            \"date\": \"2025-01-13\",\n            \"mid\": \"0.00087028\",\n            \"ppd\": \"-0.00000068\"\n        },\n        {\n            \"date\": \"2025-01-14\",\n            \"mid\": \"0.00086959\",\n            \"ppd\": \"-0.00000068\"\n        },\n        {\n            \"date\": \"2025-01-15\",\n            \"mid\": \"0.00086891\",\n            \"ppd\": \"-0.00000068\"\n        },\n        {\n            \"date\": \"2025-01-16\",\n            \"mid\": \"0.00086823\",\n            \"ppd\": \"-0.00000068\"\n        },\n        {\n            \"date\": \"2025-01-17\",\n            \"mid\": \"0.00086754\",\n            \"ppd\": \"-0.00000068\"\n        },\n        {\n            \"date\": \"2025-01-18\",\n            \"mid\": \"0.00086686\",\n            \"ppd\": \"-0.00000068\"\n        },\n        {\n            \"date\": \"2025-01-19\",\n            \"mid\": \"0.00086618\",\n            \"ppd\": \"-0.00000068\"\n        },\n        {\n            \"date\": \"2025-01-20\",\n            \"mid\": \"0.00086549\",\n            \"ppd\": \"-0.00000068\"\n        },\n        {\n            \"date\": \"2025-01-21\",\n            \"mid\": \"0.00086481\",\n            \"ppd\": \"-0.00000068\"\n        },\n        {\n            \"date\": \"2025-01-22\",\n            \"mid\": \"0.00086413\",\n            \"ppd\": \"-0.00000068\"\n        },\n        {\n            \"date\": \"2025-01-23\",\n            \"mid\": \"0.00086345\",\n            \"ppd\": \"-0.00000068\"\n        },\n        {\n            \"date\": \"2025-01-24\",\n            \"mid\": \"0.00086276\",\n            \"ppd\": \"-0.00000068\"\n        },\n        {\n            \"date\": \"2025-01-25\",\n            \"mid\": \"0.00086208\",\n            \"ppd\": \"-0.00000068\"\n        },\n        {\n            \"date\": \"2025-01-26\",\n            \"mid\": \"0.00086140\",\n            \"ppd\": \"-0.00000068\"\n        },\n        {\n            \"date\": \"2025-01-27\",\n            \"mid\": \"0.00086072\",\n            \"ppd\": \"-0.00000068\"\n        },\n        {\n            \"date\": \"2025-01-28\",\n            \"mid\": \"0.00086004\",\n            \"ppd\": \"-0.00000068\"\n        },\n        {\n            \"date\": \"2025-01-29\",\n            \"mid\": \"0.00085936\",\n            \"ppd\": \"-0.00000068\"\n        },\n        {\n            \"date\": \"2025-01-30\",\n            \"mid\": \"0.00085867\",\n            \"ppd\": \"-0.00000068\"\n        },\n        {\n            \"date\": \"2025-01-31\",\n            \"mid\": \"0.00085799\",\n            \"ppd\": \"-0.00000068\"\n        },\n        {\n            \"date\": \"2025-02-01\",\n            \"mid\": \"0.00085731\",\n            \"ppd\": \"-0.00000068\"\n        },\n        {\n            \"date\": \"2025-02-02\",\n            \"mid\": \"0.00085663\",\n            \"ppd\": \"-0.00000068\"\n        },\n        {\n            \"date\": \"2025-02-03\",\n            \"mid\": \"0.00085595\",\n            \"ppd\": \"-0.00000068\"\n        }\n    ]\n}"}],"_postman_id":"67a37945-a94d-4382-9e78-0005ae0bd9c2"}],"id":"27284509-6f6c-4db9-ab19-28577653b562","_postman_id":"27284509-6f6c-4db9-ab19-28577653b562","description":"","auth":{"type":"oauth2","oauth2":{"refreshRequestParams":"<refresh-request-params>","password":"{{AUTH_PASSWORD}}","username":"{{AUTH_USERNAME}}","refreshTokenUrl":"<refresh-token-url>","accessTokenUrl":"<access-token-url>","grant_type":"<grant_type>","authUrl":"<auth-url>"},"isInherited":true,"source":{"_postman_id":"9ebb9928-d7bc-4f70-89b3-72c671248367","id":"9ebb9928-d7bc-4f70-89b3-72c671248367","name":"API","type":"folder"}}}],"id":"ad34ca3c-55a4-404e-acb3-a8de454084ab","description":"<p>This folder contains APIs relating to the Forwards365 product. This delivers forward rates for every day from today to the 1 year tenor. Data is provided to convention (see the fiat reference API for forward point conversion from true decimal by currency pair) as forward points from spot.</p>\n<p>Forwards365 updates each currency pair every 10 seconds.</p>\n","_postman_id":"ad34ca3c-55a4-404e-acb3-a8de454084ab","auth":{"type":"oauth2","oauth2":{"refreshRequestParams":"<refresh-request-params>","password":"{{AUTH_PASSWORD}}","username":"{{AUTH_USERNAME}}","refreshTokenUrl":"<refresh-token-url>","accessTokenUrl":"<access-token-url>","grant_type":"<grant_type>","authUrl":"<auth-url>"},"isInherited":true,"source":{"_postman_id":"9ebb9928-d7bc-4f70-89b3-72c671248367","id":"9ebb9928-d7bc-4f70-89b3-72c671248367","name":"API","type":"folder"}}}],"id":"58fc79b1-2567-4721-9247-d698e44bb8d9","description":"<p>These APIs return live data (i.e. prevailing rate now).</p>\n","_postman_id":"58fc79b1-2567-4721-9247-d698e44bb8d9","auth":{"type":"oauth2","oauth2":{"refreshRequestParams":"<refresh-request-params>","password":"{{AUTH_PASSWORD}}","username":"{{AUTH_USERNAME}}","refreshTokenUrl":"<refresh-token-url>","accessTokenUrl":"<access-token-url>","grant_type":"<grant_type>","authUrl":"<auth-url>"},"isInherited":true,"source":{"_postman_id":"9ebb9928-d7bc-4f70-89b3-72c671248367","id":"9ebb9928-d7bc-4f70-89b3-72c671248367","name":"API","type":"folder"}}},{"name":"historic","item":[{"name":"midrate","item":[{"name":"v1","item":[{"name":"prevailing rate","event":[{"listen":"prerequest","script":{"exec":[""],"type":"text/javascript","packages":{},"id":"3bebadd0-3d3a-4a0c-939c-ee045c7ed9fd"}}],"id":"434aa03c-2523-4ca6-bb94-95faa906e1d0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"body":{"mode":"urlencoded","urlencoded":[]},"url":"{{FIAT_API_ENDPOINT}}/historic/midrate/v1/rates/?currencyPair=<currency pair>&tenor=<tenor>&timestamp=<timestamp>","description":"<p>This API will return the prevailing rate for an instrument at a time in history. It is not necessary to define the type (deliverability) and route (observed or crossed) when making a call.</p>\n<p><strong>NOTE:</strong> currencies must be submitted in a standard format, e.g. ‘EURUSD’.</p>\n<p>For accepted tenor values see <strong>Available fiat tenors</strong> in the general folder.</p>\n<p>This API requires authentication, please see instructions in the API\\Authentication folder for how to add the additional necessary header to your request. If you would like to use this collection in Postman to request the data, please follow the instructions in the introduction to this documentation.</p>\n","auth":{"type":"oauth2","oauth2":{"refreshRequestParams":"<refresh-request-params>","password":"{{AUTH_PASSWORD}}","username":"{{AUTH_USERNAME}}","refreshTokenUrl":"<refresh-token-url>","accessTokenUrl":"<access-token-url>","grant_type":"<grant_type>","authUrl":"<auth-url>"},"isInherited":true,"source":{"_postman_id":"9ebb9928-d7bc-4f70-89b3-72c671248367","id":"9ebb9928-d7bc-4f70-89b3-72c671248367","name":"API","type":"folder"}},"urlObject":{"path":["historic","midrate","v1","rates",""],"host":["{{FIAT_API_ENDPOINT}}"],"query":[{"description":{"content":"<p>Required currency pair e.g. GBPUSD</p>\n","type":"text/plain"},"key":"currencyPair","value":"<currency pair>"},{"description":{"content":"<p>Required tenor e.g. \"SPT\", \"ON\", \"SN\", \"W1\", \"M1\", ...</p>\n","type":"text/plain"},"key":"tenor","value":"<tenor>"},{"description":{"content":"<p>Required timestamp in format yyyy-mm-dd hh:mm:ss.000 (ms are optional)</p>\n","type":"text/plain"},"key":"timestamp","value":"<timestamp>"}],"variable":[]}},"response":[{"id":"1531bae1-ae2c-47cd-81c9-00619d419fa1","name":"GBPUSD SPT on 2024-01-29 21:00:00","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{FIAT_API_ENDPOINT}}/historic/midrate/v1/rates/?currencyPair=GBPUSD&tenor=SPT&timestamp=2024-01-29 21:00:00","host":["{{FIAT_API_ENDPOINT}}"],"path":["historic","midrate","v1","rates",""],"query":[{"key":"currencyPair","value":"GBPUSD"},{"key":"tenor","value":"SPT"},{"key":"timestamp","value":"2024-01-29 21:00:00"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"openresty","enabled":true},{"key":"Date","value":"Tue, 30 Jan 2024 18:16:49 GMT","enabled":true},{"key":"Content-Type","value":"application/json; charset=utf-8","enabled":true},{"key":"Content-Length","value":"117","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"X-Powered-By","value":"Express","enabled":true},{"key":"ETag","value":"W/\"75-NMQRmNVuMUoIFGauuSn+f7vCin8\"","enabled":true},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains","enabled":true},{"key":"X-Frame-Options","value":"DENY","enabled":true},{"key":"X-Content-Type-Options","value":"nosniff","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"rt\": \"2024-01-29 20:59:59.954\",\n    \"p\": \"GBPUSD\",\n    \"tn\": \"SPT\",\n    \"m\": \"1.27107000\",\n    \"in\": false,\n    \"ix\": false,\n    \"ic\": false,\n    \"io\": false\n}"}],"_postman_id":"434aa03c-2523-4ca6-bb94-95faa906e1d0"},{"name":"ohlc","event":[{"listen":"prerequest","script":{"exec":[""],"type":"text/javascript","packages":{},"id":"ce3ccbda-13c5-43f8-be4c-b1be9d190850"}}],"id":"171ae307-decd-4c32-a0a1-546cb898cc3e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"body":{"mode":"urlencoded","urlencoded":[]},"url":"{{FIAT_API_ENDPOINT}}/historic/midrate/v1/ohlc/?currencyPair=<currency pair>&tenor=<tenor>&startTimestamp=<start timestamp>&endTimestamp=<end timestamp>&period=<period>","description":"<p>This API will return an array of OHLC data. It is not necessary to define the type (deliverability) and route (observed or crossed) when making a call.</p>\n<p>OHLC is available in periods of minutes or hours.</p>\n<p>OHLC will be returned for the requested periods. Note that the minute and hour OHLC is always on the exact minute or hour (other start / end times are not supported).</p>\n<p><strong>NOTE:</strong> currencies must be submitted in a standard format, e.g. ‘EURUSD’.</p>\n<p>For accepted tenor values see <strong>Available fiat tenors</strong> in the general folder.</p>\n<p>This API requires authentication, please see instructions in the API\\Authentication folder for how to add the additional necessary header to your request. If you would like to use this collection in Postman to request the data, please follow the instructions in the introduction to this documentation.</p>\n","auth":{"type":"oauth2","oauth2":{"refreshRequestParams":"<refresh-request-params>","password":"{{AUTH_PASSWORD}}","username":"{{AUTH_USERNAME}}","refreshTokenUrl":"<refresh-token-url>","accessTokenUrl":"<access-token-url>","grant_type":"<grant_type>","authUrl":"<auth-url>"},"isInherited":true,"source":{"_postman_id":"9ebb9928-d7bc-4f70-89b3-72c671248367","id":"9ebb9928-d7bc-4f70-89b3-72c671248367","name":"API","type":"folder"}},"urlObject":{"path":["historic","midrate","v1","ohlc",""],"host":["{{FIAT_API_ENDPOINT}}"],"query":[{"description":{"content":"<p>Required currency pair e.g. GBPUSD</p>\n","type":"text/plain"},"key":"currencyPair","value":"<currency pair>"},{"description":{"content":"<p>Required tenor e.g. \"SPT\", \"ON\", \"SN\", \"W1\", \"M1\", ...</p>\n","type":"text/plain"},"key":"tenor","value":"<tenor>"},{"description":{"content":"<p>Required start timestamp in format yyyy-mm-dd hh:mm:ss.000 (ms are optional)</p>\n","type":"text/plain"},"key":"startTimestamp","value":"<start timestamp>"},{"description":{"content":"<p>Required end timestamp in format yyyy-mm-dd hh:mm:ss.000 (ms are optional)</p>\n","type":"text/plain"},"key":"endTimestamp","value":"<end timestamp>"},{"description":{"content":"<p>period of ohlc - 'minute', 'hour'</p>\n","type":"text/plain"},"key":"period","value":"<period>"}],"variable":[]}},"response":[{"id":"586cfaab-34c8-45e3-bfc7-9c14a27eace0","name":"GBPUSD SPT 2023-11-24 08:00:00 to 2023-11-24 09:00:00 with period of minute","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{FIAT_API_ENDPOINT}}/historic/midrate/v1/ohlc/?currencyPair=GBPUSD&tenor=SPT&startTimestamp=2023-11-24 08:00:00&endTimestamp=2023-11-24 09:00:00&period=minute","host":["{{FIAT_API_ENDPOINT}}"],"path":["historic","midrate","v1","ohlc",""],"query":[{"key":"currencyPair","value":"GBPUSD","description":"Required currency pair e.g. GBPUSD"},{"key":"tenor","value":"SPT","description":"Required tenor e.g. M1"},{"key":"startTimestamp","value":"2023-11-24 08:00:00","description":"Required start timestamp in format yyyy-mm-dd hh:mm:ss.000 (ms are optional)"},{"key":"endTimestamp","value":"2023-11-24 09:00:00","description":"Required end timestamp in format yyyy-mm-dd hh:mm:ss.000 (ms are optional)"},{"key":"period","value":"minute","description":"period of ohlc - 'minute', 'hour', 'day'"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"openresty","enabled":true},{"key":"Date","value":"Tue, 30 Jan 2024 18:49:42 GMT","enabled":true},{"key":"Content-Type","value":"application/json; charset=utf-8","enabled":true},{"key":"Content-Length","value":"7868","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"X-Powered-By","value":"Express","enabled":true},{"key":"ETag","value":"W/\"1ebc-NbmnAi5WGS24IZvfh2D3wmjSyVw\"","enabled":true},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains","enabled":true},{"key":"X-Frame-Options","value":"DENY","enabled":true},{"key":"X-Content-Type-Options","value":"nosniff","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"pair\": \"GBPUSD\",\n    \"isNDF\": false,\n    \"isOutright\": false,\n    \"ohlcs\": [\n        {\n            \"timestamp\": \"2023-11-24 08:00:00.000\",\n            \"open\": \"1.2532300000\",\n            \"high\": \"1.2532400000\",\n            \"low\": \"1.2529100000\",\n            \"close\": \"1.2531900000\"\n        },\n        {\n            \"timestamp\": \"2023-11-24 08:01:00.000\",\n            \"open\": \"1.2531900000\",\n            \"high\": \"1.2534600000\",\n            \"low\": \"1.2531800000\",\n            \"close\": \"1.2534600000\"\n        },\n        {\n            \"timestamp\": \"2023-11-24 08:02:00.000\",\n            \"open\": \"1.2534600000\",\n            \"high\": \"1.2535000000\",\n            \"low\": \"1.2531800000\",\n            \"close\": \"1.2531900000\"\n        },\n        {\n            \"timestamp\": \"2023-11-24 08:03:00.000\",\n            \"open\": \"1.2531900000\",\n            \"high\": \"1.2532600000\",\n            \"low\": \"1.2531500000\",\n            \"close\": \"1.2532600000\"\n        },\n        {\n            \"timestamp\": \"2023-11-24 08:04:00.000\",\n            \"open\": \"1.2532600000\",\n            \"high\": \"1.2533300000\",\n            \"low\": \"1.2531600000\",\n            \"close\": \"1.2532400000\"\n        },\n        {\n            \"timestamp\": \"2023-11-24 08:05:00.000\",\n            \"open\": \"1.2532400000\",\n            \"high\": \"1.2534900000\",\n            \"low\": \"1.2532300000\",\n            \"close\": \"1.2534400000\"\n        },\n        {\n            \"timestamp\": \"2023-11-24 08:06:00.000\",\n            \"open\": \"1.2534400000\",\n            \"high\": \"1.2536200000\",\n            \"low\": \"1.2534400000\",\n            \"close\": \"1.2534600000\"\n        },\n        {\n            \"timestamp\": \"2023-11-24 08:07:00.000\",\n            \"open\": \"1.2534600000\",\n            \"high\": \"1.2534600000\",\n            \"low\": \"1.2533400000\",\n            \"close\": \"1.2534300000\"\n        },\n        {\n            \"timestamp\": \"2023-11-24 08:08:00.000\",\n            \"open\": \"1.2534400000\",\n            \"high\": \"1.2534400000\",\n            \"low\": \"1.2533400000\",\n            \"close\": \"1.2533500000\"\n        },\n        {\n            \"timestamp\": \"2023-11-24 08:09:00.000\",\n            \"open\": \"1.2533500000\",\n            \"high\": \"1.2533800000\",\n            \"low\": \"1.2531900000\",\n            \"close\": \"1.2531900000\"\n        },\n        {\n            \"timestamp\": \"2023-11-24 08:10:00.000\",\n            \"open\": \"1.2531800000\",\n            \"high\": \"1.2533500000\",\n            \"low\": \"1.2531600000\",\n            \"close\": \"1.2532500000\"\n        },\n        {\n            \"timestamp\": \"2023-11-24 08:11:00.000\",\n            \"open\": \"1.2532500000\",\n            \"high\": \"1.2534500000\",\n            \"low\": \"1.2532100000\",\n            \"close\": \"1.2532600000\"\n        },\n        {\n            \"timestamp\": \"2023-11-24 08:12:00.000\",\n            \"open\": \"1.2532600000\",\n            \"high\": \"1.2533900000\",\n            \"low\": \"1.2531900000\",\n            \"close\": \"1.2533100000\"\n        },\n        {\n            \"timestamp\": \"2023-11-24 08:13:00.000\",\n            \"open\": \"1.2533100000\",\n            \"high\": \"1.2533600000\",\n            \"low\": \"1.2531800000\",\n            \"close\": \"1.2533000000\"\n        },\n        {\n            \"timestamp\": \"2023-11-24 08:14:00.000\",\n            \"open\": \"1.2533000000\",\n            \"high\": \"1.2534500000\",\n            \"low\": \"1.2533000000\",\n            \"close\": \"1.2533600000\"\n        },\n        {\n            \"timestamp\": \"2023-11-24 08:15:00.000\",\n            \"open\": \"1.2533600000\",\n            \"high\": \"1.2535800000\",\n            \"low\": \"1.2533600000\",\n            \"close\": \"1.2535800000\"\n        },\n        {\n            \"timestamp\": \"2023-11-24 08:16:00.000\",\n            \"open\": \"1.2535800000\",\n            \"high\": \"1.2537100000\",\n            \"low\": \"1.2535600000\",\n            \"close\": \"1.2536600000\"\n        },\n        {\n            \"timestamp\": \"2023-11-24 08:17:00.000\",\n            \"open\": \"1.2536600000\",\n            \"high\": \"1.2537500000\",\n            \"low\": \"1.2535800000\",\n            \"close\": \"1.2535800000\"\n        },\n        {\n            \"timestamp\": \"2023-11-24 08:18:00.000\",\n            \"open\": \"1.2535800000\",\n            \"high\": \"1.2535900000\",\n            \"low\": \"1.2534700000\",\n            \"close\": \"1.2534900000\"\n        },\n        {\n            \"timestamp\": \"2023-11-24 08:19:00.000\",\n            \"open\": \"1.2534900000\",\n            \"high\": \"1.2535800000\",\n            \"low\": \"1.2534500000\",\n            \"close\": \"1.2535400000\"\n        },\n        {\n            \"timestamp\": \"2023-11-24 08:20:00.000\",\n            \"open\": \"1.2535400000\",\n            \"high\": \"1.2537100000\",\n            \"low\": \"1.2534700000\",\n            \"close\": \"1.2536700000\"\n        },\n        {\n            \"timestamp\": \"2023-11-24 08:21:00.000\",\n            \"open\": \"1.2536700000\",\n            \"high\": \"1.2542500000\",\n            \"low\": \"1.2536700000\",\n            \"close\": \"1.2542500000\"\n        },\n        {\n            \"timestamp\": \"2023-11-24 08:22:00.000\",\n            \"open\": \"1.2542500000\",\n            \"high\": \"1.2543400000\",\n            \"low\": \"1.2538700000\",\n            \"close\": \"1.2539300000\"\n        },\n        {\n            \"timestamp\": \"2023-11-24 08:23:00.000\",\n            \"open\": \"1.2539400000\",\n            \"high\": \"1.2540800000\",\n            \"low\": \"1.2539300000\",\n            \"close\": \"1.2540700000\"\n        },\n        {\n            \"timestamp\": \"2023-11-24 08:24:00.000\",\n            \"open\": \"1.2540700000\",\n            \"high\": \"1.2544500000\",\n            \"low\": \"1.2540700000\",\n            \"close\": \"1.2544200000\"\n        },\n        {\n            \"timestamp\": \"2023-11-24 08:25:00.000\",\n            \"open\": \"1.2544300000\",\n            \"high\": \"1.2545500000\",\n            \"low\": \"1.2541600000\",\n            \"close\": \"1.2541900000\"\n        },\n        {\n            \"timestamp\": \"2023-11-24 08:26:00.000\",\n            \"open\": \"1.2541900000\",\n            \"high\": \"1.2541900000\",\n            \"low\": \"1.2540300000\",\n            \"close\": \"1.2541400000\"\n        },\n        {\n            \"timestamp\": \"2023-11-24 08:27:00.000\",\n            \"open\": \"1.2541400000\",\n            \"high\": \"1.2541700000\",\n            \"low\": \"1.2540400000\",\n            \"close\": \"1.2541600000\"\n        },\n        {\n            \"timestamp\": \"2023-11-24 08:28:00.000\",\n            \"open\": \"1.2541600000\",\n            \"high\": \"1.2543900000\",\n            \"low\": \"1.2541500000\",\n            \"close\": \"1.2543600000\"\n        },\n        {\n            \"timestamp\": \"2023-11-24 08:29:00.000\",\n            \"open\": \"1.2543600000\",\n            \"high\": \"1.2545000000\",\n            \"low\": \"1.2543400000\",\n            \"close\": \"1.2544700000\"\n        },\n        {\n            \"timestamp\": \"2023-11-24 08:30:00.000\",\n            \"open\": \"1.2544700000\",\n            \"high\": \"1.2544800000\",\n            \"low\": \"1.2540700000\",\n            \"close\": \"1.2542500000\"\n        },\n        {\n            \"timestamp\": \"2023-11-24 08:31:00.000\",\n            \"open\": \"1.2542500000\",\n            \"high\": \"1.2542900000\",\n            \"low\": \"1.2540900000\",\n            \"close\": \"1.2542600000\"\n        },\n        {\n            \"timestamp\": \"2023-11-24 08:32:00.000\",\n            \"open\": \"1.2542600000\",\n            \"high\": \"1.2545800000\",\n            \"low\": \"1.2542500000\",\n            \"close\": \"1.2545500000\"\n        },\n        {\n            \"timestamp\": \"2023-11-24 08:33:00.000\",\n            \"open\": \"1.2545500000\",\n            \"high\": \"1.2546500000\",\n            \"low\": \"1.2544900000\",\n            \"close\": \"1.2545700000\"\n        },\n        {\n            \"timestamp\": \"2023-11-24 08:34:00.000\",\n            \"open\": \"1.2545700000\",\n            \"high\": \"1.2547700000\",\n            \"low\": \"1.2545500000\",\n            \"close\": \"1.2545700000\"\n        },\n        {\n            \"timestamp\": \"2023-11-24 08:35:00.000\",\n            \"open\": \"1.2545700000\",\n            \"high\": \"1.2546700000\",\n            \"low\": \"1.2544700000\",\n            \"close\": \"1.2544700000\"\n        },\n        {\n            \"timestamp\": \"2023-11-24 08:36:00.000\",\n            \"open\": \"1.2544700000\",\n            \"high\": \"1.2546100000\",\n            \"low\": \"1.2542900000\",\n            \"close\": \"1.2545900000\"\n        },\n        {\n            \"timestamp\": \"2023-11-24 08:37:00.000\",\n            \"open\": \"1.2545900000\",\n            \"high\": \"1.2546900000\",\n            \"low\": \"1.2545800000\",\n            \"close\": \"1.2546500000\"\n        },\n        {\n            \"timestamp\": \"2023-11-24 08:38:00.000\",\n            \"open\": \"1.2546500000\",\n            \"high\": \"1.2547900000\",\n            \"low\": \"1.2545900000\",\n            \"close\": \"1.2547900000\"\n        },\n        {\n            \"timestamp\": \"2023-11-24 08:39:00.000\",\n            \"open\": \"1.2547900000\",\n            \"high\": \"1.2549200000\",\n            \"low\": \"1.2547500000\",\n            \"close\": \"1.2549100000\"\n        },\n        {\n            \"timestamp\": \"2023-11-24 08:40:00.000\",\n            \"open\": \"1.2549100000\",\n            \"high\": \"1.2552100000\",\n            \"low\": \"1.2549000000\",\n            \"close\": \"1.2551100000\"\n        },\n        {\n            \"timestamp\": \"2023-11-24 08:41:00.000\",\n            \"open\": \"1.2551000000\",\n            \"high\": \"1.2551300000\",\n            \"low\": \"1.2550500000\",\n            \"close\": \"1.2550700000\"\n        },\n        {\n            \"timestamp\": \"2023-11-24 08:42:00.000\",\n            \"open\": \"1.2550700000\",\n            \"high\": \"1.2551200000\",\n            \"low\": \"1.2549200000\",\n            \"close\": \"1.2550700000\"\n        },\n        {\n            \"timestamp\": \"2023-11-24 08:43:00.000\",\n            \"open\": \"1.2550700000\",\n            \"high\": \"1.2553200000\",\n            \"low\": \"1.2550700000\",\n            \"close\": \"1.2552400000\"\n        },\n        {\n            \"timestamp\": \"2023-11-24 08:44:00.000\",\n            \"open\": \"1.2552400000\",\n            \"high\": \"1.2552800000\",\n            \"low\": \"1.2551500000\",\n            \"close\": \"1.2552500000\"\n        },\n        {\n            \"timestamp\": \"2023-11-24 08:45:00.000\",\n            \"open\": \"1.2552400000\",\n            \"high\": \"1.2552600000\",\n            \"low\": \"1.2550400000\",\n            \"close\": \"1.2550400000\"\n        },\n        {\n            \"timestamp\": \"2023-11-24 08:46:00.000\",\n            \"open\": \"1.2550400000\",\n            \"high\": \"1.2551800000\",\n            \"low\": \"1.2549400000\",\n            \"close\": \"1.2551400000\"\n        },\n        {\n            \"timestamp\": \"2023-11-24 08:47:00.000\",\n            \"open\": \"1.2551500000\",\n            \"high\": \"1.2554500000\",\n            \"low\": \"1.2551100000\",\n            \"close\": \"1.2554500000\"\n        },\n        {\n            \"timestamp\": \"2023-11-24 08:48:00.000\",\n            \"open\": \"1.2554500000\",\n            \"high\": \"1.2555400000\",\n            \"low\": \"1.2553500000\",\n            \"close\": \"1.2555400000\"\n        },\n        {\n            \"timestamp\": \"2023-11-24 08:49:00.000\",\n            \"open\": \"1.2555400000\",\n            \"high\": \"1.2556700000\",\n            \"low\": \"1.2554100000\",\n            \"close\": \"1.2556600000\"\n        },\n        {\n            \"timestamp\": \"2023-11-24 08:50:00.000\",\n            \"open\": \"1.2556600000\",\n            \"high\": \"1.2556800000\",\n            \"low\": \"1.2555200000\",\n            \"close\": \"1.2555700000\"\n        },\n        {\n            \"timestamp\": \"2023-11-24 08:51:00.000\",\n            \"open\": \"1.2555700000\",\n            \"high\": \"1.2557500000\",\n            \"low\": \"1.2555500000\",\n            \"close\": \"1.2556000000\"\n        },\n        {\n            \"timestamp\": \"2023-11-24 08:52:00.000\",\n            \"open\": \"1.2556000000\",\n            \"high\": \"1.2557700000\",\n            \"low\": \"1.2555800000\",\n            \"close\": \"1.2557600000\"\n        },\n        {\n            \"timestamp\": \"2023-11-24 08:53:00.000\",\n            \"open\": \"1.2557600000\",\n            \"high\": \"1.2557700000\",\n            \"low\": \"1.2556500000\",\n            \"close\": \"1.2556700000\"\n        },\n        {\n            \"timestamp\": \"2023-11-24 08:54:00.000\",\n            \"open\": \"1.2556700000\",\n            \"high\": \"1.2557200000\",\n            \"low\": \"1.2554900000\",\n            \"close\": \"1.2557000000\"\n        },\n        {\n            \"timestamp\": \"2023-11-24 08:55:00.000\",\n            \"open\": \"1.2557200000\",\n            \"high\": \"1.2557500000\",\n            \"low\": \"1.2556300000\",\n            \"close\": \"1.2556900000\"\n        },\n        {\n            \"timestamp\": \"2023-11-24 08:56:00.000\",\n            \"open\": \"1.2556900000\",\n            \"high\": \"1.2557600000\",\n            \"low\": \"1.2556500000\",\n            \"close\": \"1.2556900000\"\n        },\n        {\n            \"timestamp\": \"2023-11-24 08:57:00.000\",\n            \"open\": \"1.2556900000\",\n            \"high\": \"1.2559600000\",\n            \"low\": \"1.2556700000\",\n            \"close\": \"1.2559600000\"\n        },\n        {\n            \"timestamp\": \"2023-11-24 08:58:00.000\",\n            \"open\": \"1.2559600000\",\n            \"high\": \"1.2559600000\",\n            \"low\": \"1.2558700000\",\n            \"close\": \"1.2558700000\"\n        },\n        {\n            \"timestamp\": \"2023-11-24 08:59:00.000\",\n            \"open\": \"1.2558700000\",\n            \"high\": \"1.2559600000\",\n            \"low\": \"1.2558700000\",\n            \"close\": \"1.2559600000\"\n        },\n        {\n            \"timestamp\": \"2023-11-24 09:00:00.000\",\n            \"open\": \"1.2559600000\",\n            \"high\": \"1.2560100000\",\n            \"low\": \"1.2557400000\",\n            \"close\": \"1.2557800000\"\n        }\n    ]\n}"}],"_postman_id":"171ae307-decd-4c32-a0a1-546cb898cc3e"},{"name":"offset ohlc","event":[{"listen":"prerequest","script":{"exec":[""],"type":"text/javascript","packages":{},"id":"0175b63f-3529-4c21-8d78-d4d2e88c2a0a"}}],"id":"db63a551-298d-4caf-a0a9-e7c8fd274bb9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"body":{"mode":"urlencoded","urlencoded":[]},"url":"{{FIAT_API_ENDPOINT}}/historic/midrate/v1/offsetohlc/?currencyPair=<currency pair>&tenor=<tenor>&startTimestamp=<start timestamp>&endTimestamp=<end timestamp>&period=<period>","description":"<p>This API will return an array of OHLC data. It is not necessary to define the type (deliverability) and route (observed or crossed) when making a call.</p>\n<p>OHLC is available in periods of 1 - 60 seconds. For durations of up to 1 hour. For longer durations please contact your account manager for access to the bulk API.</p>\n<p>OHLC will be returned for the requested periods. Note that it is possible to set a start time which is NOT an exact minute, enabling OHLC from that offset position.</p>\n<p><strong>NOTE:</strong> currencies must be submitted in a standard format, e.g. ‘EURUSD’.</p>\n<p>For accepted tenor values see <strong>Available fiat tenors</strong> in the general folder.</p>\n<p>This API requires authentication, please see instructions in the API\\Authentication folder for how to add the additional necessary header to your request. If you would like to use this collection in Postman to request the data, please follow the instructions in the introduction to this documentation.</p>\n","auth":{"type":"oauth2","oauth2":{"refreshRequestParams":"<refresh-request-params>","password":"{{AUTH_PASSWORD}}","username":"{{AUTH_USERNAME}}","refreshTokenUrl":"<refresh-token-url>","accessTokenUrl":"<access-token-url>","grant_type":"<grant_type>","authUrl":"<auth-url>"},"isInherited":true,"source":{"_postman_id":"9ebb9928-d7bc-4f70-89b3-72c671248367","id":"9ebb9928-d7bc-4f70-89b3-72c671248367","name":"API","type":"folder"}},"urlObject":{"path":["historic","midrate","v1","offsetohlc",""],"host":["{{FIAT_API_ENDPOINT}}"],"query":[{"description":{"content":"<p>Required currency pair e.g. GBPUSD</p>\n","type":"text/plain"},"key":"currencyPair","value":"<currency pair>"},{"description":{"content":"<p>Required tenor e.g. \"SPT\", \"ON\", \"SN\", \"W1\", \"M1\", ...</p>\n","type":"text/plain"},"key":"tenor","value":"<tenor>"},{"description":{"content":"<p>Required start timestamp in format yyyy-mm-dd hh:mm:ss.000 (ms are optional)</p>\n","type":"text/plain"},"key":"startTimestamp","value":"<start timestamp>"},{"description":{"content":"<p>Required end timestamp in format yyyy-mm-dd hh:mm:ss.000 (ms are optional)</p>\n","type":"text/plain"},"key":"endTimestamp","value":"<end timestamp>"},{"description":{"content":"<p>period of ohlc in seconds - must be a value of 1 - 60</p>\n","type":"text/plain"},"key":"period","value":"<period>"}],"variable":[]}},"response":[{"id":"258ddedb-26e4-4388-88b3-ea21db2a0436","name":"GBPUSD SPT 2024-10-10 07:00:03 to 2024-10-10 08:00:03","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{FIAT_API_ENDPOINT}}/historic/midrate/v1/offsetohlc/?currencyPair=GBPUSD&tenor=SPT&startTimestamp=2024-10-10 07:00:03&endTimestamp=2024-10-10 08:00:03&period=20","host":["{{FIAT_API_ENDPOINT}}"],"path":["historic","midrate","v1","offsetohlc",""],"query":[{"key":"currencyPair","value":"GBPUSD","description":"Required currency pair e.g. GBPUSD"},{"key":"tenor","value":"SPT","description":"Required tenor e.g. \"SPT\", \"ON\", \"SN\", \"W1\", \"M1\", ..."},{"key":"startTimestamp","value":"2024-10-10 07:00:03","description":"Required start timestamp in format yyyy-mm-dd hh:mm:ss.000 (ms are optional)"},{"key":"endTimestamp","value":"2024-10-10 08:00:03","description":"Required end timestamp in format yyyy-mm-dd hh:mm:ss.000 (ms are optional)"},{"key":"period","value":"20","description":"period of ohlc in seconds - must be a value of 1 - 60"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"openresty","enabled":true},{"key":"Date","value":"Thu, 10 Oct 2024 08:42:02 GMT","enabled":true},{"key":"Content-Type","value":"application/json; charset=utf-8","enabled":true},{"key":"Content-Length","value":"16066","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"X-Powered-By","value":"Express","enabled":true},{"key":"ETag","value":"W/\"3ec2-gLTdrjOD/0LnmvBt/Are9wxiBbE\"","enabled":true},{"key":"Access-Control-Allow-Credentials","value":"true","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"p\": \"GBPUSD\",\n    \"in\": false,\n    \"io\": false,\n    \"ohlcs\": [\n        {\n            \"rt\": \"2024-10-10 07:00:03.000\",\n            \"o\": \"1.30775\",\n            \"h\": \"1.30785\",\n            \"l\": \"1.30774\",\n            \"c\": \"1.30774\"\n        },\n        {\n            \"rt\": \"2024-10-10 07:00:23.000\",\n            \"o\": \"1.30774\",\n            \"h\": \"1.30784\",\n            \"l\": \"1.30774\",\n            \"c\": \"1.30781\"\n        },\n        {\n            \"rt\": \"2024-10-10 07:00:43.000\",\n            \"o\": \"1.30781\",\n            \"h\": \"1.30781\",\n            \"l\": \"1.30768\",\n            \"c\": \"1.30773\"\n        },\n        {\n            \"rt\": \"2024-10-10 07:01:03.000\",\n            \"o\": \"1.30773\",\n            \"h\": \"1.30773\",\n            \"l\": \"1.30747\",\n            \"c\": \"1.30747\"\n        },\n        {\n            \"rt\": \"2024-10-10 07:01:23.000\",\n            \"o\": \"1.30747\",\n            \"h\": \"1.30769\",\n            \"l\": \"1.30746\",\n            \"c\": \"1.30767\"\n        },\n        {\n            \"rt\": \"2024-10-10 07:01:43.000\",\n            \"o\": \"1.30768\",\n            \"h\": \"1.30768\",\n            \"l\": \"1.30751\",\n            \"c\": \"1.30752\"\n        },\n        {\n            \"rt\": \"2024-10-10 07:02:03.000\",\n            \"o\": \"1.30752\",\n            \"h\": \"1.30753\",\n            \"l\": \"1.30742\",\n            \"c\": \"1.30743\"\n        },\n        {\n            \"rt\": \"2024-10-10 07:02:23.000\",\n            \"o\": \"1.30743\",\n            \"h\": \"1.30747\",\n            \"l\": \"1.30741\",\n            \"c\": \"1.30747\"\n        },\n        {\n            \"rt\": \"2024-10-10 07:02:43.000\",\n            \"o\": \"1.30747\",\n            \"h\": \"1.30759\",\n            \"l\": \"1.30744\",\n            \"c\": \"1.30750\"\n        },\n        {\n            \"rt\": \"2024-10-10 07:03:03.000\",\n            \"o\": \"1.30750\",\n            \"h\": \"1.30750\",\n            \"l\": \"1.30731\",\n            \"c\": \"1.30731\"\n        },\n        {\n            \"rt\": \"2024-10-10 07:03:23.000\",\n            \"o\": \"1.30731\",\n            \"h\": \"1.30754\",\n            \"l\": \"1.30731\",\n            \"c\": \"1.30753\"\n        },\n        {\n            \"rt\": \"2024-10-10 07:03:43.000\",\n            \"o\": \"1.30753\",\n            \"h\": \"1.30760\",\n            \"l\": \"1.30746\",\n            \"c\": \"1.30755\"\n        },\n        {\n            \"rt\": \"2024-10-10 07:04:03.000\",\n            \"o\": \"1.30755\",\n            \"h\": \"1.30773\",\n            \"l\": \"1.30754\",\n            \"c\": \"1.30773\"\n        },\n        {\n            \"rt\": \"2024-10-10 07:04:23.000\",\n            \"o\": \"1.30773\",\n            \"h\": \"1.30773\",\n            \"l\": \"1.30763\",\n            \"c\": \"1.30765\"\n        },\n        {\n            \"rt\": \"2024-10-10 07:04:43.000\",\n            \"o\": \"1.30765\",\n            \"h\": \"1.30771\",\n            \"l\": \"1.30763\",\n            \"c\": \"1.30771\"\n        },\n        {\n            \"rt\": \"2024-10-10 07:05:03.000\",\n            \"o\": \"1.30771\",\n            \"h\": \"1.30774\",\n            \"l\": \"1.30770\",\n            \"c\": \"1.30773\"\n        },\n        {\n            \"rt\": \"2024-10-10 07:05:23.000\",\n            \"o\": \"1.30773\",\n            \"h\": \"1.30773\",\n            \"l\": \"1.30763\",\n            \"c\": \"1.30764\"\n        },\n        {\n            \"rt\": \"2024-10-10 07:05:43.000\",\n            \"o\": \"1.30764\",\n            \"h\": \"1.30771\",\n            \"l\": \"1.30764\",\n            \"c\": \"1.30765\"\n        },\n        {\n            \"rt\": \"2024-10-10 07:06:03.000\",\n            \"o\": \"1.30765\",\n            \"h\": \"1.30770\",\n            \"l\": \"1.30764\",\n            \"c\": \"1.30768\"\n        },\n        {\n            \"rt\": \"2024-10-10 07:06:23.000\",\n            \"o\": \"1.30768\",\n            \"h\": \"1.30768\",\n            \"l\": \"1.30764\",\n            \"c\": \"1.30767\"\n        },\n        {\n            \"rt\": \"2024-10-10 07:06:43.000\",\n            \"o\": \"1.30767\",\n            \"h\": \"1.30778\",\n            \"l\": \"1.30767\",\n            \"c\": \"1.30773\"\n        },\n        {\n            \"rt\": \"2024-10-10 07:07:03.000\",\n            \"o\": \"1.30773\",\n            \"h\": \"1.30780\",\n            \"l\": \"1.30767\",\n            \"c\": \"1.30777\"\n        },\n        {\n            \"rt\": \"2024-10-10 07:07:23.000\",\n            \"o\": \"1.30777\",\n            \"h\": \"1.30783\",\n            \"l\": \"1.30777\",\n            \"c\": \"1.30780\"\n        },\n        {\n            \"rt\": \"2024-10-10 07:07:43.000\",\n            \"o\": \"1.30780\",\n            \"h\": \"1.30784\",\n            \"l\": \"1.30775\",\n            \"c\": \"1.30780\"\n        },\n        {\n            \"rt\": \"2024-10-10 07:08:03.000\",\n            \"o\": \"1.30780\",\n            \"h\": \"1.30780\",\n            \"l\": \"1.30769\",\n            \"c\": \"1.30772\"\n        },\n        {\n            \"rt\": \"2024-10-10 07:08:23.000\",\n            \"o\": \"1.30772\",\n            \"h\": \"1.30781\",\n            \"l\": \"1.30772\",\n            \"c\": \"1.30775\"\n        },\n        {\n            \"rt\": \"2024-10-10 07:08:43.000\",\n            \"o\": \"1.30775\",\n            \"h\": \"1.30793\",\n            \"l\": \"1.30774\",\n            \"c\": \"1.30789\"\n        },\n        {\n            \"rt\": \"2024-10-10 07:09:03.000\",\n            \"o\": \"1.30789\",\n            \"h\": \"1.30794\",\n            \"l\": \"1.30785\",\n            \"c\": \"1.30786\"\n        },\n        {\n            \"rt\": \"2024-10-10 07:09:23.000\",\n            \"o\": \"1.30786\",\n            \"h\": \"1.30786\",\n            \"l\": \"1.30779\",\n            \"c\": \"1.30781\"\n        },\n        {\n            \"rt\": \"2024-10-10 07:09:43.000\",\n            \"o\": \"1.30781\",\n            \"h\": \"1.30792\",\n            \"l\": \"1.30780\",\n            \"c\": \"1.30788\"\n        },\n        {\n            \"rt\": \"2024-10-10 07:10:03.000\",\n            \"o\": \"1.30788\",\n            \"h\": \"1.30791\",\n            \"l\": \"1.30765\",\n            \"c\": \"1.30770\"\n        },\n        {\n            \"rt\": \"2024-10-10 07:10:23.000\",\n            \"o\": \"1.30770\",\n            \"h\": \"1.30774\",\n            \"l\": \"1.30765\",\n            \"c\": \"1.30774\"\n        },\n        {\n            \"rt\": \"2024-10-10 07:10:43.000\",\n            \"o\": \"1.30774\",\n            \"h\": \"1.30774\",\n            \"l\": \"1.30765\",\n            \"c\": \"1.30767\"\n        },\n        {\n            \"rt\": \"2024-10-10 07:11:03.000\",\n            \"o\": \"1.30768\",\n            \"h\": \"1.30784\",\n            \"l\": \"1.30768\",\n            \"c\": \"1.30783\"\n        },\n        {\n            \"rt\": \"2024-10-10 07:11:23.000\",\n            \"o\": \"1.30783\",\n            \"h\": \"1.30790\",\n            \"l\": \"1.30778\",\n            \"c\": \"1.30790\"\n        },\n        {\n            \"rt\": \"2024-10-10 07:11:43.000\",\n            \"o\": \"1.30790\",\n            \"h\": \"1.30793\",\n            \"l\": \"1.30784\",\n            \"c\": \"1.30784\"\n        },\n        {\n            \"rt\": \"2024-10-10 07:12:03.000\",\n            \"o\": \"1.30784\",\n            \"h\": \"1.30793\",\n            \"l\": \"1.30784\",\n            \"c\": \"1.30789\"\n        },\n        {\n            \"rt\": \"2024-10-10 07:12:23.000\",\n            \"o\": \"1.30789\",\n            \"h\": \"1.30789\",\n            \"l\": \"1.30782\",\n            \"c\": \"1.30784\"\n        },\n        {\n            \"rt\": \"2024-10-10 07:12:43.000\",\n            \"o\": \"1.30784\",\n            \"h\": \"1.30785\",\n            \"l\": \"1.30778\",\n            \"c\": \"1.30779\"\n        },\n        {\n            \"rt\": \"2024-10-10 07:13:03.000\",\n            \"o\": \"1.30779\",\n            \"h\": \"1.30783\",\n            \"l\": \"1.30777\",\n            \"c\": \"1.30783\"\n        },\n        {\n            \"rt\": \"2024-10-10 07:13:23.000\",\n            \"o\": \"1.30783\",\n            \"h\": \"1.30786\",\n            \"l\": \"1.30777\",\n            \"c\": \"1.30781\"\n        },\n        {\n            \"rt\": \"2024-10-10 07:13:43.000\",\n            \"o\": \"1.30781\",\n            \"h\": \"1.30789\",\n            \"l\": \"1.30780\",\n            \"c\": \"1.30784\"\n        },\n        {\n            \"rt\": \"2024-10-10 07:14:03.000\",\n            \"o\": \"1.30784\",\n            \"h\": \"1.30784\",\n            \"l\": \"1.30778\",\n            \"c\": \"1.30781\"\n        },\n        {\n            \"rt\": \"2024-10-10 07:14:23.000\",\n            \"o\": \"1.30781\",\n            \"h\": \"1.30785\",\n            \"l\": \"1.30778\",\n            \"c\": \"1.30784\"\n        },\n        {\n            \"rt\": \"2024-10-10 07:14:43.000\",\n            \"o\": \"1.30784\",\n            \"h\": \"1.30788\",\n            \"l\": \"1.30781\",\n            \"c\": \"1.30785\"\n        },\n        {\n            \"rt\": \"2024-10-10 07:15:03.000\",\n            \"o\": \"1.30786\",\n            \"h\": \"1.30795\",\n            \"l\": \"1.30782\",\n            \"c\": \"1.30793\"\n        },\n        {\n            \"rt\": \"2024-10-10 07:15:23.000\",\n            \"o\": \"1.30793\",\n            \"h\": \"1.30811\",\n            \"l\": \"1.30793\",\n            \"c\": \"1.30805\"\n        },\n        {\n            \"rt\": \"2024-10-10 07:15:43.000\",\n            \"o\": \"1.30805\",\n            \"h\": \"1.30805\",\n            \"l\": \"1.30795\",\n            \"c\": \"1.30795\"\n        },\n        {\n            \"rt\": \"2024-10-10 07:16:03.000\",\n            \"o\": \"1.30795\",\n            \"h\": \"1.30804\",\n            \"l\": \"1.30795\",\n            \"c\": \"1.30796\"\n        },\n        {\n            \"rt\": \"2024-10-10 07:16:23.000\",\n            \"o\": \"1.30796\",\n            \"h\": \"1.30799\",\n            \"l\": \"1.30795\",\n            \"c\": \"1.30797\"\n        },\n        {\n            \"rt\": \"2024-10-10 07:16:43.000\",\n            \"o\": \"1.30797\",\n            \"h\": \"1.30798\",\n            \"l\": \"1.30785\",\n            \"c\": \"1.30794\"\n        },\n        {\n            \"rt\": \"2024-10-10 07:17:03.000\",\n            \"o\": \"1.30794\",\n            \"h\": \"1.30804\",\n            \"l\": \"1.30790\",\n            \"c\": \"1.30800\"\n        },\n        {\n            \"rt\": \"2024-10-10 07:17:23.000\",\n            \"o\": \"1.30800\",\n            \"h\": \"1.30805\",\n            \"l\": \"1.30798\",\n            \"c\": \"1.30798\"\n        },\n        {\n            \"rt\": \"2024-10-10 07:17:43.000\",\n            \"o\": \"1.30798\",\n            \"h\": \"1.30800\",\n            \"l\": \"1.30793\",\n            \"c\": \"1.30793\"\n        },\n        {\n            \"rt\": \"2024-10-10 07:18:03.000\",\n            \"o\": \"1.30793\",\n            \"h\": \"1.30802\",\n            \"l\": \"1.30791\",\n            \"c\": \"1.30793\"\n        },\n        {\n            \"rt\": \"2024-10-10 07:18:23.000\",\n            \"o\": \"1.30793\",\n            \"h\": \"1.30794\",\n            \"l\": \"1.30786\",\n            \"c\": \"1.30794\"\n        },\n        {\n            \"rt\": \"2024-10-10 07:18:43.000\",\n            \"o\": \"1.30794\",\n            \"h\": \"1.30796\",\n            \"l\": \"1.30786\",\n            \"c\": \"1.30793\"\n        },\n        {\n            \"rt\": \"2024-10-10 07:19:03.000\",\n            \"o\": \"1.30793\",\n            \"h\": \"1.30793\",\n            \"l\": \"1.30774\",\n            \"c\": \"1.30776\"\n        },\n        {\n            \"rt\": \"2024-10-10 07:19:23.000\",\n            \"o\": \"1.30776\",\n            \"h\": \"1.30777\",\n            \"l\": \"1.30774\",\n            \"c\": \"1.30776\"\n        },\n        {\n            \"rt\": \"2024-10-10 07:19:43.000\",\n            \"o\": \"1.30776\",\n            \"h\": \"1.30776\",\n            \"l\": \"1.30772\",\n            \"c\": \"1.30775\"\n        },\n        {\n            \"rt\": \"2024-10-10 07:20:03.000\",\n            \"o\": \"1.30775\",\n            \"h\": \"1.30775\",\n            \"l\": \"1.30771\",\n            \"c\": \"1.30773\"\n        },\n        {\n            \"rt\": \"2024-10-10 07:20:23.000\",\n            \"o\": \"1.30773\",\n            \"h\": \"1.30776\",\n            \"l\": \"1.30773\",\n            \"c\": \"1.30775\"\n        },\n        {\n            \"rt\": \"2024-10-10 07:20:43.000\",\n            \"o\": \"1.30775\",\n            \"h\": \"1.30785\",\n            \"l\": \"1.30774\",\n            \"c\": \"1.30785\"\n        },\n        {\n            \"rt\": \"2024-10-10 07:21:03.000\",\n            \"o\": \"1.30785\",\n            \"h\": \"1.30793\",\n            \"l\": \"1.30784\",\n            \"c\": \"1.30786\"\n        },\n        {\n            \"rt\": \"2024-10-10 07:21:23.000\",\n            \"o\": \"1.30786\",\n            \"h\": \"1.30787\",\n            \"l\": \"1.30781\",\n            \"c\": \"1.30786\"\n        },\n        {\n            \"rt\": \"2024-10-10 07:21:43.000\",\n            \"o\": \"1.30786\",\n            \"h\": \"1.30792\",\n            \"l\": \"1.30783\",\n            \"c\": \"1.30784\"\n        },\n        {\n            \"rt\": \"2024-10-10 07:22:03.000\",\n            \"o\": \"1.30784\",\n            \"h\": \"1.30787\",\n            \"l\": \"1.30776\",\n            \"c\": \"1.30777\"\n        },\n        {\n            \"rt\": \"2024-10-10 07:22:23.000\",\n            \"o\": \"1.30776\",\n            \"h\": \"1.30776\",\n            \"l\": \"1.30771\",\n            \"c\": \"1.30772\"\n        },\n        {\n            \"rt\": \"2024-10-10 07:22:43.000\",\n            \"o\": \"1.30772\",\n            \"h\": \"1.30777\",\n            \"l\": \"1.30770\",\n            \"c\": \"1.30772\"\n        },\n        {\n            \"rt\": \"2024-10-10 07:23:03.000\",\n            \"o\": \"1.30772\",\n            \"h\": \"1.30775\",\n            \"l\": \"1.30769\",\n            \"c\": \"1.30769\"\n        },\n        {\n            \"rt\": \"2024-10-10 07:23:23.000\",\n            \"o\": \"1.30769\",\n            \"h\": \"1.30773\",\n            \"l\": \"1.30767\",\n            \"c\": \"1.30767\"\n        },\n        {\n            \"rt\": \"2024-10-10 07:23:43.000\",\n            \"o\": \"1.30767\",\n            \"h\": \"1.30776\",\n            \"l\": \"1.30765\",\n            \"c\": \"1.30776\"\n        },\n        {\n            \"rt\": \"2024-10-10 07:24:03.000\",\n            \"o\": \"1.30776\",\n            \"h\": \"1.30776\",\n            \"l\": \"1.30768\",\n            \"c\": \"1.30772\"\n        },\n        {\n            \"rt\": \"2024-10-10 07:24:23.000\",\n            \"o\": \"1.30773\",\n            \"h\": \"1.30773\",\n            \"l\": \"1.30768\",\n            \"c\": \"1.30769\"\n        },\n        {\n            \"rt\": \"2024-10-10 07:24:43.000\",\n            \"o\": \"1.30769\",\n            \"h\": \"1.30776\",\n            \"l\": \"1.30756\",\n            \"c\": \"1.30756\"\n        },\n        {\n            \"rt\": \"2024-10-10 07:25:03.000\",\n            \"o\": \"1.30756\",\n            \"h\": \"1.30756\",\n            \"l\": \"1.30754\",\n            \"c\": \"1.30756\"\n        },\n        {\n            \"rt\": \"2024-10-10 07:25:23.000\",\n            \"o\": \"1.30756\",\n            \"h\": \"1.30758\",\n            \"l\": \"1.30755\",\n            \"c\": \"1.30757\"\n        },\n        {\n            \"rt\": \"2024-10-10 07:25:43.000\",\n            \"o\": \"1.30757\",\n            \"h\": \"1.30758\",\n            \"l\": \"1.30754\",\n            \"c\": \"1.30756\"\n        },\n        {\n            \"rt\": \"2024-10-10 07:26:03.000\",\n            \"o\": \"1.30756\",\n            \"h\": \"1.30756\",\n            \"l\": \"1.30755\",\n            \"c\": \"1.30756\"\n        },\n        {\n            \"rt\": \"2024-10-10 07:26:23.000\",\n            \"o\": \"1.30756\",\n            \"h\": \"1.30757\",\n            \"l\": \"1.30753\",\n            \"c\": \"1.30756\"\n        },\n        {\n            \"rt\": \"2024-10-10 07:26:43.000\",\n            \"o\": \"1.30756\",\n            \"h\": \"1.30764\",\n            \"l\": \"1.30754\",\n            \"c\": \"1.30764\"\n        },\n        {\n            \"rt\": \"2024-10-10 07:27:03.000\",\n            \"o\": \"1.30764\",\n            \"h\": \"1.30765\",\n            \"l\": \"1.30760\",\n            \"c\": \"1.30763\"\n        },\n        {\n            \"rt\": \"2024-10-10 07:27:23.000\",\n            \"o\": \"1.30762\",\n            \"h\": \"1.30769\",\n            \"l\": \"1.30762\",\n            \"c\": \"1.30768\"\n        },\n        {\n            \"rt\": \"2024-10-10 07:27:43.000\",\n            \"o\": \"1.30768\",\n            \"h\": \"1.30785\",\n            \"l\": \"1.30766\",\n            \"c\": \"1.30785\"\n        },\n        {\n            \"rt\": \"2024-10-10 07:28:03.000\",\n            \"o\": \"1.30785\",\n            \"h\": \"1.30790\",\n            \"l\": \"1.30782\",\n            \"c\": \"1.30786\"\n        },\n        {\n            \"rt\": \"2024-10-10 07:28:23.000\",\n            \"o\": \"1.30786\",\n            \"h\": \"1.30790\",\n            \"l\": \"1.30777\",\n            \"c\": \"1.30790\"\n        },\n        {\n            \"rt\": \"2024-10-10 07:28:43.000\",\n            \"o\": \"1.30790\",\n            \"h\": \"1.30794\",\n            \"l\": \"1.30789\",\n            \"c\": \"1.30793\"\n        },\n        {\n            \"rt\": \"2024-10-10 07:29:03.000\",\n            \"o\": \"1.30793\",\n            \"h\": \"1.30793\",\n            \"l\": \"1.30787\",\n            \"c\": \"1.30787\"\n        },\n        {\n            \"rt\": \"2024-10-10 07:29:23.000\",\n            \"o\": \"1.30788\",\n            \"h\": \"1.30788\",\n            \"l\": \"1.30778\",\n            \"c\": \"1.30780\"\n        },\n        {\n            \"rt\": \"2024-10-10 07:29:43.000\",\n            \"o\": \"1.30779\",\n            \"h\": \"1.30792\",\n            \"l\": \"1.30778\",\n            \"c\": \"1.30788\"\n        },\n        {\n            \"rt\": \"2024-10-10 07:30:03.000\",\n            \"o\": \"1.30788\",\n            \"h\": \"1.30789\",\n            \"l\": \"1.30780\",\n            \"c\": \"1.30782\"\n        },\n        {\n            \"rt\": \"2024-10-10 07:30:23.000\",\n            \"o\": \"1.30782\",\n            \"h\": \"1.30788\",\n            \"l\": \"1.30777\",\n            \"c\": \"1.30786\"\n        },\n        {\n            \"rt\": \"2024-10-10 07:30:43.000\",\n            \"o\": \"1.30787\",\n            \"h\": \"1.30788\",\n            \"l\": \"1.30778\",\n            \"c\": \"1.30782\"\n        },\n        {\n            \"rt\": \"2024-10-10 07:31:03.000\",\n            \"o\": \"1.30782\",\n            \"h\": \"1.30784\",\n            \"l\": \"1.30778\",\n            \"c\": \"1.30783\"\n        },\n        {\n            \"rt\": \"2024-10-10 07:31:23.000\",\n            \"o\": \"1.30783\",\n            \"h\": \"1.30804\",\n            \"l\": \"1.30783\",\n            \"c\": \"1.30804\"\n        },\n        {\n            \"rt\": \"2024-10-10 07:31:43.000\",\n            \"o\": \"1.30804\",\n            \"h\": \"1.30813\",\n            \"l\": \"1.30804\",\n            \"c\": \"1.30811\"\n        },\n        {\n            \"rt\": \"2024-10-10 07:32:03.000\",\n            \"o\": \"1.30811\",\n            \"h\": \"1.30817\",\n            \"l\": \"1.30807\",\n            \"c\": \"1.30814\"\n        },\n        {\n            \"rt\": \"2024-10-10 07:32:23.000\",\n            \"o\": \"1.30814\",\n            \"h\": \"1.30814\",\n            \"l\": \"1.30804\",\n            \"c\": \"1.30809\"\n        },\n        {\n            \"rt\": \"2024-10-10 07:32:43.000\",\n            \"o\": \"1.30809\",\n            \"h\": \"1.30815\",\n            \"l\": \"1.30803\",\n            \"c\": \"1.30809\"\n        },\n        {\n            \"rt\": \"2024-10-10 07:33:03.000\",\n            \"o\": \"1.30809\",\n            \"h\": \"1.30811\",\n            \"l\": \"1.30803\",\n            \"c\": \"1.30810\"\n        },\n        {\n            \"rt\": \"2024-10-10 07:33:23.000\",\n            \"o\": \"1.30811\",\n            \"h\": \"1.30813\",\n            \"l\": \"1.30807\",\n            \"c\": \"1.30809\"\n        },\n        {\n            \"rt\": \"2024-10-10 07:33:43.000\",\n            \"o\": \"1.30809\",\n            \"h\": \"1.30815\",\n            \"l\": \"1.30807\",\n            \"c\": \"1.30815\"\n        },\n        {\n            \"rt\": \"2024-10-10 07:34:03.000\",\n            \"o\": \"1.30815\",\n            \"h\": \"1.30820\",\n            \"l\": \"1.30813\",\n            \"c\": \"1.30818\"\n        },\n        {\n            \"rt\": \"2024-10-10 07:34:23.000\",\n            \"o\": \"1.30817\",\n            \"h\": \"1.30823\",\n            \"l\": \"1.30813\",\n            \"c\": \"1.30820\"\n        },\n        {\n            \"rt\": \"2024-10-10 07:34:43.000\",\n            \"o\": \"1.30820\",\n            \"h\": \"1.30833\",\n            \"l\": \"1.30820\",\n            \"c\": \"1.30825\"\n        },\n        {\n            \"rt\": \"2024-10-10 07:35:03.000\",\n            \"o\": \"1.30826\",\n            \"h\": \"1.30832\",\n            \"l\": \"1.30823\",\n            \"c\": \"1.30829\"\n        },\n        {\n            \"rt\": \"2024-10-10 07:35:23.000\",\n            \"o\": \"1.30830\",\n            \"h\": \"1.30845\",\n            \"l\": \"1.30829\",\n            \"c\": \"1.30843\"\n        },\n        {\n            \"rt\": \"2024-10-10 07:35:43.000\",\n            \"o\": \"1.30844\",\n            \"h\": \"1.30853\",\n            \"l\": \"1.30843\",\n            \"c\": \"1.30850\"\n        },\n        {\n            \"rt\": \"2024-10-10 07:36:03.000\",\n            \"o\": \"1.30850\",\n            \"h\": \"1.30853\",\n            \"l\": \"1.30848\",\n            \"c\": \"1.30853\"\n        },\n        {\n            \"rt\": \"2024-10-10 07:36:23.000\",\n            \"o\": \"1.30853\",\n            \"h\": \"1.30853\",\n            \"l\": \"1.30836\",\n            \"c\": \"1.30841\"\n        },\n        {\n            \"rt\": \"2024-10-10 07:36:43.000\",\n            \"o\": \"1.30841\",\n            \"h\": \"1.30846\",\n            \"l\": \"1.30840\",\n            \"c\": \"1.30843\"\n        },\n        {\n            \"rt\": \"2024-10-10 07:37:03.000\",\n            \"o\": \"1.30843\",\n            \"h\": \"1.30843\",\n            \"l\": \"1.30832\",\n            \"c\": \"1.30833\"\n        },\n        {\n            \"rt\": \"2024-10-10 07:37:23.000\",\n            \"o\": \"1.30833\",\n            \"h\": \"1.30843\",\n            \"l\": \"1.30833\",\n            \"c\": \"1.30843\"\n        },\n        {\n            \"rt\": \"2024-10-10 07:37:43.000\",\n            \"o\": \"1.30843\",\n            \"h\": \"1.30843\",\n            \"l\": \"1.30840\",\n            \"c\": \"1.30842\"\n        },\n        {\n            \"rt\": \"2024-10-10 07:38:03.000\",\n            \"o\": \"1.30842\",\n            \"h\": \"1.30843\",\n            \"l\": \"1.30838\",\n            \"c\": \"1.30843\"\n        },\n        {\n            \"rt\": \"2024-10-10 07:38:23.000\",\n            \"o\": \"1.30843\",\n            \"h\": \"1.30858\",\n            \"l\": \"1.30841\",\n            \"c\": \"1.30852\"\n        },\n        {\n            \"rt\": \"2024-10-10 07:38:43.000\",\n            \"o\": \"1.30852\",\n            \"h\": \"1.30853\",\n            \"l\": \"1.30849\",\n            \"c\": \"1.30853\"\n        },\n        {\n            \"rt\": \"2024-10-10 07:39:03.000\",\n            \"o\": \"1.30853\",\n            \"h\": \"1.30866\",\n            \"l\": \"1.30853\",\n            \"c\": \"1.30863\"\n        },\n        {\n            \"rt\": \"2024-10-10 07:39:23.000\",\n            \"o\": \"1.30863\",\n            \"h\": \"1.30863\",\n            \"l\": \"1.30852\",\n            \"c\": \"1.30853\"\n        },\n        {\n            \"rt\": \"2024-10-10 07:39:43.000\",\n            \"o\": \"1.30853\",\n            \"h\": \"1.30856\",\n            \"l\": \"1.30851\",\n            \"c\": \"1.30854\"\n        },\n        {\n            \"rt\": \"2024-10-10 07:40:03.000\",\n            \"o\": \"1.30854\",\n            \"h\": \"1.30871\",\n            \"l\": \"1.30854\",\n            \"c\": \"1.30870\"\n        },\n        {\n            \"rt\": \"2024-10-10 07:40:23.000\",\n            \"o\": \"1.30870\",\n            \"h\": \"1.30877\",\n            \"l\": \"1.30869\",\n            \"c\": \"1.30876\"\n        },\n        {\n            \"rt\": \"2024-10-10 07:40:43.000\",\n            \"o\": \"1.30877\",\n            \"h\": \"1.30888\",\n            \"l\": \"1.30872\",\n            \"c\": \"1.30883\"\n        },\n        {\n            \"rt\": \"2024-10-10 07:41:03.000\",\n            \"o\": \"1.30883\",\n            \"h\": \"1.30887\",\n            \"l\": \"1.30880\",\n            \"c\": \"1.30883\"\n        },\n        {\n            \"rt\": \"2024-10-10 07:41:23.000\",\n            \"o\": \"1.30883\",\n            \"h\": \"1.30883\",\n            \"l\": \"1.30872\",\n            \"c\": \"1.30873\"\n        },\n        {\n            \"rt\": \"2024-10-10 07:41:43.000\",\n            \"o\": \"1.30873\",\n            \"h\": \"1.30873\",\n            \"l\": \"1.30863\",\n            \"c\": \"1.30865\"\n        },\n        {\n            \"rt\": \"2024-10-10 07:42:03.000\",\n            \"o\": \"1.30865\",\n            \"h\": \"1.30869\",\n            \"l\": \"1.30860\",\n            \"c\": \"1.30864\"\n        },\n        {\n            \"rt\": \"2024-10-10 07:42:23.000\",\n            \"o\": \"1.30865\",\n            \"h\": \"1.30873\",\n            \"l\": \"1.30865\",\n            \"c\": \"1.30870\"\n        },\n        {\n            \"rt\": \"2024-10-10 07:42:43.000\",\n            \"o\": \"1.30870\",\n            \"h\": \"1.30870\",\n            \"l\": \"1.30863\",\n            \"c\": \"1.30864\"\n        },\n        {\n            \"rt\": \"2024-10-10 07:43:03.000\",\n            \"o\": \"1.30864\",\n            \"h\": \"1.30865\",\n            \"l\": \"1.30858\",\n            \"c\": \"1.30864\"\n        },\n        {\n            \"rt\": \"2024-10-10 07:43:23.000\",\n            \"o\": \"1.30864\",\n            \"h\": \"1.30865\",\n            \"l\": \"1.30861\",\n            \"c\": \"1.30861\"\n        },\n        {\n            \"rt\": \"2024-10-10 07:43:43.000\",\n            \"o\": \"1.30861\",\n            \"h\": \"1.30862\",\n            \"l\": \"1.30853\",\n            \"c\": \"1.30857\"\n        },\n        {\n            \"rt\": \"2024-10-10 07:44:03.000\",\n            \"o\": \"1.30857\",\n            \"h\": \"1.30858\",\n            \"l\": \"1.30853\",\n            \"c\": \"1.30854\"\n        },\n        {\n            \"rt\": \"2024-10-10 07:44:23.000\",\n            \"o\": \"1.30855\",\n            \"h\": \"1.30858\",\n            \"l\": \"1.30852\",\n            \"c\": \"1.30854\"\n        },\n        {\n            \"rt\": \"2024-10-10 07:44:43.000\",\n            \"o\": \"1.30854\",\n            \"h\": \"1.30864\",\n            \"l\": \"1.30851\",\n            \"c\": \"1.30864\"\n        },\n        {\n            \"rt\": \"2024-10-10 07:45:03.000\",\n            \"o\": \"1.30864\",\n            \"h\": \"1.30873\",\n            \"l\": \"1.30864\",\n            \"c\": \"1.30867\"\n        },\n        {\n            \"rt\": \"2024-10-10 07:45:23.000\",\n            \"o\": \"1.30867\",\n            \"h\": \"1.30875\",\n            \"l\": \"1.30867\",\n            \"c\": \"1.30868\"\n        },\n        {\n            \"rt\": \"2024-10-10 07:45:43.000\",\n            \"o\": \"1.30870\",\n            \"h\": \"1.30873\",\n            \"l\": \"1.30861\",\n            \"c\": \"1.30861\"\n        },\n        {\n            \"rt\": \"2024-10-10 07:46:03.000\",\n            \"o\": \"1.30858\",\n            \"h\": \"1.30859\",\n            \"l\": \"1.30848\",\n            \"c\": \"1.30849\"\n        },\n        {\n            \"rt\": \"2024-10-10 07:46:23.000\",\n            \"o\": \"1.30849\",\n            \"h\": \"1.30864\",\n            \"l\": \"1.30849\",\n            \"c\": \"1.30864\"\n        },\n        {\n            \"rt\": \"2024-10-10 07:46:43.000\",\n            \"o\": \"1.30864\",\n            \"h\": \"1.30866\",\n            \"l\": \"1.30862\",\n            \"c\": \"1.30863\"\n        },\n        {\n            \"rt\": \"2024-10-10 07:47:03.000\",\n            \"o\": \"1.30863\",\n            \"h\": \"1.30879\",\n            \"l\": \"1.30862\",\n            \"c\": \"1.30878\"\n        },\n        {\n            \"rt\": \"2024-10-10 07:47:23.000\",\n            \"o\": \"1.30878\",\n            \"h\": \"1.30892\",\n            \"l\": \"1.30874\",\n            \"c\": \"1.30883\"\n        },\n        {\n            \"rt\": \"2024-10-10 07:47:43.000\",\n            \"o\": \"1.30884\",\n            \"h\": \"1.30887\",\n            \"l\": \"1.30881\",\n            \"c\": \"1.30883\"\n        },\n        {\n            \"rt\": \"2024-10-10 07:48:03.000\",\n            \"o\": \"1.30883\",\n            \"h\": \"1.30888\",\n            \"l\": \"1.30875\",\n            \"c\": \"1.30883\"\n        },\n        {\n            \"rt\": \"2024-10-10 07:48:23.000\",\n            \"o\": \"1.30883\",\n            \"h\": \"1.30885\",\n            \"l\": \"1.30876\",\n            \"c\": \"1.30878\"\n        },\n        {\n            \"rt\": \"2024-10-10 07:48:43.000\",\n            \"o\": \"1.30878\",\n            \"h\": \"1.30880\",\n            \"l\": \"1.30875\",\n            \"c\": \"1.30877\"\n        },\n        {\n            \"rt\": \"2024-10-10 07:49:03.000\",\n            \"o\": \"1.30877\",\n            \"h\": \"1.30877\",\n            \"l\": \"1.30848\",\n            \"c\": \"1.30855\"\n        },\n        {\n            \"rt\": \"2024-10-10 07:49:23.000\",\n            \"o\": \"1.30855\",\n            \"h\": \"1.30855\",\n            \"l\": \"1.30848\",\n            \"c\": \"1.30851\"\n        },\n        {\n            \"rt\": \"2024-10-10 07:49:43.000\",\n            \"o\": \"1.30851\",\n            \"h\": \"1.30873\",\n            \"l\": \"1.30850\",\n            \"c\": \"1.30872\"\n        },\n        {\n            \"rt\": \"2024-10-10 07:50:03.000\",\n            \"o\": \"1.30873\",\n            \"h\": \"1.30873\",\n            \"l\": \"1.30861\",\n            \"c\": \"1.30866\"\n        },\n        {\n            \"rt\": \"2024-10-10 07:50:23.000\",\n            \"o\": \"1.30866\",\n            \"h\": \"1.30872\",\n            \"l\": \"1.30860\",\n            \"c\": \"1.30860\"\n        },\n        {\n            \"rt\": \"2024-10-10 07:50:43.000\",\n            \"o\": \"1.30860\",\n            \"h\": \"1.30865\",\n            \"l\": \"1.30851\",\n            \"c\": \"1.30863\"\n        },\n        {\n            \"rt\": \"2024-10-10 07:51:03.000\",\n            \"o\": \"1.30863\",\n            \"h\": \"1.30884\",\n            \"l\": \"1.30862\",\n            \"c\": \"1.30883\"\n        },\n        {\n            \"rt\": \"2024-10-10 07:51:23.000\",\n            \"o\": \"1.30883\",\n            \"h\": \"1.30885\",\n            \"l\": \"1.30881\",\n            \"c\": \"1.30884\"\n        },\n        {\n            \"rt\": \"2024-10-10 07:51:43.000\",\n            \"o\": \"1.30884\",\n            \"h\": \"1.30884\",\n            \"l\": \"1.30871\",\n            \"c\": \"1.30871\"\n        },\n        {\n            \"rt\": \"2024-10-10 07:52:03.000\",\n            \"o\": \"1.30871\",\n            \"h\": \"1.30871\",\n            \"l\": \"1.30856\",\n            \"c\": \"1.30859\"\n        },\n        {\n            \"rt\": \"2024-10-10 07:52:23.000\",\n            \"o\": \"1.30859\",\n            \"h\": \"1.30861\",\n            \"l\": \"1.30849\",\n            \"c\": \"1.30849\"\n        },\n        {\n            \"rt\": \"2024-10-10 07:52:43.000\",\n            \"o\": \"1.30849\",\n            \"h\": \"1.30850\",\n            \"l\": \"1.30837\",\n            \"c\": \"1.30839\"\n        },\n        {\n            \"rt\": \"2024-10-10 07:53:03.000\",\n            \"o\": \"1.30839\",\n            \"h\": \"1.30840\",\n            \"l\": \"1.30838\",\n            \"c\": \"1.30839\"\n        },\n        {\n            \"rt\": \"2024-10-10 07:53:23.000\",\n            \"o\": \"1.30842\",\n            \"h\": \"1.30847\",\n            \"l\": \"1.30830\",\n            \"c\": \"1.30836\"\n        },\n        {\n            \"rt\": \"2024-10-10 07:53:43.000\",\n            \"o\": \"1.30836\",\n            \"h\": \"1.30847\",\n            \"l\": \"1.30832\",\n            \"c\": \"1.30847\"\n        },\n        {\n            \"rt\": \"2024-10-10 07:54:03.000\",\n            \"o\": \"1.30847\",\n            \"h\": \"1.30857\",\n            \"l\": \"1.30843\",\n            \"c\": \"1.30854\"\n        },\n        {\n            \"rt\": \"2024-10-10 07:54:23.000\",\n            \"o\": \"1.30854\",\n            \"h\": \"1.30862\",\n            \"l\": \"1.30853\",\n            \"c\": \"1.30853\"\n        },\n        {\n            \"rt\": \"2024-10-10 07:54:43.000\",\n            \"o\": \"1.30853\",\n            \"h\": \"1.30856\",\n            \"l\": \"1.30851\",\n            \"c\": \"1.30851\"\n        },\n        {\n            \"rt\": \"2024-10-10 07:55:03.000\",\n            \"o\": \"1.30851\",\n            \"h\": \"1.30857\",\n            \"l\": \"1.30846\",\n            \"c\": \"1.30853\"\n        },\n        {\n            \"rt\": \"2024-10-10 07:55:23.000\",\n            \"o\": \"1.30853\",\n            \"h\": \"1.30856\",\n            \"l\": \"1.30851\",\n            \"c\": \"1.30854\"\n        },\n        {\n            \"rt\": \"2024-10-10 07:55:43.000\",\n            \"o\": \"1.30854\",\n            \"h\": \"1.30857\",\n            \"l\": \"1.30851\",\n            \"c\": \"1.30851\"\n        },\n        {\n            \"rt\": \"2024-10-10 07:56:03.000\",\n            \"o\": \"1.30851\",\n            \"h\": \"1.30855\",\n            \"l\": \"1.30846\",\n            \"c\": \"1.30848\"\n        },\n        {\n            \"rt\": \"2024-10-10 07:56:23.000\",\n            \"o\": \"1.30848\",\n            \"h\": \"1.30849\",\n            \"l\": \"1.30842\",\n            \"c\": \"1.30843\"\n        },\n        {\n            \"rt\": \"2024-10-10 07:56:43.000\",\n            \"o\": \"1.30843\",\n            \"h\": \"1.30844\",\n            \"l\": \"1.30818\",\n            \"c\": \"1.30818\"\n        },\n        {\n            \"rt\": \"2024-10-10 07:57:03.000\",\n            \"o\": \"1.30818\",\n            \"h\": \"1.30823\",\n            \"l\": \"1.30814\",\n            \"c\": \"1.30819\"\n        },\n        {\n            \"rt\": \"2024-10-10 07:57:23.000\",\n            \"o\": \"1.30819\",\n            \"h\": \"1.30822\",\n            \"l\": \"1.30817\",\n            \"c\": \"1.30818\"\n        },\n        {\n            \"rt\": \"2024-10-10 07:57:43.000\",\n            \"o\": \"1.30818\",\n            \"h\": \"1.30822\",\n            \"l\": \"1.30818\",\n            \"c\": \"1.30822\"\n        },\n        {\n            \"rt\": \"2024-10-10 07:58:03.000\",\n            \"o\": \"1.30822\",\n            \"h\": \"1.30833\",\n            \"l\": \"1.30818\",\n            \"c\": \"1.30830\"\n        },\n        {\n            \"rt\": \"2024-10-10 07:58:23.000\",\n            \"o\": \"1.30830\",\n            \"h\": \"1.30830\",\n            \"l\": \"1.30821\",\n            \"c\": \"1.30821\"\n        },\n        {\n            \"rt\": \"2024-10-10 07:58:43.000\",\n            \"o\": \"1.30821\",\n            \"h\": \"1.30826\",\n            \"l\": \"1.30819\",\n            \"c\": \"1.30824\"\n        },\n        {\n            \"rt\": \"2024-10-10 07:59:03.000\",\n            \"o\": \"1.30824\",\n            \"h\": \"1.30828\",\n            \"l\": \"1.30820\",\n            \"c\": \"1.30821\"\n        },\n        {\n            \"rt\": \"2024-10-10 07:59:23.000\",\n            \"o\": \"1.30821\",\n            \"h\": \"1.30832\",\n            \"l\": \"1.30816\",\n            \"c\": \"1.30826\"\n        },\n        {\n            \"rt\": \"2024-10-10 07:59:43.000\",\n            \"o\": \"1.30826\",\n            \"h\": \"1.30835\",\n            \"l\": \"1.30823\",\n            \"c\": \"1.30823\"\n        }\n    ]\n}"}],"_postman_id":"db63a551-298d-4caf-a0a9-e7c8fd274bb9"},{"name":"broken","event":[{"listen":"prerequest","script":{"exec":[""],"type":"text/javascript","packages":{},"id":"c6029b1d-b168-466a-a5be-3144ee729a31"}}],"id":"de2d612b-871f-421d-beeb-1d3c4984655d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"body":{"mode":"urlencoded","urlencoded":[]},"url":"{{FIAT_API_ENDPOINT}}/historic/midrate/v1/broken/?currencyPair=<currency pair>&timestamp=<timestamp>&valueDate=<value date>","description":"<p>This API will return the forward rate on a broken date (i.e. not necessarily a standard tenor) for a selected currency pair and point in time.</p>\n<p>It is <strong>not</strong> necessary to define the type (deliverability) and route (observed or crossed) when making a call. Where more than one possibility exists for the requested currency pair, this API will return the most commonly requested one. This will give by preference:</p>\n<ul>\n<li>Directly Observed rates where available</li>\n<li>NDF forwards where these exist and are larger markets than any onshore market.</li>\n</ul>\n<p>The returned data will be decorated to fully describe the route and type.</p>\n<p>This API requires authentication, please see instructions in the API\\Authentication folder for how to add the additional necessary header to your request. If you would like to use this collection in Postman to request the data, please follow the instructions in the introduction to this documentation.</p>\n","auth":{"type":"oauth2","oauth2":{"refreshRequestParams":"<refresh-request-params>","password":"{{AUTH_PASSWORD}}","username":"{{AUTH_USERNAME}}","refreshTokenUrl":"<refresh-token-url>","accessTokenUrl":"<access-token-url>","grant_type":"<grant_type>","authUrl":"<auth-url>"},"isInherited":true,"source":{"_postman_id":"9ebb9928-d7bc-4f70-89b3-72c671248367","id":"9ebb9928-d7bc-4f70-89b3-72c671248367","name":"API","type":"folder"}},"urlObject":{"path":["historic","midrate","v1","broken",""],"host":["{{FIAT_API_ENDPOINT}}"],"query":[{"description":{"content":"<p>Required currency pair e.g. GBPUSD</p>\n","type":"text/plain"},"key":"currencyPair","value":"<currency pair>"},{"description":{"content":"<p>Required timestamp in format yyyy-mm-dd hh:mm:ss.000 (ms are optional)</p>\n","type":"text/plain"},"key":"timestamp","value":"<timestamp>"},{"description":{"content":"<p>Required value date of the broken day in format yyyy-mm-dd</p>\n","type":"text/plain"},"key":"valueDate","value":"<value date>"}],"variable":[]}},"response":[{"id":"6fd4944b-db35-454e-9aaa-58878d2f7300","name":"GBPUSD 2023-11-24 08:00:00 with 2023-12-27 valueDate","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer <your_access_token>","description":"String 'Bearer' followed by a space and your access token","type":"text","disabled":true}],"url":{"raw":"{{FIAT_API_ENDPOINT}}/historic/midrate/v1/broken/?currencyPair=GBPUSD&timestamp=2023-11-24 08:00:00&valueDate=2023-12-27","host":["{{FIAT_API_ENDPOINT}}"],"path":["historic","midrate","v1","broken",""],"query":[{"key":"currencyPair","value":"GBPUSD"},{"key":"timestamp","value":"2023-11-24 08:00:00"},{"key":"valueDate","value":"2023-12-27"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"openresty","enabled":true},{"key":"Date","value":"Tue, 30 Jan 2024 18:51:43 GMT","enabled":true},{"key":"Content-Type","value":"application/json; charset=utf-8","enabled":true},{"key":"Content-Length","value":"137","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"X-Powered-By","value":"Express","enabled":true},{"key":"ETag","value":"W/\"89-aaj4/hkMs6Fc41RLnF9R2mIIX9M\"","enabled":true},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains","enabled":true},{"key":"X-Frame-Options","value":"DENY","enabled":true},{"key":"X-Content-Type-Options","value":"nosniff","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"rt\": \"2023-11-24 07:59:59.960\",\n    \"p\": \"GBPUSD\",\n    \"vd\": \"2023-12-27 00:00:00.000\",\n    \"m\": \"0.00022312\",\n    \"in\": false,\n    \"ix\": false,\n    \"ic\": false,\n    \"io\": false\n}"}],"_postman_id":"de2d612b-871f-421d-beeb-1d3c4984655d"},{"name":"series","event":[{"listen":"prerequest","script":{"exec":[""],"type":"text/javascript","packages":{},"id":"967bfb06-73ad-4594-972f-dad162eb4401"}}],"id":"fa229e62-00d1-42fb-8638-6d84df0d11c3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"body":{"mode":"urlencoded","urlencoded":[]},"url":"{{FIAT_API_ENDPOINT}}/historic/midrate/v1/series/?currencyPair=<currency pair>&tenor=<tenor>&startTimestamp=<start timestamp>&endTimestamp=<end timestamp>","description":"<p>This API will return all available rates between two timestamps.</p>\n<p>For spot data in highly liquid pairs (which are typically benchmarks) there will be 20 rates per second during market hours. Other tenors and pairs will produce rates on change.</p>\n<p>A maimum of 5 minutes of data may be requested from this API. If larger periods are routinely required, please contact your account manager.</p>\n<p>It is <strong>not</strong> necessary to define the type (deliverability) and route (observed or crossed) when making a call. Where more than one possibility exists for the requested currency pair, this API will return the most commonly requested one. This will give by preference:</p>\n<ul>\n<li>Directly Observed rates where available</li>\n<li>NDF forwards where these exist and are larger markets than any onshore market.</li>\n</ul>\n<p>The returned data will be decorated to fully describe the route and type.</p>\n<p>This API requires authentication, please see instructions in the API\\Authentication folder for how to add the additional necessary header to your request. If you would like to use this collection in Postman to request the data, please follow the instructions in the introduction to this documentation.</p>\n","auth":{"type":"oauth2","oauth2":{"refreshRequestParams":"<refresh-request-params>","password":"{{AUTH_PASSWORD}}","username":"{{AUTH_USERNAME}}","refreshTokenUrl":"<refresh-token-url>","accessTokenUrl":"<access-token-url>","grant_type":"<grant_type>","authUrl":"<auth-url>"},"isInherited":true,"source":{"_postman_id":"9ebb9928-d7bc-4f70-89b3-72c671248367","id":"9ebb9928-d7bc-4f70-89b3-72c671248367","name":"API","type":"folder"}},"urlObject":{"path":["historic","midrate","v1","series",""],"host":["{{FIAT_API_ENDPOINT}}"],"query":[{"description":{"content":"<p>Required currency pair e.g. GBPUSD</p>\n","type":"text/plain"},"key":"currencyPair","value":"<currency pair>"},{"description":{"content":"<p>Required tenor e.g. \"SPT\", \"ON\", \"SN\", \"W1\", \"M1\", ...</p>\n","type":"text/plain"},"key":"tenor","value":"<tenor>"},{"description":{"content":"<p>Required start timestamp in format yyyy-mm-dd hh:mm:ss.000 (ms are optional)</p>\n","type":"text/plain"},"key":"startTimestamp","value":"<start timestamp>"},{"description":{"content":"<p>Required end timestamp in format yyyy-mm-dd hh:mm:ss.000 (ms are optional)</p>\n","type":"text/plain"},"key":"endTimestamp","value":"<end timestamp>"}],"variable":[]}},"response":[{"id":"3376a431-8d13-46dd-9962-9af607cc2867","name":"GBPUSD SPT 2023-11-24 08:00:00 to 2023-11-24 08:00:30","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer <your_access_token>","description":"String 'Bearer' followed by a space and your access token","type":"text","disabled":true}],"url":{"raw":"{{FIAT_API_ENDPOINT}}/historic/midrate/v1/series/?currencyPair=GBPUSD&tenor=SPT&startTimestamp=2023-11-24 08:00:00&endTimestamp=2023-11-24 08:00:30","host":["{{FIAT_API_ENDPOINT}}"],"path":["historic","midrate","v1","series",""],"query":[{"key":"currencyPair","value":"GBPUSD"},{"key":"tenor","value":"SPT"},{"key":"startTimestamp","value":"2023-11-24 08:00:00"},{"key":"endTimestamp","value":"2023-11-24 08:00:30"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"openresty","enabled":true},{"key":"Date","value":"Tue, 30 Jan 2024 18:52:54 GMT","enabled":true},{"key":"Content-Type","value":"application/json; charset=utf-8","enabled":true},{"key":"Content-Length","value":"63027","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"X-Powered-By","value":"Express","enabled":true},{"key":"ETag","value":"W/\"f633-hxxDbMhB9ZX6c++z6xaU0/ECDxY\"","enabled":true},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains","enabled":true},{"key":"X-Frame-Options","value":"DENY","enabled":true},{"key":"X-Content-Type-Options","value":"nosniff","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"pair\": \"GBPUSD\",\n    \"rates\": [\n        {\n            \"rt\": \"2023-11-24 08:00:00.010\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25323000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:00.060\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25324000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:00.110\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25321000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:00.160\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25322000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:00.210\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25321000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:00.260\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25320000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:00.310\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25320000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:00.360\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25321000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:00.410\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25321000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:00.460\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25322000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:00.510\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25322000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:00.560\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25322000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:00.610\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25322000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:00.660\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25322000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:00.710\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25322000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:00.760\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25322000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:00.810\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25322000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:00.860\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25321000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:00.910\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25320000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:00.960\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25320000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:01.010\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25319000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:01.060\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25319000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:01.110\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25318000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:01.160\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25318000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:01.210\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25318000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:01.260\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25317000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:01.310\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25317000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:01.360\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25317000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:01.410\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25317000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:01.460\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25317000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:01.510\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25317000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:01.560\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25317000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:01.610\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25317000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:01.660\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25317000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:01.710\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25317000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:01.760\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25317000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:01.810\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25317000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:01.860\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25317000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:01.910\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25313000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:01.960\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25311000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:02.010\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25309000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:02.060\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25309000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:02.110\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25308000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:02.160\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25307000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:02.210\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25307000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:02.260\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25307000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:02.310\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25308000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:02.360\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25308000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:02.410\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25308000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:02.460\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25308000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:02.510\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25308000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:02.560\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25308000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:02.610\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25308000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:02.660\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25308000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:02.710\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25307000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:02.760\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25308000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:02.810\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25308000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:02.860\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25308000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:02.910\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25307000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:02.960\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25307000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:03.010\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25307000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:03.060\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25307000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:03.110\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25306000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:03.160\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25306000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:03.210\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25305000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:03.260\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25305000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:03.310\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25305000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:03.360\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25305000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:03.410\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25307000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:03.460\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25307000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:03.510\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25307000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:03.560\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25307000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:03.610\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25308000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:03.660\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25307000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:03.710\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25307000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:03.760\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25307000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:03.810\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25307000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:03.860\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25307000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:03.910\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25307000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:03.960\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25307000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:04.010\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25307000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:04.060\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25307000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:04.110\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25307000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:04.160\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25307000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:04.210\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25308000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:04.260\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25308000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:04.310\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25308000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:04.360\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25307000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:04.410\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25308000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:04.460\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25308000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:04.510\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25308000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:04.560\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25308000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:04.610\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25308000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:04.660\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25308000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:04.710\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25308000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:04.760\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25308000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:04.810\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25308000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:04.860\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25308000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:04.910\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25308000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:04.960\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25308000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:05.010\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25308000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:05.060\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25308000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:05.110\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25308000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:05.160\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25308000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:05.210\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25308000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:05.260\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25308000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:05.310\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25308000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:05.360\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25308000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:05.410\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25308000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:05.460\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25308000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:05.510\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25308000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:05.560\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25308000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:05.610\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25308000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:05.660\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25308000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:05.710\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25308000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:05.760\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25308000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:05.810\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25308000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:05.860\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25307000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:05.910\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25306000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:05.960\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25306000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:06.010\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25306000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:06.060\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25305000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:06.110\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25305000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:06.160\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25305000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:06.210\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25304000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:06.260\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25305000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:06.310\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25305000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:06.360\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25305000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:06.410\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25305000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:06.460\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25305000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:06.510\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25305000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:06.560\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25305000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:06.610\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25305000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:06.660\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25305000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:06.710\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25305000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:06.760\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25305000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:06.810\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25305000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:06.860\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25305000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:06.910\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25303000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:06.960\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25301000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:07.010\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25301000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:07.060\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25301000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:07.110\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25301000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:07.160\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25301000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:07.210\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25301000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:07.260\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25300000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:07.310\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25300000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:07.360\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25300000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:07.410\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25300000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:07.460\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25300000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:07.510\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25300000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:07.560\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25300000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:07.610\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25300000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:07.660\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25300000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:07.710\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25300000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:07.760\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25300000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:07.810\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25302000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:07.860\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25304000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:07.910\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25304000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:07.960\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25307000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:08.010\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25307000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:08.060\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25308000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:08.110\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25307000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:08.160\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25307000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:08.210\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25307000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:08.260\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25307000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:08.310\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25308000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:08.360\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25308000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:08.410\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25308000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:08.460\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25308000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:08.510\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25307000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:08.560\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25307000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:08.610\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25307000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:08.660\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25306000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:08.710\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25306000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:08.760\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25306000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:08.810\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25306000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:08.860\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25306000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:08.910\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25306000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:08.960\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25306000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:09.010\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25306000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:09.060\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25306000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:09.110\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25306000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:09.160\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25305000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:09.210\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25305000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:09.260\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25305000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:09.310\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25304000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:09.360\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25305000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:09.410\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25305000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:09.460\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25305000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:09.510\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25305000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:09.560\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25305000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:09.610\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25306000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:09.660\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25306000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:09.710\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25305000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:09.760\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25307000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:09.810\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25307000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:09.860\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25307000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:09.910\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25307000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:09.960\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25307000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:10.010\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25307000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:10.060\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25307000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:10.110\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25306000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:10.160\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25306000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:10.210\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25306000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:10.260\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25306000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:10.310\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25306000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:10.360\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25306000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:10.410\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25306000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:10.460\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25306000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:10.510\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25306000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:10.560\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25306000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:10.610\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25307000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:10.660\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25307000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:10.710\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25307000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:10.760\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25307000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:10.810\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25307000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:10.860\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25307000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:10.910\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25307000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:10.960\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25307000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:11.010\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25306000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:11.060\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25306000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:11.110\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25306000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:11.160\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25306000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:11.210\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25306000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:11.260\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25306000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:11.310\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25306000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:11.360\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25306000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:11.410\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25306000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:11.460\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25306000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:11.510\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25306000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:11.560\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25306000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:11.610\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25306000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:11.660\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25306000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:11.710\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25306000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:11.760\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25306000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:11.810\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25306000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:11.860\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25306000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:11.910\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25306000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:11.960\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25306000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:12.010\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25306000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:12.060\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25306000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:12.110\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25306000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:12.160\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25306000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:12.210\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25306000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:12.260\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25305000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:12.310\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25305000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:12.360\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25305000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:12.410\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25305000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:12.460\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25305000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:12.510\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25305000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:12.560\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25305000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:12.610\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25305000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:12.660\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25305000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:12.710\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25305000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:12.760\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25305000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:12.810\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25305000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:12.860\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25305000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:12.910\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25305000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:12.960\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25305000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:13.010\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25305000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:13.060\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25305000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:13.110\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25305000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:13.160\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25305000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:13.210\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25305000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:13.260\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25305000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:13.310\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25305000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:13.360\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25305000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:13.410\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25305000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:13.460\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25305000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:13.510\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25305000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:13.560\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25300000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:13.610\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25299000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:13.660\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25300000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:13.710\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25300000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:13.760\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25299000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:13.810\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25299000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:13.860\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25299000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:13.910\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25299000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:13.960\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25299000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:14.010\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25299000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:14.060\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25300000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:14.110\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25300000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:14.160\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25300000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:14.210\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25300000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:14.260\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25299000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:14.310\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25299000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:14.360\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25299000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:14.410\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25299000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:14.460\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25299000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:14.510\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25299000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:14.560\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25299000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:14.610\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25299000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:14.660\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25299000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:14.710\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25299000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:14.760\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25299000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:14.810\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25299000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:14.860\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25299000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:14.910\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25300000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:14.960\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25300000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:15.010\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25300000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:15.060\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25300000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:15.110\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25299000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:15.160\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25299000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:15.210\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25299000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:15.260\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25299000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:15.310\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25299000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:15.360\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25299000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:15.410\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25299000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:15.460\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25299000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:15.510\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25299000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:15.560\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25299000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:15.610\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25299000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:15.660\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25299000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:15.710\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25299000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:15.760\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25299000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:15.810\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25299000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:15.860\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25299000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:15.910\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25299000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:15.960\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25299000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:16.010\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25299000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:16.060\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25299000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:16.110\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25299000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:16.160\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25299000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:16.210\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25299000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:16.260\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25299000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:16.310\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25299000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:16.360\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25299000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:16.410\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25299000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:16.460\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25298000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:16.510\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25298000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:16.560\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25298000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:16.610\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25298000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:16.660\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25298000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:16.710\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25298000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:16.760\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25298000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:16.810\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25298000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:16.860\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25294000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:16.910\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25291000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:16.960\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25291000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:17.010\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25293000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:17.060\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25293000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:17.110\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25293000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:17.160\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25294000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:17.210\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25294000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:17.260\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25294000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:17.310\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25294000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:17.360\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25294000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:17.410\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25294000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:17.460\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25294000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:17.510\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25294000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:17.560\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25294000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:17.610\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25294000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:17.660\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25294000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:17.710\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25294000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:17.760\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25294000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:17.810\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25294000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:17.860\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25294000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:17.910\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25294000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:17.960\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25294000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:18.010\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25294000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:18.060\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25294000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:18.110\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25294000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:18.160\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25294000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:18.210\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25294000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:18.260\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25294000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:18.310\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25294000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:18.360\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25294000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:18.410\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25294000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:18.460\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25294000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:18.510\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25294000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:18.560\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25294000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:18.610\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25294000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:18.660\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25294000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:18.710\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25294000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:18.760\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25294000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:18.810\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25294000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:18.860\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25294000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:18.910\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25294000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:18.960\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25294000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:19.010\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25294000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:19.060\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25294000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:19.110\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25294000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:19.160\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25294000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:19.210\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25294000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:19.260\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25294000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:19.310\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25294000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:19.360\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25294000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:19.410\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25294000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:19.460\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25294000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:19.510\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25294000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:19.560\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25294000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:19.610\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25294000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:19.660\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25294000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:19.710\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25294000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:19.760\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25294000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:19.810\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25294000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:19.860\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25293000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:19.910\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25294000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:19.960\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25294000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:20.010\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25294000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:20.060\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25294000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:20.110\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25294000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:20.160\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25294000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:20.210\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25294000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:20.260\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25294000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:20.310\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25294000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:20.360\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25294000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:20.410\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25294000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:20.460\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25294000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:20.510\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25294000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:20.560\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25294000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:20.610\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25294000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:20.660\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25295000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:20.710\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25294000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:20.760\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25294000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:20.810\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25295000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:20.860\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25294000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:20.910\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25295000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:20.960\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25295000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:21.010\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25295000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:21.060\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25299000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:21.110\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25302000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:21.160\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25302000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:21.210\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25302000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:21.260\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25302000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:21.310\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25302000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:21.360\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25302000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:21.410\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25302000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:21.460\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25302000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:21.510\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25302000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:21.560\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25302000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:21.610\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25302000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:21.660\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25302000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:21.710\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25302000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:21.760\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25302000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:21.810\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25302000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:21.860\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25302000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:21.910\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25302000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:21.960\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25302000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:22.010\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25302000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:22.060\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25302000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:22.110\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25302000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:22.160\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25302000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:22.210\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25302000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:22.260\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25302000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:22.310\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25302000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:22.360\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25302000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:22.410\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25302000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:22.460\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25302000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:22.510\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25302000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:22.560\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25302000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:22.610\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25302000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:22.660\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25302000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:22.710\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25303000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:22.760\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25302000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:22.810\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25302000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:22.860\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25302000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:22.910\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25302000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:22.960\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25303000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:23.010\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25303000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:23.060\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25303000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:23.110\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25303000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:23.160\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25302000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:23.210\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25302000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:23.260\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25302000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:23.310\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25302000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:23.360\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25304000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:23.410\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25303000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:23.460\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25303000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:23.510\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25303000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:23.560\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25307000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:23.610\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25307000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:23.660\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25307000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:23.710\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25307000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:23.760\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25307000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:23.810\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25307000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:23.860\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25307000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:23.910\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25306000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:23.960\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25306000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:24.010\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25306000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:24.060\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25306000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:24.110\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25306000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:24.160\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25306000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:24.210\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25306000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:24.260\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25306000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:24.310\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25306000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:24.360\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25306000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:24.410\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25306000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:24.460\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25306000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:24.510\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25306000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:24.560\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25306000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:24.610\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25306000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:24.660\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25306000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:24.710\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25306000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:24.760\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25306000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:24.810\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25306000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:24.860\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25306000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:24.910\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25306000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:24.960\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25306000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:25.010\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25306000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:25.060\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25306000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:25.110\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25306000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:25.160\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25306000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:25.210\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25306000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:25.260\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25306000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:25.310\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25306000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:25.360\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25306000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:25.410\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25306000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:25.460\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25306000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:25.510\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25306000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:25.560\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25306000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:25.610\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25304000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:25.660\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25304000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:25.710\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25304000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:25.760\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25304000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:25.810\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25304000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:25.860\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25304000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:25.910\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25304000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:25.960\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25304000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:26.010\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25304000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:26.060\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25304000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:26.110\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25304000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:26.160\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25304000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:26.210\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25304000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:26.260\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25304000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:26.310\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25304000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:26.360\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25304000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:26.410\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25304000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:26.460\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25304000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:26.510\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25304000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:26.560\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25304000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:26.610\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25304000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:26.660\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25304000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:26.710\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25304000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:26.760\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25306000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:26.810\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25306000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:26.860\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25306000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:26.910\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25306000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:26.960\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25306000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:27.010\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25306000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:27.060\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25306000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:27.110\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25307000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:27.160\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25307000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:27.210\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25309000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:27.260\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25309000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:27.310\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25308000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:27.360\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25307000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:27.410\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25307000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:27.460\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25307000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:27.510\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25307000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:27.560\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25307000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:27.610\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25307000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:27.660\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25307000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:27.710\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25307000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:27.760\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25307000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:27.810\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25307000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:27.860\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25307000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:27.910\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25307000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:27.960\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25307000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:28.010\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25307000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:28.060\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25307000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:28.110\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25307000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:28.160\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25307000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:28.210\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25307000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:28.260\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25307000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:28.310\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25307000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:28.360\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25307000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:28.410\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25307000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:28.460\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25307000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:28.510\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25307000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:28.560\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25307000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:28.610\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25307000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:28.660\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25307000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:28.710\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25307000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:28.760\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25307000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:28.810\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25307000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:28.860\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25307000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:28.910\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25308000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:28.960\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25308000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:29.010\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25308000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:29.060\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25308000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:29.110\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25308000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:29.160\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25308000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:29.210\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25308000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:29.260\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25308000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:29.310\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25308000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:29.360\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25309000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:29.410\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25309000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:29.460\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25309000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:29.510\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25309000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:29.560\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25309000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:29.610\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25309000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:29.660\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25309000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:29.710\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25309000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:29.760\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25309000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:29.810\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25309000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:29.860\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25309000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:29.910\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25309000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        },\n        {\n            \"rt\": \"2023-11-24 08:00:29.960\",\n            \"tn\": \"SPT\",\n            \"m\": \"1.25309000\",\n            \"in\": false,\n            \"ix\": false,\n            \"ic\": false,\n            \"io\": false\n        }\n    ]\n}"}],"_postman_id":"fa229e62-00d1-42fb-8638-6d84df0d11c3"},{"name":"twap - limited-range","id":"48cfbdd3-01a6-4d6b-8024-a6666a4dc5ce","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://fiat.api.newchangefx.com/historic/midrate/v1/accuratetwap/?currencyPair=<currency pair>&tenor=<tenor>&startTimestamp=<timestamp>&endTimestamp=<timestamp>","description":"<p>The API will return a single, overall time weighted average prices for a selected currency pair and requested tenor over a selected time range of up to 5 minutes. It is necessary to specify the start and end time of the request, and the tenor.</p>\n<p>This API will consider the prevailing rate at the start of the range (even if this rate was observed prior to the requested range) to ensure a fully accurate TWAP for the entire time range.</p>\n<p>It is not necessary to define the type (deliverability) and route (observed or crossed) when making a call.</p>\n","auth":{"type":"oauth2","oauth2":{"refreshRequestParams":"<refresh-request-params>","password":"{{AUTH_PASSWORD}}","username":"{{AUTH_USERNAME}}","refreshTokenUrl":"<refresh-token-url>","accessTokenUrl":"<access-token-url>","grant_type":"<grant_type>","authUrl":"<auth-url>"},"isInherited":true,"source":{"_postman_id":"9ebb9928-d7bc-4f70-89b3-72c671248367","id":"9ebb9928-d7bc-4f70-89b3-72c671248367","name":"API","type":"folder"}},"urlObject":{"protocol":"https","path":["historic","midrate","v1","accuratetwap",""],"host":["fiat","api","newchangefx","com"],"query":[{"description":{"content":"<p>Required currency pair e.g. GBPUSD</p>\n","type":"text/plain"},"key":"currencyPair","value":"<currency pair>"},{"description":{"content":"<p>Required tenor e.g. SPT</p>\n","type":"text/plain"},"key":"tenor","value":"<tenor>"},{"description":{"content":"<p>Required start timestamp in format yyyy-mm-dd hh:mm:ss.000 (ms are optional)</p>\n","type":"text/plain"},"key":"startTimestamp","value":"<timestamp>"},{"description":{"content":"<p>Required end timestamp in format yyyy-mm-dd hh:mm:ss.000 (ms are optional)</p>\n","type":"text/plain"},"key":"endTimestamp","value":"<timestamp>"}],"variable":[]}},"response":[{"id":"a6117df3-cc69-428d-8f9b-f942434a785a","name":"GBPUSD SPT 2024-01-10 10:04:00 to 2024-01-10 10:05:00","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://fiat.api.newchangefx.com/historic/midrate/v1/accuratetwap/?currencyPair=GBPUSD&startTimestamp=2024-01-10 10:04:00&endTimestamp=<timestamp>&tenor=SPT","protocol":"https","host":["fiat","api","newchangefx","com"],"path":["historic","midrate","v1","accuratetwap",""],"query":[{"key":"currencyPair","value":"GBPUSD","description":"Required currency pair e.g. GBPUSD"},{"key":"startTimestamp","value":"2024-01-10 10:04:00","description":"Required start timestamp in format yyyy-mm-dd hh:mm:ss.000 (ms are optional)"},{"key":"endTimestamp","value":"<timestamp>","description":"Required timestamp in format yyyy-mm-dd hh:mm:ss.000 (ms are optional)"},{"key":"tenor","value":"SPT","description":"Required tenor e.g. SPT"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"openresty","enabled":true},{"key":"Date","value":"Tue, 11 Jun 2024 16:19:32 GMT","enabled":true},{"key":"Content-Type","value":"application/json; charset=utf-8","enabled":true},{"key":"Content-Length","value":"96","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"X-Powered-By","value":"Express","enabled":true},{"key":"ETag","value":"W/\"60-WZ8jYaS64jB+0KwZRJiEleFsxVw\"","enabled":true},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains","enabled":true},{"key":"X-Frame-Options","value":"DENY","enabled":true},{"key":"X-Content-Type-Options","value":"nosniff","enabled":true},{"key":"Access-Control-Allow-Credentials","value":"true","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"p\": \"GBPUSD\",\n    \"in\": false,\n    \"io\": false,\n    \"twaps\": [\n        {\n            \"rt\": \"2024-01-10 10:04:00.000\",\n            \"twap\": \"2.15979\"\n        }\n    ]\n}"}],"_postman_id":"48cfbdd3-01a6-4d6b-8024-a6666a4dc5ce"},{"name":"twap - periodical","id":"0e24b556-7e30-49ef-824a-2375f38c7bf9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://fiat.api.newchangefx.com/historic/midrate/v1/periodicaltwap/?currencyPair=<currency pair>&tenor=<tenor>&startTimestamp=<timestamp>&endTimestamp=<timestamp>&period=<period>","description":"<p>The API will return an array of time weighted average prices for a selected currency pair and requested tenor within selected time range with periodicity of minutes, hours or days. It is necessary to specify the start and end time of the request, tenor, and period.</p>\n<p>The TWAP is calculated from data within each of the time periods, and does not consider what the rate was at the start of the period (unless there happens to be a rate at that time). Therefore, for highly accurate TWAP for very short periods of time, the limited-range TWAP API should be used.</p>\n<p>The durations between start and end timestamps must be less than or equal to the following periodicity limits:</p>\n<p>HOUR: Max 24 hours,</p>\n<p>MINUTE: Max 12 hours,</p>\n<p>SECOND: Max 1 hour</p>\n<p>This API will return an array of TWAP data. It is not necessary to define the type (deliverability) and route (observed or crossed) when making a call.</p>\n","auth":{"type":"oauth2","oauth2":{"refreshRequestParams":"<refresh-request-params>","password":"{{AUTH_PASSWORD}}","username":"{{AUTH_USERNAME}}","refreshTokenUrl":"<refresh-token-url>","accessTokenUrl":"<access-token-url>","grant_type":"<grant_type>","authUrl":"<auth-url>"},"isInherited":true,"source":{"_postman_id":"9ebb9928-d7bc-4f70-89b3-72c671248367","id":"9ebb9928-d7bc-4f70-89b3-72c671248367","name":"API","type":"folder"}},"urlObject":{"protocol":"https","path":["historic","midrate","v1","periodicaltwap",""],"host":["fiat","api","newchangefx","com"],"query":[{"description":{"content":"<p>Required currency pair e.g. GBPUSD</p>\n","type":"text/plain"},"key":"currencyPair","value":"<currency pair>"},{"description":{"content":"<p>Required tenor e.g. SPT</p>\n","type":"text/plain"},"key":"tenor","value":"<tenor>"},{"description":{"content":"<p>Required start timestamp in format yyyy-mm-dd hh:mm:ss.000 (ms are optional)</p>\n","type":"text/plain"},"key":"startTimestamp","value":"<timestamp>"},{"description":{"content":"<p>Required timestamp in format yyyy-mm-dd hh:mm:ss.000 (ms are optional)</p>\n","type":"text/plain"},"key":"endTimestamp","value":"<timestamp>"},{"description":{"content":"<p>required periodicity. Valid entries are an integer followed by 'hour', 'minute' or 'second'</p>\n","type":"text/plain"},"key":"period","value":"<period>"}],"variable":[]}},"response":[{"id":"24db7c1e-ae92-47e8-83c4-2100f614807f","name":"EURUSD SPT 2024-04-10 08:30:00 to 2024-04-10 09:30:59 (1 minute)","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://fiat.api.newchangefx.com/historic/midrate/v1/periodicaltwap/?currencyPair=EURUSD&startTimestamp=2024-04-10 08:30:00&endTimestamp=2024-04-10 09:30:59&tenor=SPT&period=1 minute","protocol":"https","host":["fiat","api","newchangefx","com"],"path":["historic","midrate","v1","periodicaltwap",""],"query":[{"key":"currencyPair","value":"EURUSD"},{"key":"startTimestamp","value":"2024-04-10 08:30:00"},{"key":"endTimestamp","value":"2024-04-10 09:30:59"},{"key":"tenor","value":"SPT"},{"key":"period","value":"1 minute"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"openresty","enabled":true},{"key":"Date","value":"Fri, 26 Apr 2024 14:38:42 GMT","enabled":true},{"key":"Content-Type","value":"application/json; charset=utf-8","enabled":true},{"key":"Content-Length","value":"3096","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"X-Powered-By","value":"Express","enabled":true},{"key":"ETag","value":"W/\"c18-/Z/Lfod4G/dn4Uu3hxN2+V0uUBU\"","enabled":true},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains","enabled":true},{"key":"X-Frame-Options","value":"DENY","enabled":true},{"key":"X-Content-Type-Options","value":"nosniff","enabled":true},{"key":"Access-Control-Allow-Credentials","value":"true","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"p\": \"EURUSD\",\n    \"in\": false,\n    \"io\": false,\n    \"twaps\": [\n        {\n            \"rt\": \"2024-04-10 08:30:00.000\",\n            \"twap\": \"1.08578\"\n        },\n        {\n            \"rt\": \"2024-04-10 08:31:00.000\",\n            \"twap\": \"1.08578\"\n        },\n        {\n            \"rt\": \"2024-04-10 08:32:00.000\",\n            \"twap\": \"1.08578\"\n        },\n        {\n            \"rt\": \"2024-04-10 08:33:00.000\",\n            \"twap\": \"1.08578\"\n        },\n        {\n            \"rt\": \"2024-04-10 08:34:00.000\",\n            \"twap\": \"1.08578\"\n        },\n        {\n            \"rt\": \"2024-04-10 08:35:00.000\",\n            \"twap\": \"1.08578\"\n        },\n        {\n            \"rt\": \"2024-04-10 08:36:00.000\",\n            \"twap\": \"1.08578\"\n        },\n        {\n            \"rt\": \"2024-04-10 08:37:00.000\",\n            \"twap\": \"1.08578\"\n        },\n        {\n            \"rt\": \"2024-04-10 08:38:00.000\",\n            \"twap\": \"1.08578\"\n        },\n        {\n            \"rt\": \"2024-04-10 08:39:00.000\",\n            \"twap\": \"1.08578\"\n        },\n        {\n            \"rt\": \"2024-04-10 08:40:00.000\",\n            \"twap\": \"1.08578\"\n        },\n        {\n            \"rt\": \"2024-04-10 08:41:00.000\",\n            \"twap\": \"1.08578\"\n        },\n        {\n            \"rt\": \"2024-04-10 08:42:00.000\",\n            \"twap\": \"1.08578\"\n        },\n        {\n            \"rt\": \"2024-04-10 08:43:00.000\",\n            \"twap\": \"1.08578\"\n        },\n        {\n            \"rt\": \"2024-04-10 08:44:00.000\",\n            \"twap\": \"1.08578\"\n        },\n        {\n            \"rt\": \"2024-04-10 08:45:00.000\",\n            \"twap\": \"1.08578\"\n        },\n        {\n            \"rt\": \"2024-04-10 08:46:00.000\",\n            \"twap\": \"1.08578\"\n        },\n        {\n            \"rt\": \"2024-04-10 08:47:00.000\",\n            \"twap\": \"1.08578\"\n        },\n        {\n            \"rt\": \"2024-04-10 08:48:00.000\",\n            \"twap\": \"1.08578\"\n        },\n        {\n            \"rt\": \"2024-04-10 08:49:00.000\",\n            \"twap\": \"1.08578\"\n        },\n        {\n            \"rt\": \"2024-04-10 08:50:00.000\",\n            \"twap\": \"1.08578\"\n        },\n        {\n            \"rt\": \"2024-04-10 08:51:00.000\",\n            \"twap\": \"1.08578\"\n        },\n        {\n            \"rt\": \"2024-04-10 08:52:00.000\",\n            \"twap\": \"1.08578\"\n        },\n        {\n            \"rt\": \"2024-04-10 08:53:00.000\",\n            \"twap\": \"1.08578\"\n        },\n        {\n            \"rt\": \"2024-04-10 08:54:00.000\",\n            \"twap\": \"1.08578\"\n        },\n        {\n            \"rt\": \"2024-04-10 08:55:00.000\",\n            \"twap\": \"1.08578\"\n        },\n        {\n            \"rt\": \"2024-04-10 08:56:00.000\",\n            \"twap\": \"1.08578\"\n        },\n        {\n            \"rt\": \"2024-04-10 08:57:00.000\",\n            \"twap\": \"1.08578\"\n        },\n        {\n            \"rt\": \"2024-04-10 08:58:00.000\",\n            \"twap\": \"1.08578\"\n        },\n        {\n            \"rt\": \"2024-04-10 08:59:00.000\",\n            \"twap\": \"1.08578\"\n        },\n        {\n            \"rt\": \"2024-04-10 09:00:00.000\",\n            \"twap\": \"1.08578\"\n        },\n        {\n            \"rt\": \"2024-04-10 09:01:00.000\",\n            \"twap\": \"1.08578\"\n        },\n        {\n            \"rt\": \"2024-04-10 09:02:00.000\",\n            \"twap\": \"1.08578\"\n        },\n        {\n            \"rt\": \"2024-04-10 09:03:00.000\",\n            \"twap\": \"1.08578\"\n        },\n        {\n            \"rt\": \"2024-04-10 09:04:00.000\",\n            \"twap\": \"1.08578\"\n        },\n        {\n            \"rt\": \"2024-04-10 09:05:00.000\",\n            \"twap\": \"1.08578\"\n        },\n        {\n            \"rt\": \"2024-04-10 09:06:00.000\",\n            \"twap\": \"1.08578\"\n        },\n        {\n            \"rt\": \"2024-04-10 09:07:00.000\",\n            \"twap\": \"1.08578\"\n        },\n        {\n            \"rt\": \"2024-04-10 09:08:00.000\",\n            \"twap\": \"1.08578\"\n        },\n        {\n            \"rt\": \"2024-04-10 09:09:00.000\",\n            \"twap\": \"1.08578\"\n        },\n        {\n            \"rt\": \"2024-04-10 09:10:00.000\",\n            \"twap\": \"1.08578\"\n        },\n        {\n            \"rt\": \"2024-04-10 09:11:00.000\",\n            \"twap\": \"1.08578\"\n        },\n        {\n            \"rt\": \"2024-04-10 09:12:00.000\",\n            \"twap\": \"1.08578\"\n        },\n        {\n            \"rt\": \"2024-04-10 09:13:00.000\",\n            \"twap\": \"1.08578\"\n        },\n        {\n            \"rt\": \"2024-04-10 09:14:00.000\",\n            \"twap\": \"1.08578\"\n        },\n        {\n            \"rt\": \"2024-04-10 09:15:00.000\",\n            \"twap\": \"1.08578\"\n        },\n        {\n            \"rt\": \"2024-04-10 09:16:00.000\",\n            \"twap\": \"1.08578\"\n        },\n        {\n            \"rt\": \"2024-04-10 09:17:00.000\",\n            \"twap\": \"1.08578\"\n        },\n        {\n            \"rt\": \"2024-04-10 09:18:00.000\",\n            \"twap\": \"1.08578\"\n        },\n        {\n            \"rt\": \"2024-04-10 09:19:00.000\",\n            \"twap\": \"1.08578\"\n        },\n        {\n            \"rt\": \"2024-04-10 09:20:00.000\",\n            \"twap\": \"1.08578\"\n        },\n        {\n            \"rt\": \"2024-04-10 09:21:00.000\",\n            \"twap\": \"1.08578\"\n        },\n        {\n            \"rt\": \"2024-04-10 09:22:00.000\",\n            \"twap\": \"1.08578\"\n        },\n        {\n            \"rt\": \"2024-04-10 09:23:00.000\",\n            \"twap\": \"1.08578\"\n        },\n        {\n            \"rt\": \"2024-04-10 09:24:00.000\",\n            \"twap\": \"1.08578\"\n        },\n        {\n            \"rt\": \"2024-04-10 09:25:00.000\",\n            \"twap\": \"1.08578\"\n        },\n        {\n            \"rt\": \"2024-04-10 09:26:00.000\",\n            \"twap\": \"1.08578\"\n        },\n        {\n            \"rt\": \"2024-04-10 09:27:00.000\",\n            \"twap\": \"1.08578\"\n        },\n        {\n            \"rt\": \"2024-04-10 09:28:00.000\",\n            \"twap\": \"1.08578\"\n        },\n        {\n            \"rt\": \"2024-04-10 09:29:00.000\",\n            \"twap\": \"1.08578\"\n        },\n        {\n            \"rt\": \"2024-04-10 09:30:00.000\",\n            \"twap\": \"1.08584\"\n        }\n    ]\n}"}],"_postman_id":"0e24b556-7e30-49ef-824a-2375f38c7bf9"}],"id":"34633c7a-d981-404d-94a1-8a2322f05c31","_postman_id":"34633c7a-d981-404d-94a1-8a2322f05c31","description":"","auth":{"type":"oauth2","oauth2":{"refreshRequestParams":"<refresh-request-params>","password":"{{AUTH_PASSWORD}}","username":"{{AUTH_USERNAME}}","refreshTokenUrl":"<refresh-token-url>","accessTokenUrl":"<access-token-url>","grant_type":"<grant_type>","authUrl":"<auth-url>"},"isInherited":true,"source":{"_postman_id":"9ebb9928-d7bc-4f70-89b3-72c671248367","id":"9ebb9928-d7bc-4f70-89b3-72c671248367","name":"API","type":"folder"}}}],"id":"c452433c-7d51-4e2f-9d22-e4b468e0752f","_postman_id":"c452433c-7d51-4e2f-9d22-e4b468e0752f","description":"","auth":{"type":"oauth2","oauth2":{"refreshRequestParams":"<refresh-request-params>","password":"{{AUTH_PASSWORD}}","username":"{{AUTH_USERNAME}}","refreshTokenUrl":"<refresh-token-url>","accessTokenUrl":"<access-token-url>","grant_type":"<grant_type>","authUrl":"<auth-url>"},"isInherited":true,"source":{"_postman_id":"9ebb9928-d7bc-4f70-89b3-72c671248367","id":"9ebb9928-d7bc-4f70-89b3-72c671248367","name":"API","type":"folder"}}},{"name":"optioncut","item":[{"name":"v1","item":[{"name":"rates","event":[{"listen":"prerequest","script":{"exec":[""],"type":"text/javascript","packages":{},"id":"ac4a0f54-7f55-4cfb-a356-2bbccdfb2cf0"}}],"id":"16be239c-0ebf-4379-a66f-39d0dfe6eff1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"body":{"mode":"urlencoded","urlencoded":[]},"url":"{{FIAT_API_ENDPOINT}}/historic/optioncut/v1/rates/:optioncutname/:date","description":"<p>This API will return the historic value of NCFX option cuts.</p>\n<p>The correct name of the option cut must be specified. Please see the option cut reference API (in the general folder) for a list of valid option cut names.</p>\n<p>This API requires authentication, please see instructions in the API\\Authentication folder for how to add the additional necessary header to your request. If you would like to use this collection in Postman to request the data, please follow the instructions in the introduction to this documentation.</p>\n","auth":{"type":"oauth2","oauth2":{"refreshRequestParams":"<refresh-request-params>","password":"{{AUTH_PASSWORD}}","username":"{{AUTH_USERNAME}}","refreshTokenUrl":"<refresh-token-url>","accessTokenUrl":"<access-token-url>","grant_type":"<grant_type>","authUrl":"<auth-url>"},"isInherited":true,"source":{"_postman_id":"9ebb9928-d7bc-4f70-89b3-72c671248367","id":"9ebb9928-d7bc-4f70-89b3-72c671248367","name":"API","type":"folder"}},"urlObject":{"path":["historic","optioncut","v1","rates",":optioncutname",":date"],"host":["{{FIAT_API_ENDPOINT}}"],"query":[],"variable":[{"description":{"content":"<p>See Option cut refernence API (in general) for valid cut names. e.g. Tokyo3pm</p>\n","type":"text/plain"},"type":"any","value":"<option cut name>","key":"optioncutname"},{"description":{"content":"<p>Required date. e.g. 2023-11-24</p>\n","type":"text/plain"},"type":"any","value":"<date>","key":"date"}]}},"response":[{"id":"dc2c76e0-1efc-4c90-af5d-5e662e38787e","name":"Tokyo3pm 2023-05-12","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer <your_access_token>","description":"String 'Bearer' followed by a space and your access token","type":"text","disabled":true}],"url":{"raw":"{{FIAT_API_ENDPOINT}}/historic/optioncut/v1/rates/:optioncutname/:date","host":["{{FIAT_API_ENDPOINT}}"],"path":["historic","optioncut","v1","rates",":optioncutname",":date"],"variable":[{"key":"optioncutname","value":"Tokyo3pm"},{"key":"date","value":"2023-05-12"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"openresty","enabled":true},{"key":"Date","value":"Tue, 30 Jan 2024 18:56:46 GMT","enabled":true},{"key":"Content-Type","value":"application/json;charset=UTF-8","enabled":true},{"key":"Transfer-Encoding","value":"chunked","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains","enabled":true},{"key":"X-Frame-Options","value":"DENY","enabled":true},{"key":"X-Content-Type-Options","value":"nosniff","enabled":true}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"optioncutDate\": \"2023-05-12\",\n        \"optioncutName\": \"Tokyo3pm\",\n        \"rates\": [\n            {\n                \"currencyPair\": \"AUDCAD\",\n                \"rate\": 0.90291\n            },\n            {\n                \"currencyPair\": \"AUDCHF\",\n                \"rate\": 0.59721\n            },\n            {\n                \"currencyPair\": \"AUDJPY\",\n                \"rate\": 90.162\n            },\n            {\n                \"currencyPair\": \"AUDNZD\",\n                \"rate\": 1.07024\n            },\n            {\n                \"currencyPair\": \"AUDSGD\",\n                \"rate\": 0.8918\n            },\n            {\n                \"currencyPair\": \"AUDUSD\",\n                \"rate\": 0.66934\n            },\n            {\n                \"currencyPair\": \"CADCHF\",\n                \"rate\": 0.66143\n            },\n            {\n                \"currencyPair\": \"CADJPY\",\n                \"rate\": 99.855\n            },\n            {\n                \"currencyPair\": \"CHFJPY\",\n                \"rate\": 150.967\n            },\n            {\n                \"currencyPair\": \"EURAUD\",\n                \"rate\": 1.63207\n            },\n            {\n                \"currencyPair\": \"EURCAD\",\n                \"rate\": 1.4736\n            },\n            {\n                \"currencyPair\": \"EURCHF\",\n                \"rate\": 0.97471\n            },\n            {\n                \"currencyPair\": \"EURCZK\",\n                \"rate\": 23.5482\n            },\n            {\n                \"currencyPair\": \"EURGBP\",\n                \"rate\": 0.87269\n            },\n            {\n                \"currencyPair\": \"EURJPY\",\n                \"rate\": 147.151\n            },\n            {\n                \"currencyPair\": \"EURNOK\",\n                \"rate\": 11.65801\n            },\n            {\n                \"currencyPair\": \"EURNZD\",\n                \"rate\": 1.74669\n            },\n            {\n                \"currencyPair\": \"EURSEK\",\n                \"rate\": 11.27686\n            },\n            {\n                \"currencyPair\": \"EURUSD\",\n                \"rate\": 1.09242\n            },\n            {\n                \"currencyPair\": \"GBPAUD\",\n                \"rate\": 1.87016\n            },\n            {\n                \"currencyPair\": \"GBPCAD\",\n                \"rate\": 1.6886\n            },\n            {\n                \"currencyPair\": \"GBPCHF\",\n                \"rate\": 1.11688\n            },\n            {\n                \"currencyPair\": \"GBPJPY\",\n                \"rate\": 168.618\n            },\n            {\n                \"currencyPair\": \"GBPUSD\",\n                \"rate\": 1.25178\n            },\n            {\n                \"currencyPair\": \"NOKSEK\",\n                \"rate\": 0.96719\n            },\n            {\n                \"currencyPair\": \"NZDJPY\",\n                \"rate\": 84.243\n            },\n            {\n                \"currencyPair\": \"NZDUSD\",\n                \"rate\": 0.62541\n            },\n            {\n                \"currencyPair\": \"USDCAD\",\n                \"rate\": 1.34897\n            },\n            {\n                \"currencyPair\": \"USDCHF\",\n                \"rate\": 0.89223\n            },\n            {\n                \"currencyPair\": \"USDCNH\",\n                \"rate\": 6.95694\n            },\n            {\n                \"currencyPair\": \"USDCZK\",\n                \"rate\": 21.5571\n            },\n            {\n                \"currencyPair\": \"USDDKK\",\n                \"rate\": 6.81745\n            },\n            {\n                \"currencyPair\": \"USDHKD\",\n                \"rate\": 7.84174\n            },\n            {\n                \"currencyPair\": \"USDJPY\",\n                \"rate\": 134.7\n            },\n            {\n                \"currencyPair\": \"USDNOK\",\n                \"rate\": 10.6714\n            },\n            {\n                \"currencyPair\": \"USDSEK\",\n                \"rate\": 10.32268\n            },\n            {\n                \"currencyPair\": \"USDSGD\",\n                \"rate\": 1.33237\n            },\n            {\n                \"currencyPair\": \"USDZAR\",\n                \"rate\": 19.2167\n            },\n            {\n                \"currencyPair\": \"XAGUSD\",\n                \"rate\": 23.993\n            },\n            {\n                \"currencyPair\": \"XAUUSD\",\n                \"rate\": 2009.68\n            }\n        ]\n    }\n]"}],"_postman_id":"16be239c-0ebf-4379-a66f-39d0dfe6eff1"}],"id":"524c6415-e6cb-4d1d-bd59-4a8fa763ffd0","_postman_id":"524c6415-e6cb-4d1d-bd59-4a8fa763ffd0","description":"","auth":{"type":"oauth2","oauth2":{"refreshRequestParams":"<refresh-request-params>","password":"{{AUTH_PASSWORD}}","username":"{{AUTH_USERNAME}}","refreshTokenUrl":"<refresh-token-url>","accessTokenUrl":"<access-token-url>","grant_type":"<grant_type>","authUrl":"<auth-url>"},"isInherited":true,"source":{"_postman_id":"9ebb9928-d7bc-4f70-89b3-72c671248367","id":"9ebb9928-d7bc-4f70-89b3-72c671248367","name":"API","type":"folder"}}}],"id":"8ec85795-113b-4f2d-9eb9-86b5c704c6ff","_postman_id":"8ec85795-113b-4f2d-9eb9-86b5c704c6ff","description":"","auth":{"type":"oauth2","oauth2":{"refreshRequestParams":"<refresh-request-params>","password":"{{AUTH_PASSWORD}}","username":"{{AUTH_USERNAME}}","refreshTokenUrl":"<refresh-token-url>","accessTokenUrl":"<access-token-url>","grant_type":"<grant_type>","authUrl":"<auth-url>"},"isInherited":true,"source":{"_postman_id":"9ebb9928-d7bc-4f70-89b3-72c671248367","id":"9ebb9928-d7bc-4f70-89b3-72c671248367","name":"API","type":"folder"}}},{"name":"forwards365","item":[{"name":"v1","item":[{"name":"rates","id":"8fdc708d-5a02-4da8-b0fb-4c6daac112a4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{FIAT_API_ENDPOINT}}/historic/fwdcurve/v1/rates?currencyPair=<currencypair>&timestamp=<timestamp>","auth":{"type":"oauth2","oauth2":{"refreshRequestParams":"<refresh-request-params>","password":"{{AUTH_PASSWORD}}","username":"{{AUTH_USERNAME}}","refreshTokenUrl":"<refresh-token-url>","accessTokenUrl":"<access-token-url>","grant_type":"<grant_type>","authUrl":"<auth-url>"},"isInherited":true,"source":{"_postman_id":"9ebb9928-d7bc-4f70-89b3-72c671248367","id":"9ebb9928-d7bc-4f70-89b3-72c671248367","name":"API","type":"folder"}},"urlObject":{"path":["historic","fwdcurve","v1","rates"],"host":["{{FIAT_API_ENDPOINT}}"],"query":[{"description":{"content":"<p>Required currency pair e.g. GBPUSD</p>\n","type":"text/plain"},"key":"currencyPair","value":"<currencypair>"},{"description":{"content":"<p>Required timestamp in format yyyy-mm-dd hh:mm:ss.000 (ms are optional)</p>\n","type":"text/plain"},"key":"timestamp","value":"<timestamp>"}],"variable":[]}},"response":[{"id":"e39346bd-0157-4fab-9b9a-c17689c38c96","name":"GBPUSD 2024-02-14 12:00:00","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{FIAT_API_ENDPOINT}}/historic/fwdcurve/v1/rates?currencyPair=GBPUSD&timestamp=2024-02-14 12:00:00","host":["{{FIAT_API_ENDPOINT}}"],"path":["historic","fwdcurve","v1","rates"],"query":[{"key":"currencyPair","value":"GBPUSD","description":"Required currency pair e.g. GBPUSD"},{"key":"timestamp","value":"2024-02-14 12:00:00","description":"Required timestamp in format yyyy-mm-dd hh:mm:ss.000 (ms are optional)"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"openresty","enabled":true},{"key":"Date","value":"Thu, 22 Feb 2024 12:27:51 GMT","enabled":true},{"key":"Content-Type","value":"application/json; charset=utf-8","enabled":true},{"key":"Content-Length","value":"22546","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"X-Powered-By","value":"Express","enabled":true},{"key":"ETag","value":"W/\"5812-ooGnHHlo4MAMc/TOtEY+5C6CQBw\"","enabled":true},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains","enabled":true},{"key":"X-Frame-Options","value":"DENY","enabled":true},{"key":"X-Content-Type-Options","value":"nosniff","enabled":true},{"key":"Access-Control-Allow-Credentials","value":"true","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"rt\": \"2024-02-14 11:59:59.000\",\n    \"p\": \"GBPUSD\",\n    \"in\": false,\n    \"io\": false,\n    \"rates\": [\n        {\n            \"vd\": \"2024-02-14\",\n            \"m\": \"-0.12870\",\n            \"ppd\": null,\n            \"tn\": \"ON\"\n        },\n        {\n            \"vd\": \"2024-02-15\",\n            \"m\": \"-0.06440\",\n            \"ppd\": \"0.06430\",\n            \"tn\": \"TN\"\n        },\n        {\n            \"vd\": \"2024-02-16\",\n            \"m\": \"0.00000\",\n            \"ppd\": \"0.06440\",\n            \"tn\": \"SPT\"\n        },\n        {\n            \"vd\": \"2024-02-17\",\n            \"m\": \"0.06840\",\n            \"ppd\": \"0.06840\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2024-02-18\",\n            \"m\": \"0.13670\",\n            \"ppd\": \"0.06840\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2024-02-19\",\n            \"m\": \"0.20510\",\n            \"ppd\": \"0.06830\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2024-02-20\",\n            \"m\": \"0.27340\",\n            \"ppd\": \"0.06830\",\n            \"tn\": \"SN\"\n        },\n        {\n            \"vd\": \"2024-02-21\",\n            \"m\": \"0.34820\",\n            \"ppd\": \"0.07480\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2024-02-22\",\n            \"m\": \"0.42300\",\n            \"ppd\": \"0.07480\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2024-02-23\",\n            \"m\": \"0.49780\",\n            \"ppd\": \"0.07480\",\n            \"tn\": \"W1\"\n        },\n        {\n            \"vd\": \"2024-02-24\",\n            \"m\": \"0.57190\",\n            \"ppd\": \"0.07410\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2024-02-25\",\n            \"m\": \"0.64600\",\n            \"ppd\": \"0.07410\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2024-02-26\",\n            \"m\": \"0.72010\",\n            \"ppd\": \"0.07410\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2024-02-27\",\n            \"m\": \"0.79410\",\n            \"ppd\": \"0.07400\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2024-02-28\",\n            \"m\": \"0.86810\",\n            \"ppd\": \"0.07400\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2024-02-29\",\n            \"m\": \"0.94210\",\n            \"ppd\": \"0.07400\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2024-03-01\",\n            \"m\": \"1.01610\",\n            \"ppd\": \"0.07400\",\n            \"tn\": \"W2\"\n        },\n        {\n            \"vd\": \"2024-03-02\",\n            \"m\": \"1.08880\",\n            \"ppd\": \"0.07270\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2024-03-03\",\n            \"m\": \"1.16150\",\n            \"ppd\": \"0.07270\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2024-03-04\",\n            \"m\": \"1.23420\",\n            \"ppd\": \"0.07270\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2024-03-05\",\n            \"m\": \"1.30680\",\n            \"ppd\": \"0.07260\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2024-03-06\",\n            \"m\": \"1.37940\",\n            \"ppd\": \"0.07260\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2024-03-07\",\n            \"m\": \"1.45200\",\n            \"ppd\": \"0.07260\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2024-03-08\",\n            \"m\": \"1.52460\",\n            \"ppd\": \"0.07260\",\n            \"tn\": \"W3\"\n        },\n        {\n            \"vd\": \"2024-03-09\",\n            \"m\": \"1.59820\",\n            \"ppd\": \"0.07360\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2024-03-10\",\n            \"m\": \"1.67190\",\n            \"ppd\": \"0.07360\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2024-03-11\",\n            \"m\": \"1.74550\",\n            \"ppd\": \"0.07360\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2024-03-12\",\n            \"m\": \"1.81910\",\n            \"ppd\": \"0.07360\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2024-03-13\",\n            \"m\": \"1.89260\",\n            \"ppd\": \"0.07360\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2024-03-14\",\n            \"m\": \"1.96610\",\n            \"ppd\": \"0.07350\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2024-03-15\",\n            \"m\": \"2.03970\",\n            \"ppd\": \"0.07350\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2024-03-16\",\n            \"m\": \"2.11320\",\n            \"ppd\": \"0.07350\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2024-03-17\",\n            \"m\": \"2.18660\",\n            \"ppd\": \"0.07350\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2024-03-18\",\n            \"m\": \"2.26010\",\n            \"ppd\": \"0.07350\",\n            \"tn\": \"M1\"\n        },\n        {\n            \"vd\": \"2024-03-19\",\n            \"m\": \"2.33350\",\n            \"ppd\": \"0.07340\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2024-03-20\",\n            \"m\": \"2.40700\",\n            \"ppd\": \"0.07340\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2024-03-21\",\n            \"m\": \"2.48030\",\n            \"ppd\": \"0.07340\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2024-03-22\",\n            \"m\": \"2.55650\",\n            \"ppd\": \"0.07610\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2024-03-23\",\n            \"m\": \"2.63550\",\n            \"ppd\": \"0.07900\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2024-03-24\",\n            \"m\": \"2.71450\",\n            \"ppd\": \"0.07900\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2024-03-25\",\n            \"m\": \"2.79340\",\n            \"ppd\": \"0.07900\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2024-03-26\",\n            \"m\": \"2.87240\",\n            \"ppd\": \"0.07890\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2024-03-27\",\n            \"m\": \"2.95130\",\n            \"ppd\": \"0.07890\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2024-03-28\",\n            \"m\": \"3.03020\",\n            \"ppd\": \"0.07890\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2024-03-29\",\n            \"m\": \"3.10910\",\n            \"ppd\": \"0.07890\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2024-03-30\",\n            \"m\": \"3.18790\",\n            \"ppd\": \"0.07890\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2024-03-31\",\n            \"m\": \"3.26670\",\n            \"ppd\": \"0.07880\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2024-04-01\",\n            \"m\": \"3.34560\",\n            \"ppd\": \"0.07880\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2024-04-02\",\n            \"m\": \"3.42430\",\n            \"ppd\": \"0.07880\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2024-04-03\",\n            \"m\": \"3.50310\",\n            \"ppd\": \"0.07880\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2024-04-04\",\n            \"m\": \"3.58180\",\n            \"ppd\": \"0.07870\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2024-04-05\",\n            \"m\": \"3.66060\",\n            \"ppd\": \"0.07870\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2024-04-06\",\n            \"m\": \"3.73930\",\n            \"ppd\": \"0.07870\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2024-04-07\",\n            \"m\": \"3.81790\",\n            \"ppd\": \"0.07870\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2024-04-08\",\n            \"m\": \"3.89660\",\n            \"ppd\": \"0.07870\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2024-04-09\",\n            \"m\": \"3.97520\",\n            \"ppd\": \"0.07860\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2024-04-10\",\n            \"m\": \"4.05380\",\n            \"ppd\": \"0.07860\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2024-04-11\",\n            \"m\": \"4.13240\",\n            \"ppd\": \"0.07860\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2024-04-12\",\n            \"m\": \"4.21100\",\n            \"ppd\": \"0.07860\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2024-04-13\",\n            \"m\": \"4.28950\",\n            \"ppd\": \"0.07850\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2024-04-14\",\n            \"m\": \"4.36800\",\n            \"ppd\": \"0.07850\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2024-04-15\",\n            \"m\": \"4.44650\",\n            \"ppd\": \"0.07850\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2024-04-16\",\n            \"m\": \"4.52500\",\n            \"ppd\": \"0.07850\",\n            \"tn\": \"M2\"\n        },\n        {\n            \"vd\": \"2024-04-17\",\n            \"m\": \"4.59440\",\n            \"ppd\": \"0.06940\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2024-04-18\",\n            \"m\": \"4.66380\",\n            \"ppd\": \"0.06940\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2024-04-19\",\n            \"m\": \"4.73320\",\n            \"ppd\": \"0.06940\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2024-04-20\",\n            \"m\": \"4.80260\",\n            \"ppd\": \"0.06940\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2024-04-21\",\n            \"m\": \"4.87200\",\n            \"ppd\": \"0.06940\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2024-04-22\",\n            \"m\": \"4.94130\",\n            \"ppd\": \"0.06930\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2024-04-23\",\n            \"m\": \"5.01060\",\n            \"ppd\": \"0.06930\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2024-04-24\",\n            \"m\": \"5.07990\",\n            \"ppd\": \"0.06930\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2024-04-25\",\n            \"m\": \"5.14920\",\n            \"ppd\": \"0.06930\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2024-04-26\",\n            \"m\": \"5.21840\",\n            \"ppd\": \"0.06930\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2024-04-27\",\n            \"m\": \"5.28760\",\n            \"ppd\": \"0.06920\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2024-04-28\",\n            \"m\": \"5.35690\",\n            \"ppd\": \"0.06920\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2024-04-29\",\n            \"m\": \"5.42610\",\n            \"ppd\": \"0.06920\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2024-04-30\",\n            \"m\": \"5.49520\",\n            \"ppd\": \"0.06920\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2024-05-01\",\n            \"m\": \"5.56440\",\n            \"ppd\": \"0.06920\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2024-05-02\",\n            \"m\": \"5.63350\",\n            \"ppd\": \"0.06910\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2024-05-03\",\n            \"m\": \"5.68780\",\n            \"ppd\": \"0.05430\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2024-05-04\",\n            \"m\": \"5.74210\",\n            \"ppd\": \"0.05430\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2024-05-05\",\n            \"m\": \"5.79630\",\n            \"ppd\": \"0.05430\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2024-05-06\",\n            \"m\": \"5.85060\",\n            \"ppd\": \"0.05420\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2024-05-07\",\n            \"m\": \"5.90480\",\n            \"ppd\": \"0.05420\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2024-05-08\",\n            \"m\": \"5.95900\",\n            \"ppd\": \"0.05420\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2024-05-09\",\n            \"m\": \"6.01320\",\n            \"ppd\": \"0.05420\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2024-05-10\",\n            \"m\": \"6.06740\",\n            \"ppd\": \"0.05420\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2024-05-11\",\n            \"m\": \"6.12900\",\n            \"ppd\": \"0.06170\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2024-05-12\",\n            \"m\": \"6.19060\",\n            \"ppd\": \"0.06160\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2024-05-13\",\n            \"m\": \"6.25230\",\n            \"ppd\": \"0.06160\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2024-05-14\",\n            \"m\": \"6.31390\",\n            \"ppd\": \"0.06160\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2024-05-15\",\n            \"m\": \"6.37540\",\n            \"ppd\": \"0.06160\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2024-05-16\",\n            \"m\": \"6.43700\",\n            \"ppd\": \"0.06160\",\n            \"tn\": \"M3\"\n        },\n        {\n            \"vd\": \"2024-05-17\",\n            \"m\": \"6.49850\",\n            \"ppd\": \"0.06150\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2024-05-18\",\n            \"m\": \"6.56010\",\n            \"ppd\": \"0.06150\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2024-05-19\",\n            \"m\": \"6.62160\",\n            \"ppd\": \"0.06150\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2024-05-20\",\n            \"m\": \"6.68310\",\n            \"ppd\": \"0.06150\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2024-05-21\",\n            \"m\": \"6.74460\",\n            \"ppd\": \"0.06150\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2024-05-22\",\n            \"m\": \"6.80600\",\n            \"ppd\": \"0.06150\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2024-05-23\",\n            \"m\": \"6.86750\",\n            \"ppd\": \"0.06140\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2024-05-24\",\n            \"m\": \"6.92890\",\n            \"ppd\": \"0.06140\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2024-05-25\",\n            \"m\": \"6.99030\",\n            \"ppd\": \"0.06140\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2024-05-26\",\n            \"m\": \"7.05170\",\n            \"ppd\": \"0.06140\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2024-05-27\",\n            \"m\": \"7.11310\",\n            \"ppd\": \"0.06140\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2024-05-28\",\n            \"m\": \"7.17440\",\n            \"ppd\": \"0.06140\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2024-05-29\",\n            \"m\": \"7.23580\",\n            \"ppd\": \"0.06130\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2024-05-30\",\n            \"m\": \"7.29710\",\n            \"ppd\": \"0.06130\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2024-05-31\",\n            \"m\": \"7.35840\",\n            \"ppd\": \"0.06130\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2024-06-01\",\n            \"m\": \"7.41970\",\n            \"ppd\": \"0.06130\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2024-06-02\",\n            \"m\": \"7.48100\",\n            \"ppd\": \"0.06130\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2024-06-03\",\n            \"m\": \"7.54220\",\n            \"ppd\": \"0.06130\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2024-06-04\",\n            \"m\": \"7.60350\",\n            \"ppd\": \"0.06120\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2024-06-05\",\n            \"m\": \"7.66470\",\n            \"ppd\": \"0.06120\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2024-06-06\",\n            \"m\": \"7.72590\",\n            \"ppd\": \"0.06120\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2024-06-07\",\n            \"m\": \"7.78710\",\n            \"ppd\": \"0.06120\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2024-06-08\",\n            \"m\": \"7.84820\",\n            \"ppd\": \"0.06120\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2024-06-09\",\n            \"m\": \"7.90940\",\n            \"ppd\": \"0.06120\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2024-06-10\",\n            \"m\": \"7.97050\",\n            \"ppd\": \"0.06110\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2024-06-11\",\n            \"m\": \"8.03160\",\n            \"ppd\": \"0.06110\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2024-06-12\",\n            \"m\": \"8.09270\",\n            \"ppd\": \"0.06110\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2024-06-13\",\n            \"m\": \"8.15380\",\n            \"ppd\": \"0.06110\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2024-06-14\",\n            \"m\": \"8.17230\",\n            \"ppd\": \"0.01850\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2024-06-15\",\n            \"m\": \"8.19070\",\n            \"ppd\": \"0.01840\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2024-06-16\",\n            \"m\": \"8.20920\",\n            \"ppd\": \"0.01840\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2024-06-17\",\n            \"m\": \"8.22760\",\n            \"ppd\": \"0.01840\",\n            \"tn\": \"M4\"\n        },\n        {\n            \"vd\": \"2024-06-18\",\n            \"m\": \"8.24600\",\n            \"ppd\": \"0.01840\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2024-06-19\",\n            \"m\": \"8.26450\",\n            \"ppd\": \"0.01840\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2024-06-20\",\n            \"m\": \"8.28290\",\n            \"ppd\": \"0.01840\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2024-06-21\",\n            \"m\": \"8.30130\",\n            \"ppd\": \"0.01840\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2024-06-22\",\n            \"m\": \"8.35000\",\n            \"ppd\": \"0.04870\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2024-06-23\",\n            \"m\": \"8.39860\",\n            \"ppd\": \"0.04870\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2024-06-24\",\n            \"m\": \"8.44720\",\n            \"ppd\": \"0.04860\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2024-06-25\",\n            \"m\": \"8.49590\",\n            \"ppd\": \"0.04860\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2024-06-26\",\n            \"m\": \"8.54450\",\n            \"ppd\": \"0.04860\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2024-06-27\",\n            \"m\": \"8.59310\",\n            \"ppd\": \"0.04860\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2024-06-28\",\n            \"m\": \"8.64170\",\n            \"ppd\": \"0.04860\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2024-06-29\",\n            \"m\": \"8.69020\",\n            \"ppd\": \"0.04860\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2024-06-30\",\n            \"m\": \"8.73880\",\n            \"ppd\": \"0.04860\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2024-07-01\",\n            \"m\": \"8.78730\",\n            \"ppd\": \"0.04850\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2024-07-02\",\n            \"m\": \"8.83590\",\n            \"ppd\": \"0.04850\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2024-07-03\",\n            \"m\": \"8.88440\",\n            \"ppd\": \"0.04850\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2024-07-04\",\n            \"m\": \"8.93290\",\n            \"ppd\": \"0.04850\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2024-07-05\",\n            \"m\": \"8.98140\",\n            \"ppd\": \"0.04850\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2024-07-06\",\n            \"m\": \"9.02990\",\n            \"ppd\": \"0.04850\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2024-07-07\",\n            \"m\": \"9.07830\",\n            \"ppd\": \"0.04850\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2024-07-08\",\n            \"m\": \"9.12680\",\n            \"ppd\": \"0.04850\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2024-07-09\",\n            \"m\": \"9.17520\",\n            \"ppd\": \"0.04840\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2024-07-10\",\n            \"m\": \"9.22360\",\n            \"ppd\": \"0.04840\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2024-07-11\",\n            \"m\": \"9.27200\",\n            \"ppd\": \"0.04840\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2024-07-12\",\n            \"m\": \"9.32040\",\n            \"ppd\": \"0.04840\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2024-07-13\",\n            \"m\": \"9.36880\",\n            \"ppd\": \"0.04840\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2024-07-14\",\n            \"m\": \"9.41720\",\n            \"ppd\": \"0.04840\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2024-07-15\",\n            \"m\": \"9.46560\",\n            \"ppd\": \"0.04840\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2024-07-16\",\n            \"m\": \"9.51390\",\n            \"ppd\": \"0.04830\",\n            \"tn\": \"M5\"\n        },\n        {\n            \"vd\": \"2024-07-17\",\n            \"m\": \"9.56070\",\n            \"ppd\": \"0.04680\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2024-07-18\",\n            \"m\": \"9.60740\",\n            \"ppd\": \"0.04670\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2024-07-19\",\n            \"m\": \"9.65410\",\n            \"ppd\": \"0.04670\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2024-07-20\",\n            \"m\": \"9.70080\",\n            \"ppd\": \"0.04670\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2024-07-21\",\n            \"m\": \"9.74750\",\n            \"ppd\": \"0.04670\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2024-07-22\",\n            \"m\": \"9.79420\",\n            \"ppd\": \"0.04670\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2024-07-23\",\n            \"m\": \"9.84090\",\n            \"ppd\": \"0.04670\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2024-07-24\",\n            \"m\": \"9.88760\",\n            \"ppd\": \"0.04670\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2024-07-25\",\n            \"m\": \"9.93420\",\n            \"ppd\": \"0.04670\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2024-07-26\",\n            \"m\": \"9.98090\",\n            \"ppd\": \"0.04660\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2024-07-27\",\n            \"m\": \"10.02750\",\n            \"ppd\": \"0.04660\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2024-07-28\",\n            \"m\": \"10.07410\",\n            \"ppd\": \"0.04660\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2024-07-29\",\n            \"m\": \"10.12070\",\n            \"ppd\": \"0.04660\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2024-07-30\",\n            \"m\": \"10.16730\",\n            \"ppd\": \"0.04660\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2024-07-31\",\n            \"m\": \"10.21390\",\n            \"ppd\": \"0.04660\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2024-08-01\",\n            \"m\": \"10.26040\",\n            \"ppd\": \"0.04660\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2024-08-02\",\n            \"m\": \"10.26650\",\n            \"ppd\": \"0.00600\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2024-08-03\",\n            \"m\": \"10.30230\",\n            \"ppd\": \"0.03590\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2024-08-04\",\n            \"m\": \"10.33820\",\n            \"ppd\": \"0.03590\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2024-08-05\",\n            \"m\": \"10.37410\",\n            \"ppd\": \"0.03590\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2024-08-06\",\n            \"m\": \"10.40990\",\n            \"ppd\": \"0.03590\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2024-08-07\",\n            \"m\": \"10.44580\",\n            \"ppd\": \"0.03580\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2024-08-08\",\n            \"m\": \"10.48160\",\n            \"ppd\": \"0.03580\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2024-08-09\",\n            \"m\": \"10.51750\",\n            \"ppd\": \"0.03580\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2024-08-10\",\n            \"m\": \"10.55330\",\n            \"ppd\": \"0.03580\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2024-08-11\",\n            \"m\": \"10.58910\",\n            \"ppd\": \"0.03580\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2024-08-12\",\n            \"m\": \"10.62490\",\n            \"ppd\": \"0.03580\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2024-08-13\",\n            \"m\": \"10.66070\",\n            \"ppd\": \"0.03580\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2024-08-14\",\n            \"m\": \"10.69650\",\n            \"ppd\": \"0.03580\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2024-08-15\",\n            \"m\": \"10.73220\",\n            \"ppd\": \"0.03580\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2024-08-16\",\n            \"m\": \"10.76800\",\n            \"ppd\": \"0.03580\",\n            \"tn\": \"M6\"\n        },\n        {\n            \"vd\": \"2024-08-17\",\n            \"m\": \"10.80380\",\n            \"ppd\": \"0.03580\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2024-08-18\",\n            \"m\": \"10.83950\",\n            \"ppd\": \"0.03570\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2024-08-19\",\n            \"m\": \"10.87520\",\n            \"ppd\": \"0.03570\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2024-08-20\",\n            \"m\": \"10.91100\",\n            \"ppd\": \"0.03570\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2024-08-21\",\n            \"m\": \"10.94670\",\n            \"ppd\": \"0.03570\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2024-08-22\",\n            \"m\": \"10.98240\",\n            \"ppd\": \"0.03570\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2024-08-23\",\n            \"m\": \"11.01810\",\n            \"ppd\": \"0.03570\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2024-08-24\",\n            \"m\": \"11.05380\",\n            \"ppd\": \"0.03570\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2024-08-25\",\n            \"m\": \"11.08940\",\n            \"ppd\": \"0.03570\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2024-08-26\",\n            \"m\": \"11.12510\",\n            \"ppd\": \"0.03570\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2024-08-27\",\n            \"m\": \"11.16080\",\n            \"ppd\": \"0.03570\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2024-08-28\",\n            \"m\": \"11.19640\",\n            \"ppd\": \"0.03560\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2024-08-29\",\n            \"m\": \"11.23200\",\n            \"ppd\": \"0.03560\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2024-08-30\",\n            \"m\": \"11.26770\",\n            \"ppd\": \"0.03560\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2024-08-31\",\n            \"m\": \"11.30330\",\n            \"ppd\": \"0.03560\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2024-09-01\",\n            \"m\": \"11.33890\",\n            \"ppd\": \"0.03560\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2024-09-02\",\n            \"m\": \"11.37450\",\n            \"ppd\": \"0.03560\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2024-09-03\",\n            \"m\": \"11.41010\",\n            \"ppd\": \"0.03560\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2024-09-04\",\n            \"m\": \"11.44570\",\n            \"ppd\": \"0.03560\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2024-09-05\",\n            \"m\": \"11.48120\",\n            \"ppd\": \"0.03560\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2024-09-06\",\n            \"m\": \"11.51680\",\n            \"ppd\": \"0.03560\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2024-09-07\",\n            \"m\": \"11.55240\",\n            \"ppd\": \"0.03560\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2024-09-08\",\n            \"m\": \"11.58790\",\n            \"ppd\": \"0.03550\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2024-09-09\",\n            \"m\": \"11.62340\",\n            \"ppd\": \"0.03550\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2024-09-10\",\n            \"m\": \"11.65900\",\n            \"ppd\": \"0.03550\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2024-09-11\",\n            \"m\": \"11.69450\",\n            \"ppd\": \"0.03550\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2024-09-12\",\n            \"m\": \"11.73000\",\n            \"ppd\": \"0.03550\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2024-09-13\",\n            \"m\": \"11.76550\",\n            \"ppd\": \"0.03550\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2024-09-14\",\n            \"m\": \"11.80100\",\n            \"ppd\": \"0.03550\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2024-09-15\",\n            \"m\": \"11.83640\",\n            \"ppd\": \"0.03550\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2024-09-16\",\n            \"m\": \"11.87190\",\n            \"ppd\": \"0.03550\",\n            \"tn\": \"M7\"\n        },\n        {\n            \"vd\": \"2024-09-17\",\n            \"m\": \"11.90740\",\n            \"ppd\": \"0.03550\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2024-09-18\",\n            \"m\": \"11.94280\",\n            \"ppd\": \"0.03540\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2024-09-19\",\n            \"m\": \"11.97820\",\n            \"ppd\": \"0.03540\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2024-09-20\",\n            \"m\": \"11.95900\",\n            \"ppd\": \"-0.01920\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2024-09-21\",\n            \"m\": \"11.98990\",\n            \"ppd\": \"0.03090\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2024-09-22\",\n            \"m\": \"12.02080\",\n            \"ppd\": \"0.03090\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2024-09-23\",\n            \"m\": \"12.05160\",\n            \"ppd\": \"0.03090\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2024-09-24\",\n            \"m\": \"12.08250\",\n            \"ppd\": \"0.03090\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2024-09-25\",\n            \"m\": \"12.11330\",\n            \"ppd\": \"0.03080\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2024-09-26\",\n            \"m\": \"12.14420\",\n            \"ppd\": \"0.03080\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2024-09-27\",\n            \"m\": \"12.17500\",\n            \"ppd\": \"0.03080\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2024-09-28\",\n            \"m\": \"12.20580\",\n            \"ppd\": \"0.03080\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2024-09-29\",\n            \"m\": \"12.23660\",\n            \"ppd\": \"0.03080\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2024-09-30\",\n            \"m\": \"12.26750\",\n            \"ppd\": \"0.03080\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2024-10-01\",\n            \"m\": \"12.29830\",\n            \"ppd\": \"0.03080\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2024-10-02\",\n            \"m\": \"12.32900\",\n            \"ppd\": \"0.03080\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2024-10-03\",\n            \"m\": \"12.35980\",\n            \"ppd\": \"0.03080\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2024-10-04\",\n            \"m\": \"12.39060\",\n            \"ppd\": \"0.03080\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2024-10-05\",\n            \"m\": \"12.42140\",\n            \"ppd\": \"0.03080\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2024-10-06\",\n            \"m\": \"12.45210\",\n            \"ppd\": \"0.03080\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2024-10-07\",\n            \"m\": \"12.48290\",\n            \"ppd\": \"0.03080\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2024-10-08\",\n            \"m\": \"12.51360\",\n            \"ppd\": \"0.03070\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2024-10-09\",\n            \"m\": \"12.54440\",\n            \"ppd\": \"0.03070\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2024-10-10\",\n            \"m\": \"12.57510\",\n            \"ppd\": \"0.03070\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2024-10-11\",\n            \"m\": \"12.60580\",\n            \"ppd\": \"0.03070\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2024-10-12\",\n            \"m\": \"12.63650\",\n            \"ppd\": \"0.03070\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2024-10-13\",\n            \"m\": \"12.66720\",\n            \"ppd\": \"0.03070\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2024-10-14\",\n            \"m\": \"12.69790\",\n            \"ppd\": \"0.03070\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2024-10-15\",\n            \"m\": \"12.72860\",\n            \"ppd\": \"0.03070\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2024-10-16\",\n            \"m\": \"12.75930\",\n            \"ppd\": \"0.03070\",\n            \"tn\": \"M8\"\n        },\n        {\n            \"vd\": \"2024-10-17\",\n            \"m\": \"12.77730\",\n            \"ppd\": \"0.01800\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2024-10-18\",\n            \"m\": \"12.79530\",\n            \"ppd\": \"0.01800\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2024-10-19\",\n            \"m\": \"12.81330\",\n            \"ppd\": \"0.01800\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2024-10-20\",\n            \"m\": \"12.83130\",\n            \"ppd\": \"0.01800\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2024-10-21\",\n            \"m\": \"12.84930\",\n            \"ppd\": \"0.01800\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2024-10-22\",\n            \"m\": \"12.86730\",\n            \"ppd\": \"0.01800\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2024-10-23\",\n            \"m\": \"12.88520\",\n            \"ppd\": \"0.01800\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2024-10-24\",\n            \"m\": \"12.90320\",\n            \"ppd\": \"0.01800\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2024-10-25\",\n            \"m\": \"12.92120\",\n            \"ppd\": \"0.01800\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2024-10-26\",\n            \"m\": \"12.93910\",\n            \"ppd\": \"0.01800\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2024-10-27\",\n            \"m\": \"12.95710\",\n            \"ppd\": \"0.01800\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2024-10-28\",\n            \"m\": \"12.97500\",\n            \"ppd\": \"0.01800\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2024-10-29\",\n            \"m\": \"12.99300\",\n            \"ppd\": \"0.01790\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2024-10-30\",\n            \"m\": \"13.01090\",\n            \"ppd\": \"0.01790\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2024-10-31\",\n            \"m\": \"13.02890\",\n            \"ppd\": \"0.01790\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2024-11-01\",\n            \"m\": \"13.04680\",\n            \"ppd\": \"0.01790\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2024-11-02\",\n            \"m\": \"13.06470\",\n            \"ppd\": \"0.01790\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2024-11-03\",\n            \"m\": \"13.08260\",\n            \"ppd\": \"0.01790\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2024-11-04\",\n            \"m\": \"13.10060\",\n            \"ppd\": \"0.01790\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2024-11-05\",\n            \"m\": \"13.11850\",\n            \"ppd\": \"0.01790\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2024-11-06\",\n            \"m\": \"13.13640\",\n            \"ppd\": \"0.01790\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2024-11-07\",\n            \"m\": \"13.15430\",\n            \"ppd\": \"0.01790\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2024-11-08\",\n            \"m\": \"13.17220\",\n            \"ppd\": \"0.01790\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2024-11-09\",\n            \"m\": \"13.19920\",\n            \"ppd\": \"0.02700\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2024-11-10\",\n            \"m\": \"13.22630\",\n            \"ppd\": \"0.02700\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2024-11-11\",\n            \"m\": \"13.25330\",\n            \"ppd\": \"0.02700\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2024-11-12\",\n            \"m\": \"13.28030\",\n            \"ppd\": \"0.02700\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2024-11-13\",\n            \"m\": \"13.30730\",\n            \"ppd\": \"0.02700\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2024-11-14\",\n            \"m\": \"13.33430\",\n            \"ppd\": \"0.02700\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2024-11-15\",\n            \"m\": \"13.36130\",\n            \"ppd\": \"0.02700\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2024-11-16\",\n            \"m\": \"13.38830\",\n            \"ppd\": \"0.02700\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2024-11-17\",\n            \"m\": \"13.41530\",\n            \"ppd\": \"0.02700\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2024-11-18\",\n            \"m\": \"13.44230\",\n            \"ppd\": \"0.02700\",\n            \"tn\": \"M9\"\n        },\n        {\n            \"vd\": \"2024-11-19\",\n            \"m\": \"13.46930\",\n            \"ppd\": \"0.02700\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2024-11-20\",\n            \"m\": \"13.49620\",\n            \"ppd\": \"0.02700\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2024-11-21\",\n            \"m\": \"13.52320\",\n            \"ppd\": \"0.02700\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2024-11-22\",\n            \"m\": \"13.55020\",\n            \"ppd\": \"0.02700\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2024-11-23\",\n            \"m\": \"13.57710\",\n            \"ppd\": \"0.02690\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2024-11-24\",\n            \"m\": \"13.60400\",\n            \"ppd\": \"0.02690\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2024-11-25\",\n            \"m\": \"13.63100\",\n            \"ppd\": \"0.02690\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2024-11-26\",\n            \"m\": \"13.65790\",\n            \"ppd\": \"0.02690\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2024-11-27\",\n            \"m\": \"13.68480\",\n            \"ppd\": \"0.02690\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2024-11-28\",\n            \"m\": \"13.71170\",\n            \"ppd\": \"0.02690\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2024-11-29\",\n            \"m\": \"13.73860\",\n            \"ppd\": \"0.02690\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2024-11-30\",\n            \"m\": \"13.76550\",\n            \"ppd\": \"0.02690\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2024-12-01\",\n            \"m\": \"13.79240\",\n            \"ppd\": \"0.02690\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2024-12-02\",\n            \"m\": \"13.81930\",\n            \"ppd\": \"0.02690\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2024-12-03\",\n            \"m\": \"13.84620\",\n            \"ppd\": \"0.02690\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2024-12-04\",\n            \"m\": \"13.87310\",\n            \"ppd\": \"0.02690\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2024-12-05\",\n            \"m\": \"13.89990\",\n            \"ppd\": \"0.02690\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2024-12-06\",\n            \"m\": \"13.92680\",\n            \"ppd\": \"0.02690\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2024-12-07\",\n            \"m\": \"13.95360\",\n            \"ppd\": \"0.02690\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2024-12-08\",\n            \"m\": \"13.98050\",\n            \"ppd\": \"0.02680\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2024-12-09\",\n            \"m\": \"14.00730\",\n            \"ppd\": \"0.02680\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2024-12-10\",\n            \"m\": \"14.03420\",\n            \"ppd\": \"0.02680\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2024-12-11\",\n            \"m\": \"14.06100\",\n            \"ppd\": \"0.02680\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2024-12-12\",\n            \"m\": \"14.08780\",\n            \"ppd\": \"0.02680\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2024-12-13\",\n            \"m\": \"14.11460\",\n            \"ppd\": \"0.02680\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2024-12-14\",\n            \"m\": \"14.14140\",\n            \"ppd\": \"0.02680\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2024-12-15\",\n            \"m\": \"14.16820\",\n            \"ppd\": \"0.02680\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2024-12-16\",\n            \"m\": \"14.19500\",\n            \"ppd\": \"0.02680\",\n            \"tn\": \"M10\"\n        },\n        {\n            \"vd\": \"2024-12-17\",\n            \"m\": \"14.22180\",\n            \"ppd\": \"0.02680\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2024-12-18\",\n            \"m\": \"14.24860\",\n            \"ppd\": \"0.02680\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2024-12-19\",\n            \"m\": \"14.27530\",\n            \"ppd\": \"0.02680\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2024-12-20\",\n            \"m\": \"14.31210\",\n            \"ppd\": \"0.03670\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2024-12-21\",\n            \"m\": \"14.34880\",\n            \"ppd\": \"0.03670\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2024-12-22\",\n            \"m\": \"14.38550\",\n            \"ppd\": \"0.03670\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2024-12-23\",\n            \"m\": \"14.42220\",\n            \"ppd\": \"0.03670\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2024-12-24\",\n            \"m\": \"14.45890\",\n            \"ppd\": \"0.03670\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2024-12-25\",\n            \"m\": \"14.49560\",\n            \"ppd\": \"0.03670\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2024-12-26\",\n            \"m\": \"14.53230\",\n            \"ppd\": \"0.03670\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2024-12-27\",\n            \"m\": \"14.56890\",\n            \"ppd\": \"0.03670\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2024-12-28\",\n            \"m\": \"14.60560\",\n            \"ppd\": \"0.03670\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2024-12-29\",\n            \"m\": \"14.64230\",\n            \"ppd\": \"0.03670\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2024-12-30\",\n            \"m\": \"14.67890\",\n            \"ppd\": \"0.03660\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2024-12-31\",\n            \"m\": \"14.71550\",\n            \"ppd\": \"0.03660\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2025-01-01\",\n            \"m\": \"15.68150\",\n            \"ppd\": \"0.96600\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2025-01-02\",\n            \"m\": \"16.64740\",\n            \"ppd\": \"0.96590\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2025-01-03\",\n            \"m\": \"16.68380\",\n            \"ppd\": \"0.03640\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2025-01-04\",\n            \"m\": \"16.72020\",\n            \"ppd\": \"0.03640\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2025-01-05\",\n            \"m\": \"16.75660\",\n            \"ppd\": \"0.03640\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2025-01-06\",\n            \"m\": \"16.79290\",\n            \"ppd\": \"0.03640\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2025-01-07\",\n            \"m\": \"16.82930\",\n            \"ppd\": \"0.03640\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2025-01-08\",\n            \"m\": \"16.86560\",\n            \"ppd\": \"0.03630\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2025-01-09\",\n            \"m\": \"16.90200\",\n            \"ppd\": \"0.03630\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2025-01-10\",\n            \"m\": \"16.93830\",\n            \"ppd\": \"0.03630\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2025-01-11\",\n            \"m\": \"16.97460\",\n            \"ppd\": \"0.03630\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2025-01-12\",\n            \"m\": \"17.01090\",\n            \"ppd\": \"0.03630\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2025-01-13\",\n            \"m\": \"17.04720\",\n            \"ppd\": \"0.03630\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2025-01-14\",\n            \"m\": \"17.08350\",\n            \"ppd\": \"0.03630\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2025-01-15\",\n            \"m\": \"17.11980\",\n            \"ppd\": \"0.03630\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2025-01-16\",\n            \"m\": \"17.15610\",\n            \"ppd\": \"0.03630\",\n            \"tn\": \"M11\"\n        },\n        {\n            \"vd\": \"2025-01-17\",\n            \"m\": \"17.16370\",\n            \"ppd\": \"0.00760\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2025-01-18\",\n            \"m\": \"17.17140\",\n            \"ppd\": \"0.00760\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2025-01-19\",\n            \"m\": \"17.17900\",\n            \"ppd\": \"0.00760\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2025-01-20\",\n            \"m\": \"17.18670\",\n            \"ppd\": \"0.00760\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2025-01-21\",\n            \"m\": \"17.19430\",\n            \"ppd\": \"0.00760\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2025-01-22\",\n            \"m\": \"17.20190\",\n            \"ppd\": \"0.00760\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2025-01-23\",\n            \"m\": \"17.20960\",\n            \"ppd\": \"0.00760\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2025-01-24\",\n            \"m\": \"17.21720\",\n            \"ppd\": \"0.00760\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2025-01-25\",\n            \"m\": \"17.22480\",\n            \"ppd\": \"0.00760\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2025-01-26\",\n            \"m\": \"17.23240\",\n            \"ppd\": \"0.00760\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2025-01-27\",\n            \"m\": \"17.24010\",\n            \"ppd\": \"0.00760\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2025-01-28\",\n            \"m\": \"17.24770\",\n            \"ppd\": \"0.00760\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2025-01-29\",\n            \"m\": \"17.25530\",\n            \"ppd\": \"0.00760\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2025-01-30\",\n            \"m\": \"17.26290\",\n            \"ppd\": \"0.00760\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2025-01-31\",\n            \"m\": \"17.27050\",\n            \"ppd\": \"0.00760\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2025-02-01\",\n            \"m\": \"17.27810\",\n            \"ppd\": \"0.00760\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2025-02-02\",\n            \"m\": \"17.28580\",\n            \"ppd\": \"0.00760\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2025-02-03\",\n            \"m\": \"17.29340\",\n            \"ppd\": \"0.00760\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2025-02-04\",\n            \"m\": \"17.30100\",\n            \"ppd\": \"0.00760\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2025-02-05\",\n            \"m\": \"17.30860\",\n            \"ppd\": \"0.00760\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2025-02-06\",\n            \"m\": \"17.31620\",\n            \"ppd\": \"0.00760\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2025-02-07\",\n            \"m\": \"17.32380\",\n            \"ppd\": \"0.00760\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2025-02-08\",\n            \"m\": \"17.33140\",\n            \"ppd\": \"0.00760\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2025-02-09\",\n            \"m\": \"17.33900\",\n            \"ppd\": \"0.00760\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2025-02-10\",\n            \"m\": \"17.34660\",\n            \"ppd\": \"0.00760\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2025-02-11\",\n            \"m\": \"17.35420\",\n            \"ppd\": \"0.00760\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2025-02-12\",\n            \"m\": \"17.36180\",\n            \"ppd\": \"0.00760\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2025-02-13\",\n            \"m\": \"17.36940\",\n            \"ppd\": \"0.00760\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2025-02-14\",\n            \"m\": \"17.37700\",\n            \"ppd\": \"0.00760\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2025-02-15\",\n            \"m\": \"17.38450\",\n            \"ppd\": \"0.00760\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2025-02-16\",\n            \"m\": \"17.39210\",\n            \"ppd\": \"0.00760\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2025-02-17\",\n            \"m\": \"17.39970\",\n            \"ppd\": \"0.00760\",\n            \"tn\": null\n        },\n        {\n            \"vd\": \"2025-02-18\",\n            \"m\": \"17.40730\",\n            \"ppd\": \"0.00760\",\n            \"tn\": \"M12\"\n        }\n    ]\n}"}],"_postman_id":"8fdc708d-5a02-4da8-b0fb-4c6daac112a4"}],"id":"58dde3ef-6315-4644-906d-57eb3fd29672","_postman_id":"58dde3ef-6315-4644-906d-57eb3fd29672","description":"","auth":{"type":"oauth2","oauth2":{"refreshRequestParams":"<refresh-request-params>","password":"{{AUTH_PASSWORD}}","username":"{{AUTH_USERNAME}}","refreshTokenUrl":"<refresh-token-url>","accessTokenUrl":"<access-token-url>","grant_type":"<grant_type>","authUrl":"<auth-url>"},"isInherited":true,"source":{"_postman_id":"9ebb9928-d7bc-4f70-89b3-72c671248367","id":"9ebb9928-d7bc-4f70-89b3-72c671248367","name":"API","type":"folder"}}}],"id":"d208fd06-a5f2-4695-a0fd-24b47465a1a8","_postman_id":"d208fd06-a5f2-4695-a0fd-24b47465a1a8","description":"","auth":{"type":"oauth2","oauth2":{"refreshRequestParams":"<refresh-request-params>","password":"{{AUTH_PASSWORD}}","username":"{{AUTH_USERNAME}}","refreshTokenUrl":"<refresh-token-url>","accessTokenUrl":"<access-token-url>","grant_type":"<grant_type>","authUrl":"<auth-url>"},"isInherited":true,"source":{"_postman_id":"9ebb9928-d7bc-4f70-89b3-72c671248367","id":"9ebb9928-d7bc-4f70-89b3-72c671248367","name":"API","type":"folder"}}}],"id":"19f3748e-fc38-4713-9fe4-0b251918915f","description":"<p>These APIs return historic data. An historic call for a rate <em>now</em> will return data approximately 1 second old, for low latency access to live rates please use the Live APIs.</p>\n<p>Data is generally available up to 1 year old in this API. Older data may be available on request (and via the Bulk API).</p>\n","_postman_id":"19f3748e-fc38-4713-9fe4-0b251918915f","auth":{"type":"oauth2","oauth2":{"refreshRequestParams":"<refresh-request-params>","password":"{{AUTH_PASSWORD}}","username":"{{AUTH_USERNAME}}","refreshTokenUrl":"<refresh-token-url>","accessTokenUrl":"<access-token-url>","grant_type":"<grant_type>","authUrl":"<auth-url>"},"isInherited":true,"source":{"_postman_id":"9ebb9928-d7bc-4f70-89b3-72c671248367","id":"9ebb9928-d7bc-4f70-89b3-72c671248367","name":"API","type":"folder"}}},{"name":"general","item":[{"name":"reference","item":[{"name":"v1","item":[{"name":"currencypairs","event":[{"listen":"prerequest","script":{"exec":[""],"type":"text/javascript","packages":{},"id":"581c03c1-5fda-4fe6-ac29-c1ec960b0169"}}],"id":"578918d5-c11a-4c24-876f-b6e75a2a00c7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"body":{"mode":"urlencoded","urlencoded":[]},"url":"{{FIAT_API_ENDPOINT}}/general/reference/v1/currencypairs","description":"<p>It returns data about which currency pairs are directly observed, and further reference data relating to those pairs. This includes:</p>\n<ul>\n<li><p>Forward point conversion - this is the factor by which the true decimal value of forward points is mulitplied to give this data in the more readable convention.</p>\n</li>\n<li><p>Whether this pair is the NDF type of that pair (for example USDBRL may be NDF or onshore)</p>\n</li>\n<li><p>The number of working days used to calculate the spot date (note that for actual spot date calculations, bank holidays should be observed to normal conventions for that pair).</p>\n</li>\n<li><p>The timing and timezone of any benchmark window.</p>\n</li>\n</ul>\n<blockquote>\n<p>This API does not require authentication.</p>\n</blockquote>\n","auth":{"type":"oauth2","oauth2":{"refreshRequestParams":"<refresh-request-params>","password":"{{AUTH_PASSWORD}}","username":"{{AUTH_USERNAME}}","refreshTokenUrl":"<refresh-token-url>","accessTokenUrl":"<access-token-url>","grant_type":"<grant_type>","authUrl":"<auth-url>"},"isInherited":true,"source":{"_postman_id":"9ebb9928-d7bc-4f70-89b3-72c671248367","id":"9ebb9928-d7bc-4f70-89b3-72c671248367","name":"API","type":"folder"}},"urlObject":{"path":["general","reference","v1","currencypairs"],"host":["{{FIAT_API_ENDPOINT}}"],"query":[],"variable":[]}},"response":[{"id":"e13a0559-1894-4714-a551-ba0f929259d0","name":"List of currencyPairs","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer <your_access_token>","description":"String 'Bearer' followed by a space and your access token","type":"text","disabled":true}],"url":"{{FIAT_API_ENDPOINT}}/general/reference/v1/currencypairs"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"openresty","enabled":true},{"key":"Date","value":"Tue, 30 Jan 2024 16:37:53 GMT","enabled":true},{"key":"Content-Type","value":"application/json","enabled":true},{"key":"Transfer-Encoding","value":"chunked","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains","enabled":true},{"key":"X-Frame-Options","value":"DENY","enabled":true},{"key":"X-Content-Type-Options","value":"nosniff","enabled":true}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"windowTimezone\": \"\",\n        \"forwardPointConversion\": 10000,\n        \"currencyPair\": \"AUDCAD\",\n        \"isNDF\": 0,\n        \"spotSettlementDays\": 2,\n        \"benchmarkStatus\": \"always\",\n        \"benchmarkWindowStart\": \"00:00:00\",\n        \"benchmarkWindowEnd\": \"00:00:00\"\n    },\n    {\n        \"windowTimezone\": \"\",\n        \"forwardPointConversion\": 10000,\n        \"currencyPair\": \"AUDCHF\",\n        \"isNDF\": 0,\n        \"spotSettlementDays\": 2,\n        \"benchmarkStatus\": \"always\",\n        \"benchmarkWindowStart\": \"00:00:00\",\n        \"benchmarkWindowEnd\": \"00:00:00\"\n    },\n    {\n        \"windowTimezone\": \"\",\n        \"forwardPointConversion\": 100,\n        \"currencyPair\": \"AUDJPY\",\n        \"isNDF\": 0,\n        \"spotSettlementDays\": 2,\n        \"benchmarkStatus\": \"always\",\n        \"benchmarkWindowStart\": \"00:00:00\",\n        \"benchmarkWindowEnd\": \"00:00:00\"\n    },\n    {\n        \"windowTimezone\": \"\",\n        \"forwardPointConversion\": 10000,\n        \"currencyPair\": \"AUDNOK\",\n        \"isNDF\": 0,\n        \"spotSettlementDays\": 2,\n        \"benchmarkStatus\": \"never\",\n        \"benchmarkWindowStart\": \"00:00:00\",\n        \"benchmarkWindowEnd\": \"00:00:00\"\n    },\n    {\n        \"windowTimezone\": \"\",\n        \"forwardPointConversion\": 10000,\n        \"currencyPair\": \"AUDNZD\",\n        \"isNDF\": 0,\n        \"spotSettlementDays\": 2,\n        \"benchmarkStatus\": \"always\",\n        \"benchmarkWindowStart\": \"00:00:00\",\n        \"benchmarkWindowEnd\": \"00:00:00\"\n    },\n    {\n        \"windowTimezone\": \"\",\n        \"forwardPointConversion\": 10000,\n        \"currencyPair\": \"AUDSEK\",\n        \"isNDF\": 0,\n        \"spotSettlementDays\": 2,\n        \"benchmarkStatus\": \"never\",\n        \"benchmarkWindowStart\": \"00:00:00\",\n        \"benchmarkWindowEnd\": \"00:00:00\"\n    },\n    {\n        \"windowTimezone\": \"\",\n        \"forwardPointConversion\": 10000,\n        \"currencyPair\": \"AUDSGD\",\n        \"isNDF\": 0,\n        \"spotSettlementDays\": 2,\n        \"benchmarkStatus\": \"always\",\n        \"benchmarkWindowStart\": \"00:00:00\",\n        \"benchmarkWindowEnd\": \"00:00:00\"\n    },\n    {\n        \"windowTimezone\": \"\",\n        \"forwardPointConversion\": 10000,\n        \"currencyPair\": \"AUDUSD\",\n        \"isNDF\": 0,\n        \"spotSettlementDays\": 2,\n        \"benchmarkStatus\": \"always\",\n        \"benchmarkWindowStart\": \"00:00:00\",\n        \"benchmarkWindowEnd\": \"00:00:00\"\n    },\n    {\n        \"windowTimezone\": \"\",\n        \"forwardPointConversion\": 10000,\n        \"currencyPair\": \"BWPUSD\",\n        \"isNDF\": 0,\n        \"spotSettlementDays\": 2,\n        \"benchmarkStatus\": \"never\",\n        \"benchmarkWindowStart\": \"00:00:00\",\n        \"benchmarkWindowEnd\": \"00:00:00\"\n    },\n    {\n        \"windowTimezone\": \"\",\n        \"forwardPointConversion\": 10000,\n        \"currencyPair\": \"BWPUSD\",\n        \"isNDF\": 1,\n        \"spotSettlementDays\": 2,\n        \"benchmarkStatus\": \"never\",\n        \"benchmarkWindowStart\": \"00:00:00\",\n        \"benchmarkWindowEnd\": \"00:00:00\"\n    },\n    {\n        \"windowTimezone\": \"\",\n        \"forwardPointConversion\": 10000,\n        \"currencyPair\": \"CADCHF\",\n        \"isNDF\": 0,\n        \"spotSettlementDays\": 2,\n        \"benchmarkStatus\": \"always\",\n        \"benchmarkWindowStart\": \"00:00:00\",\n        \"benchmarkWindowEnd\": \"00:00:00\"\n    },\n    {\n        \"windowTimezone\": \"\",\n        \"forwardPointConversion\": 100,\n        \"currencyPair\": \"CADJPY\",\n        \"isNDF\": 0,\n        \"spotSettlementDays\": 2,\n        \"benchmarkStatus\": \"always\",\n        \"benchmarkWindowStart\": \"00:00:00\",\n        \"benchmarkWindowEnd\": \"00:00:00\"\n    },\n    {\n        \"windowTimezone\": \"\",\n        \"forwardPointConversion\": 100,\n        \"currencyPair\": \"CHFJPY\",\n        \"isNDF\": 0,\n        \"spotSettlementDays\": 2,\n        \"benchmarkStatus\": \"always\",\n        \"benchmarkWindowStart\": \"00:00:00\",\n        \"benchmarkWindowEnd\": \"00:00:00\"\n    },\n    {\n        \"windowTimezone\": \"\",\n        \"forwardPointConversion\": 10000,\n        \"currencyPair\": \"EURAUD\",\n        \"isNDF\": 0,\n        \"spotSettlementDays\": 2,\n        \"benchmarkStatus\": \"always\",\n        \"benchmarkWindowStart\": \"00:00:00\",\n        \"benchmarkWindowEnd\": \"00:00:00\"\n    },\n    {\n        \"windowTimezone\": \"\",\n        \"forwardPointConversion\": 10000,\n        \"currencyPair\": \"EURBGN\",\n        \"isNDF\": 0,\n        \"spotSettlementDays\": 2,\n        \"benchmarkStatus\": \"never\",\n        \"benchmarkWindowStart\": \"00:00:00\",\n        \"benchmarkWindowEnd\": \"00:00:00\"\n    },\n    {\n        \"windowTimezone\": \"\",\n        \"forwardPointConversion\": 10000,\n        \"currencyPair\": \"EURCAD\",\n        \"isNDF\": 0,\n        \"spotSettlementDays\": 2,\n        \"benchmarkStatus\": \"always\",\n        \"benchmarkWindowStart\": \"00:00:00\",\n        \"benchmarkWindowEnd\": \"00:00:00\"\n    },\n    {\n        \"windowTimezone\": \"\",\n        \"forwardPointConversion\": 10000,\n        \"currencyPair\": \"EURCHF\",\n        \"isNDF\": 0,\n        \"spotSettlementDays\": 2,\n        \"benchmarkStatus\": \"always\",\n        \"benchmarkWindowStart\": \"00:00:00\",\n        \"benchmarkWindowEnd\": \"00:00:00\"\n    },\n    {\n        \"windowTimezone\": \"\",\n        \"forwardPointConversion\": 1000,\n        \"currencyPair\": \"EURCZK\",\n        \"isNDF\": 0,\n        \"spotSettlementDays\": 2,\n        \"benchmarkStatus\": \"always\",\n        \"benchmarkWindowStart\": \"00:00:00\",\n        \"benchmarkWindowEnd\": \"00:00:00\"\n    },\n    {\n        \"windowTimezone\": \"\",\n        \"forwardPointConversion\": 10000,\n        \"currencyPair\": \"EURDKK\",\n        \"isNDF\": 0,\n        \"spotSettlementDays\": 2,\n        \"benchmarkStatus\": \"always\",\n        \"benchmarkWindowStart\": \"00:00:00\",\n        \"benchmarkWindowEnd\": \"00:00:00\"\n    },\n    {\n        \"windowTimezone\": \"\",\n        \"forwardPointConversion\": 10000,\n        \"currencyPair\": \"EURGBP\",\n        \"isNDF\": 0,\n        \"spotSettlementDays\": 2,\n        \"benchmarkStatus\": \"always\",\n        \"benchmarkWindowStart\": \"00:00:00\",\n        \"benchmarkWindowEnd\": \"00:00:00\"\n    },\n    {\n        \"windowTimezone\": \"\",\n        \"forwardPointConversion\": 10000,\n        \"currencyPair\": \"EURHKD\",\n        \"isNDF\": 0,\n        \"spotSettlementDays\": 2,\n        \"benchmarkStatus\": \"always\",\n        \"benchmarkWindowStart\": \"00:00:00\",\n        \"benchmarkWindowEnd\": \"00:00:00\"\n    },\n    {\n        \"windowTimezone\": \"\",\n        \"forwardPointConversion\": 100,\n        \"currencyPair\": \"EURHUF\",\n        \"isNDF\": 0,\n        \"spotSettlementDays\": 2,\n        \"benchmarkStatus\": \"always\",\n        \"benchmarkWindowStart\": \"00:00:00\",\n        \"benchmarkWindowEnd\": \"00:00:00\"\n    },\n    {\n        \"windowTimezone\": \"\",\n        \"forwardPointConversion\": 10000,\n        \"currencyPair\": \"EURILS\",\n        \"isNDF\": 0,\n        \"spotSettlementDays\": 2,\n        \"benchmarkStatus\": \"always\",\n        \"benchmarkWindowStart\": \"00:00:00\",\n        \"benchmarkWindowEnd\": \"00:00:00\"\n    },\n    {\n        \"windowTimezone\": \"\",\n        \"forwardPointConversion\": 100,\n        \"currencyPair\": \"EURJPY\",\n        \"isNDF\": 0,\n        \"spotSettlementDays\": 2,\n        \"benchmarkStatus\": \"always\",\n        \"benchmarkWindowStart\": \"00:00:00\",\n        \"benchmarkWindowEnd\": \"00:00:00\"\n    },\n    {\n        \"windowTimezone\": \"\",\n        \"forwardPointConversion\": 10000,\n        \"currencyPair\": \"EURMXN\",\n        \"isNDF\": 0,\n        \"spotSettlementDays\": 2,\n        \"benchmarkStatus\": \"always\",\n        \"benchmarkWindowStart\": \"00:00:00\",\n        \"benchmarkWindowEnd\": \"00:00:00\"\n    },\n    {\n        \"windowTimezone\": \"\",\n        \"forwardPointConversion\": 10000,\n        \"currencyPair\": \"EURNOK\",\n        \"isNDF\": 0,\n        \"spotSettlementDays\": 2,\n        \"benchmarkStatus\": \"always\",\n        \"benchmarkWindowStart\": \"00:00:00\",\n        \"benchmarkWindowEnd\": \"00:00:00\"\n    },\n    {\n        \"windowTimezone\": \"\",\n        \"forwardPointConversion\": 10000,\n        \"currencyPair\": \"EURNZD\",\n        \"isNDF\": 0,\n        \"spotSettlementDays\": 2,\n        \"benchmarkStatus\": \"always\",\n        \"benchmarkWindowStart\": \"00:00:00\",\n        \"benchmarkWindowEnd\": \"00:00:00\"\n    },\n    {\n        \"windowTimezone\": \"\",\n        \"forwardPointConversion\": 10000,\n        \"currencyPair\": \"EURPLN\",\n        \"isNDF\": 0,\n        \"spotSettlementDays\": 2,\n        \"benchmarkStatus\": \"always\",\n        \"benchmarkWindowStart\": \"00:00:00\",\n        \"benchmarkWindowEnd\": \"00:00:00\"\n    },\n    {\n        \"windowTimezone\": \"\",\n        \"forwardPointConversion\": 10000,\n        \"currencyPair\": \"EURRON\",\n        \"isNDF\": 0,\n        \"spotSettlementDays\": 2,\n        \"benchmarkStatus\": \"always\",\n        \"benchmarkWindowStart\": \"00:00:00\",\n        \"benchmarkWindowEnd\": \"00:00:00\"\n    },\n    {\n        \"windowTimezone\": \"\",\n        \"forwardPointConversion\": 100,\n        \"currencyPair\": \"EURRSD\",\n        \"isNDF\": 0,\n        \"spotSettlementDays\": 2,\n        \"benchmarkStatus\": \"never\",\n        \"benchmarkWindowStart\": \"00:00:00\",\n        \"benchmarkWindowEnd\": \"00:00:00\"\n    },\n    {\n        \"windowTimezone\": \"\",\n        \"forwardPointConversion\": 10000,\n        \"currencyPair\": \"EURSEK\",\n        \"isNDF\": 0,\n        \"spotSettlementDays\": 2,\n        \"benchmarkStatus\": \"always\",\n        \"benchmarkWindowStart\": \"00:00:00\",\n        \"benchmarkWindowEnd\": \"00:00:00\"\n    },\n    {\n        \"windowTimezone\": \"\",\n        \"forwardPointConversion\": 10000,\n        \"currencyPair\": \"EURSGD\",\n        \"isNDF\": 0,\n        \"spotSettlementDays\": 2,\n        \"benchmarkStatus\": \"always\",\n        \"benchmarkWindowStart\": \"00:00:00\",\n        \"benchmarkWindowEnd\": \"00:00:00\"\n    },\n    {\n        \"windowTimezone\": \"Asia/Istanbul\",\n        \"forwardPointConversion\": 10000,\n        \"currencyPair\": \"EURTRY\",\n        \"isNDF\": 0,\n        \"spotSettlementDays\": 2,\n        \"benchmarkStatus\": \"always\",\n        \"benchmarkWindowStart\": \"09:00:00\",\n        \"benchmarkWindowEnd\": \"18:00:00\"\n    },\n    {\n        \"windowTimezone\": \"\",\n        \"forwardPointConversion\": 10000,\n        \"currencyPair\": \"EURUSD\",\n        \"isNDF\": 0,\n        \"spotSettlementDays\": 2,\n        \"benchmarkStatus\": \"always\",\n        \"benchmarkWindowStart\": \"00:00:00\",\n        \"benchmarkWindowEnd\": \"00:00:00\"\n    },\n    {\n        \"windowTimezone\": \"\",\n        \"forwardPointConversion\": 10000,\n        \"currencyPair\": \"EURZAR\",\n        \"isNDF\": 0,\n        \"spotSettlementDays\": 2,\n        \"benchmarkStatus\": \"always\",\n        \"benchmarkWindowStart\": \"00:00:00\",\n        \"benchmarkWindowEnd\": \"00:00:00\"\n    },\n    {\n        \"windowTimezone\": \"\",\n        \"forwardPointConversion\": 10000,\n        \"currencyPair\": \"GBPAUD\",\n        \"isNDF\": 0,\n        \"spotSettlementDays\": 2,\n        \"benchmarkStatus\": \"always\",\n        \"benchmarkWindowStart\": \"00:00:00\",\n        \"benchmarkWindowEnd\": \"00:00:00\"\n    },\n    {\n        \"windowTimezone\": \"\",\n        \"forwardPointConversion\": 10000,\n        \"currencyPair\": \"GBPCAD\",\n        \"isNDF\": 0,\n        \"spotSettlementDays\": 2,\n        \"benchmarkStatus\": \"always\",\n        \"benchmarkWindowStart\": \"00:00:00\",\n        \"benchmarkWindowEnd\": \"00:00:00\"\n    },\n    {\n        \"windowTimezone\": \"\",\n        \"forwardPointConversion\": 10000,\n        \"currencyPair\": \"GBPCHF\",\n        \"isNDF\": 0,\n        \"spotSettlementDays\": 2,\n        \"benchmarkStatus\": \"always\",\n        \"benchmarkWindowStart\": \"00:00:00\",\n        \"benchmarkWindowEnd\": \"00:00:00\"\n    },\n    {\n        \"windowTimezone\": \"\",\n        \"forwardPointConversion\": 100,\n        \"currencyPair\": \"GBPJPY\",\n        \"isNDF\": 0,\n        \"spotSettlementDays\": 2,\n        \"benchmarkStatus\": \"always\",\n        \"benchmarkWindowStart\": \"00:00:00\",\n        \"benchmarkWindowEnd\": \"00:00:00\"\n    },\n    {\n        \"windowTimezone\": \"\",\n        \"forwardPointConversion\": 10000,\n        \"currencyPair\": \"GBPMXN\",\n        \"isNDF\": 0,\n        \"spotSettlementDays\": 2,\n        \"benchmarkStatus\": \"always\",\n        \"benchmarkWindowStart\": \"00:00:00\",\n        \"benchmarkWindowEnd\": \"00:00:00\"\n    },\n    {\n        \"windowTimezone\": \"\",\n        \"forwardPointConversion\": 10000,\n        \"currencyPair\": \"GBPNOK\",\n        \"isNDF\": 0,\n        \"spotSettlementDays\": 2,\n        \"benchmarkStatus\": \"always\",\n        \"benchmarkWindowStart\": \"00:00:00\",\n        \"benchmarkWindowEnd\": \"00:00:00\"\n    },\n    {\n        \"windowTimezone\": \"\",\n        \"forwardPointConversion\": 10000,\n        \"currencyPair\": \"GBPNZD\",\n        \"isNDF\": 0,\n        \"spotSettlementDays\": 2,\n        \"benchmarkStatus\": \"always\",\n        \"benchmarkWindowStart\": \"00:00:00\",\n        \"benchmarkWindowEnd\": \"00:00:00\"\n    },\n    {\n        \"windowTimezone\": \"\",\n        \"forwardPointConversion\": 10000,\n        \"currencyPair\": \"GBPPLN\",\n        \"isNDF\": 0,\n        \"spotSettlementDays\": 2,\n        \"benchmarkStatus\": \"always\",\n        \"benchmarkWindowStart\": \"00:00:00\",\n        \"benchmarkWindowEnd\": \"00:00:00\"\n    },\n    {\n        \"windowTimezone\": \"\",\n        \"forwardPointConversion\": 10000,\n        \"currencyPair\": \"GBPSEK\",\n        \"isNDF\": 0,\n        \"spotSettlementDays\": 2,\n        \"benchmarkStatus\": \"always\",\n        \"benchmarkWindowStart\": \"00:00:00\",\n        \"benchmarkWindowEnd\": \"00:00:00\"\n    },\n    {\n        \"windowTimezone\": \"\",\n        \"forwardPointConversion\": 10000,\n        \"currencyPair\": \"GBPSGD\",\n        \"isNDF\": 0,\n        \"spotSettlementDays\": 2,\n        \"benchmarkStatus\": \"always\",\n        \"benchmarkWindowStart\": \"00:00:00\",\n        \"benchmarkWindowEnd\": \"00:00:00\"\n    },\n    {\n        \"windowTimezone\": \"Asia/Istanbul\",\n        \"forwardPointConversion\": 10000,\n        \"currencyPair\": \"GBPTRY\",\n        \"isNDF\": 0,\n        \"spotSettlementDays\": 2,\n        \"benchmarkStatus\": \"never\",\n        \"benchmarkWindowStart\": \"09:00:00\",\n        \"benchmarkWindowEnd\": \"18:00:00\"\n    },\n    {\n        \"windowTimezone\": \"\",\n        \"forwardPointConversion\": 10000,\n        \"currencyPair\": \"GBPUSD\",\n        \"isNDF\": 0,\n        \"spotSettlementDays\": 2,\n        \"benchmarkStatus\": \"always\",\n        \"benchmarkWindowStart\": \"00:00:00\",\n        \"benchmarkWindowEnd\": \"00:00:00\"\n    },\n    {\n        \"windowTimezone\": \"\",\n        \"forwardPointConversion\": 10000,\n        \"currencyPair\": \"GBPZAR\",\n        \"isNDF\": 0,\n        \"spotSettlementDays\": 2,\n        \"benchmarkStatus\": \"always\",\n        \"benchmarkWindowStart\": \"00:00:00\",\n        \"benchmarkWindowEnd\": \"00:00:00\"\n    },\n    {\n        \"windowTimezone\": \"\",\n        \"forwardPointConversion\": 10000,\n        \"currencyPair\": \"NOKSEK\",\n        \"isNDF\": 0,\n        \"spotSettlementDays\": 2,\n        \"benchmarkStatus\": \"always\",\n        \"benchmarkWindowStart\": \"00:00:00\",\n        \"benchmarkWindowEnd\": \"00:00:00\"\n    },\n    {\n        \"windowTimezone\": \"\",\n        \"forwardPointConversion\": 10000,\n        \"currencyPair\": \"NZDCAD\",\n        \"isNDF\": 0,\n        \"spotSettlementDays\": 2,\n        \"benchmarkStatus\": \"always\",\n        \"benchmarkWindowStart\": \"00:00:00\",\n        \"benchmarkWindowEnd\": \"00:00:00\"\n    },\n    {\n        \"windowTimezone\": \"\",\n        \"forwardPointConversion\": 10000,\n        \"currencyPair\": \"NZDCHF\",\n        \"isNDF\": 0,\n        \"spotSettlementDays\": 2,\n        \"benchmarkStatus\": \"always\",\n        \"benchmarkWindowStart\": \"00:00:00\",\n        \"benchmarkWindowEnd\": \"00:00:00\"\n    },\n    {\n        \"windowTimezone\": \"\",\n        \"forwardPointConversion\": 100,\n        \"currencyPair\": \"NZDJPY\",\n        \"isNDF\": 0,\n        \"spotSettlementDays\": 2,\n        \"benchmarkStatus\": \"always\",\n        \"benchmarkWindowStart\": \"00:00:00\",\n        \"benchmarkWindowEnd\": \"00:00:00\"\n    },\n    {\n        \"windowTimezone\": \"\",\n        \"forwardPointConversion\": 10000,\n        \"currencyPair\": \"NZDNOK\",\n        \"isNDF\": 0,\n        \"spotSettlementDays\": 2,\n        \"benchmarkStatus\": \"never\",\n        \"benchmarkWindowStart\": \"00:00:00\",\n        \"benchmarkWindowEnd\": \"00:00:00\"\n    },\n    {\n        \"windowTimezone\": \"\",\n        \"forwardPointConversion\": 10000,\n        \"currencyPair\": \"NZDSEK\",\n        \"isNDF\": 0,\n        \"spotSettlementDays\": 2,\n        \"benchmarkStatus\": \"never\",\n        \"benchmarkWindowStart\": \"00:00:00\",\n        \"benchmarkWindowEnd\": \"00:00:00\"\n    },\n    {\n        \"windowTimezone\": \"\",\n        \"forwardPointConversion\": 10000,\n        \"currencyPair\": \"NZDSGD\",\n        \"isNDF\": 0,\n        \"spotSettlementDays\": 2,\n        \"benchmarkStatus\": \"always\",\n        \"benchmarkWindowStart\": \"00:00:00\",\n        \"benchmarkWindowEnd\": \"00:00:00\"\n    },\n    {\n        \"windowTimezone\": \"\",\n        \"forwardPointConversion\": 10000,\n        \"currencyPair\": \"NZDUSD\",\n        \"isNDF\": 0,\n        \"spotSettlementDays\": 2,\n        \"benchmarkStatus\": \"always\",\n        \"benchmarkWindowStart\": \"00:00:00\",\n        \"benchmarkWindowEnd\": \"00:00:00\"\n    },\n    {\n        \"windowTimezone\": \"\",\n        \"forwardPointConversion\": 10000,\n        \"currencyPair\": \"USDAED\",\n        \"isNDF\": 0,\n        \"spotSettlementDays\": 2,\n        \"benchmarkStatus\": \"never\",\n        \"benchmarkWindowStart\": \"00:00:00\",\n        \"benchmarkWindowEnd\": \"00:00:00\"\n    },\n    {\n        \"windowTimezone\": \"\",\n        \"forwardPointConversion\": 10000,\n        \"currencyPair\": \"USDAFN\",\n        \"isNDF\": 0,\n        \"spotSettlementDays\": 2,\n        \"benchmarkStatus\": \"never\",\n        \"benchmarkWindowStart\": \"00:00:00\",\n        \"benchmarkWindowEnd\": \"00:00:00\"\n    },\n    {\n        \"windowTimezone\": \"\",\n        \"forwardPointConversion\": 100,\n        \"currencyPair\": \"USDALL\",\n        \"isNDF\": 0,\n        \"spotSettlementDays\": 2,\n        \"benchmarkStatus\": \"never\",\n        \"benchmarkWindowStart\": \"00:00:00\",\n        \"benchmarkWindowEnd\": \"00:00:00\"\n    },\n    {\n        \"windowTimezone\": \"\",\n        \"forwardPointConversion\": 10000,\n        \"currencyPair\": \"USDAMD\",\n        \"isNDF\": 0,\n        \"spotSettlementDays\": 2,\n        \"benchmarkStatus\": \"never\",\n        \"benchmarkWindowStart\": \"00:00:00\",\n        \"benchmarkWindowEnd\": \"00:00:00\"\n    },\n    {\n        \"windowTimezone\": \"\",\n        \"forwardPointConversion\": 10000,\n        \"currencyPair\": \"USDANG\",\n        \"isNDF\": 0,\n        \"spotSettlementDays\": 2,\n        \"benchmarkStatus\": \"never\",\n        \"benchmarkWindowStart\": \"00:00:00\",\n        \"benchmarkWindowEnd\": \"00:00:00\"\n    },\n    {\n        \"windowTimezone\": \"\",\n        \"forwardPointConversion\": 1,\n        \"currencyPair\": \"USDAOA\",\n        \"isNDF\": 0,\n        \"spotSettlementDays\": 2,\n        \"benchmarkStatus\": \"never\",\n        \"benchmarkWindowStart\": \"00:00:00\",\n        \"benchmarkWindowEnd\": \"00:00:00\"\n    },\n    {\n        \"windowTimezone\": \"\",\n        \"forwardPointConversion\": 1,\n        \"currencyPair\": \"USDAOA\",\n        \"isNDF\": 1,\n        \"spotSettlementDays\": 2,\n        \"benchmarkStatus\": \"never\",\n        \"benchmarkWindowStart\": \"00:00:00\",\n        \"benchmarkWindowEnd\": \"00:00:00\"\n    },\n    {\n        \"windowTimezone\": \"\",\n        \"forwardPointConversion\": 10000,\n        \"currencyPair\": \"USDARS\",\n        \"isNDF\": 0,\n        \"spotSettlementDays\": 2,\n        \"benchmarkStatus\": \"never\",\n        \"benchmarkWindowStart\": \"00:00:00\",\n        \"benchmarkWindowEnd\": \"00:00:00\"\n    },\n    {\n        \"windowTimezone\": \"\",\n        \"forwardPointConversion\": 10000,\n        \"currencyPair\": \"USDARS\",\n        \"isNDF\": 1,\n        \"spotSettlementDays\": 2,\n        \"benchmarkStatus\": \"never\",\n        \"benchmarkWindowStart\": \"00:00:00\",\n        \"benchmarkWindowEnd\": \"00:00:00\"\n    },\n    {\n        \"windowTimezone\": \"\",\n        \"forwardPointConversion\": 10000,\n        \"currencyPair\": \"USDAWG\",\n        \"isNDF\": 0,\n        \"spotSettlementDays\": 2,\n        \"benchmarkStatus\": \"never\",\n        \"benchmarkWindowStart\": \"00:00:00\",\n        \"benchmarkWindowEnd\": \"00:00:00\"\n    },\n    {\n        \"windowTimezone\": \"\",\n        \"forwardPointConversion\": 1,\n        \"currencyPair\": \"USDAZN\",\n        \"isNDF\": 0,\n        \"spotSettlementDays\": 0,\n        \"benchmarkStatus\": \"never\",\n        \"benchmarkWindowStart\": \"00:00:00\",\n        \"benchmarkWindowEnd\": \"00:00:00\"\n    },\n    {\n        \"windowTimezone\": \"\",\n        \"forwardPointConversion\": 1,\n        \"currencyPair\": \"USDAZN\",\n        \"isNDF\": 1,\n        \"spotSettlementDays\": 0,\n        \"benchmarkStatus\": \"never\",\n        \"benchmarkWindowStart\": \"00:00:00\",\n        \"benchmarkWindowEnd\": \"00:00:00\"\n    },\n    {\n        \"windowTimezone\": \"\",\n        \"forwardPointConversion\": 10000,\n        \"currencyPair\": \"USDBAM\",\n        \"isNDF\": 0,\n        \"spotSettlementDays\": 2,\n        \"benchmarkStatus\": \"never\",\n        \"benchmarkWindowStart\": \"00:00:00\",\n        \"benchmarkWindowEnd\": \"00:00:00\"\n    },\n    {\n        \"windowTimezone\": \"\",\n        \"forwardPointConversion\": 10000,\n        \"currencyPair\": \"USDBBD\",\n        \"isNDF\": 0,\n        \"spotSettlementDays\": 2,\n        \"benchmarkStatus\": \"never\",\n        \"benchmarkWindowStart\": \"00:00:00\",\n        \"benchmarkWindowEnd\": \"00:00:00\"\n    },\n    {\n        \"windowTimezone\": \"\",\n        \"forwardPointConversion\": 1,\n        \"currencyPair\": \"USDBDT\",\n        \"isNDF\": 0,\n        \"spotSettlementDays\": 2,\n        \"benchmarkStatus\": \"never\",\n        \"benchmarkWindowStart\": \"00:00:00\",\n        \"benchmarkWindowEnd\": \"00:00:00\"\n    },\n    {\n        \"windowTimezone\": \"\",\n        \"forwardPointConversion\": 1,\n        \"currencyPair\": \"USDBDT\",\n        \"isNDF\": 1,\n        \"spotSettlementDays\": 2,\n        \"benchmarkStatus\": \"never\",\n        \"benchmarkWindowStart\": \"00:00:00\",\n        \"benchmarkWindowEnd\": \"00:00:00\"\n    },\n    {\n        \"windowTimezone\": \"\",\n        \"forwardPointConversion\": 10000,\n        \"currencyPair\": \"USDBGN\",\n        \"isNDF\": 0,\n        \"spotSettlementDays\": 2,\n        \"benchmarkStatus\": \"never\",\n        \"benchmarkWindowStart\": \"00:00:00\",\n        \"benchmarkWindowEnd\": \"00:00:00\"\n    },\n    {\n        \"windowTimezone\": \"\",\n        \"forwardPointConversion\": 100000,\n        \"currencyPair\": \"USDBHD\",\n        \"isNDF\": 0,\n        \"spotSettlementDays\": 2,\n        \"benchmarkStatus\": \"never\",\n        \"benchmarkWindowStart\": \"00:00:00\",\n        \"benchmarkWindowEnd\": \"00:00:00\"\n    },\n    {\n        \"windowTimezone\": \"\",\n        \"forwardPointConversion\": 10000,\n        \"currencyPair\": \"USDBIF\",\n        \"isNDF\": 0,\n        \"spotSettlementDays\": 2,\n        \"benchmarkStatus\": \"never\",\n        \"benchmarkWindowStart\": \"00:00:00\",\n        \"benchmarkWindowEnd\": \"00:00:00\"\n    },\n    {\n        \"windowTimezone\": \"\",\n        \"forwardPointConversion\": 10000,\n        \"currencyPair\": \"USDBMD\",\n        \"isNDF\": 0,\n        \"spotSettlementDays\": 2,\n        \"benchmarkStatus\": \"never\",\n        \"benchmarkWindowStart\": \"00:00:00\",\n        \"benchmarkWindowEnd\": \"00:00:00\"\n    },\n    {\n        \"windowTimezone\": \"\",\n        \"forwardPointConversion\": 10000,\n        \"currencyPair\": \"USDBND\",\n        \"isNDF\": 0,\n        \"spotSettlementDays\": 2,\n        \"benchmarkStatus\": \"never\",\n        \"benchmarkWindowStart\": \"00:00:00\",\n        \"benchmarkWindowEnd\": \"00:00:00\"\n    },\n    {\n        \"windowTimezone\": \"\",\n        \"forwardPointConversion\": 10000,\n        \"currencyPair\": \"USDBOB\",\n        \"isNDF\": 0,\n        \"spotSettlementDays\": 2,\n        \"benchmarkStatus\": \"never\",\n        \"benchmarkWindowStart\": \"00:00:00\",\n        \"benchmarkWindowEnd\": \"00:00:00\"\n    },\n    {\n        \"windowTimezone\": \"\",\n        \"forwardPointConversion\": 10000,\n        \"currencyPair\": \"USDBRL\",\n        \"isNDF\": 0,\n        \"spotSettlementDays\": 2,\n        \"benchmarkStatus\": \"never\",\n        \"benchmarkWindowStart\": \"00:00:00\",\n        \"benchmarkWindowEnd\": \"00:00:00\"\n    },\n    {\n        \"windowTimezone\": \"\",\n        \"forwardPointConversion\": 10000,\n        \"currencyPair\": \"USDBRL\",\n        \"isNDF\": 1,\n        \"spotSettlementDays\": 2,\n        \"benchmarkStatus\": \"never\",\n        \"benchmarkWindowStart\": \"00:00:00\",\n        \"benchmarkWindowEnd\": \"00:00:00\"\n    },\n    {\n        \"windowTimezone\": \"\",\n        \"forwardPointConversion\": 10000,\n        \"currencyPair\": \"USDBSD\",\n        \"isNDF\": 0,\n        \"spotSettlementDays\": 2,\n        \"benchmarkStatus\": \"never\",\n        \"benchmarkWindowStart\": \"00:00:00\",\n        \"benchmarkWindowEnd\": \"00:00:00\"\n    },\n    {\n        \"windowTimezone\": \"\",\n        \"forwardPointConversion\": 100,\n        \"currencyPair\": \"USDBTN\",\n        \"isNDF\": 0,\n        \"spotSettlementDays\": 2,\n        \"benchmarkStatus\": \"never\",\n        \"benchmarkWindowStart\": \"00:00:00\",\n        \"benchmarkWindowEnd\": \"00:00:00\"\n    },\n    {\n        \"windowTimezone\": \"\",\n        \"forwardPointConversion\": 10000,\n        \"currencyPair\": \"USDBZD\",\n        \"isNDF\": 0,\n        \"spotSettlementDays\": 2,\n        \"benchmarkStatus\": \"never\",\n        \"benchmarkWindowStart\": \"00:00:00\",\n        \"benchmarkWindowEnd\": \"00:00:00\"\n    },\n    {\n        \"windowTimezone\": \"\",\n        \"forwardPointConversion\": 10000,\n        \"currencyPair\": \"USDCAD\",\n        \"isNDF\": 0,\n        \"spotSettlementDays\": 1,\n        \"benchmarkStatus\": \"always\",\n        \"benchmarkWindowStart\": \"00:00:00\",\n        \"benchmarkWindowEnd\": \"00:00:00\"\n    },\n    {\n        \"windowTimezone\": \"\",\n        \"forwardPointConversion\": 1,\n        \"currencyPair\": \"USDCDF\",\n        \"isNDF\": 0,\n        \"spotSettlementDays\": 2,\n        \"benchmarkStatus\": \"never\",\n        \"benchmarkWindowStart\": \"00:00:00\",\n        \"benchmarkWindowEnd\": \"00:00:00\"\n    },\n    {\n        \"windowTimezone\": \"\",\n        \"forwardPointConversion\": 10000,\n        \"currencyPair\": \"USDCHF\",\n        \"isNDF\": 0,\n        \"spotSettlementDays\": 2,\n        \"benchmarkStatus\": \"always\",\n        \"benchmarkWindowStart\": \"00:00:00\",\n        \"benchmarkWindowEnd\": \"00:00:00\"\n    },\n    {\n        \"windowTimezone\": \"\",\n        \"forwardPointConversion\": 100,\n        \"currencyPair\": \"USDCLF\",\n        \"isNDF\": 0,\n        \"spotSettlementDays\": 2,\n        \"benchmarkStatus\": \"never\",\n        \"benchmarkWindowStart\": \"00:00:00\",\n        \"benchmarkWindowEnd\": \"00:00:00\"\n    },\n    {\n        \"windowTimezone\": \"\",\n        \"forwardPointConversion\": 1,\n        \"currencyPair\": \"USDCLP\",\n        \"isNDF\": 0,\n        \"spotSettlementDays\": 2,\n        \"benchmarkStatus\": \"never\",\n        \"benchmarkWindowStart\": \"00:00:00\",\n        \"benchmarkWindowEnd\": \"00:00:00\"\n    },\n    {\n        \"windowTimezone\": \"\",\n        \"forwardPointConversion\": 1,\n        \"currencyPair\": \"USDCLP\",\n        \"isNDF\": 1,\n        \"spotSettlementDays\": 2,\n        \"benchmarkStatus\": \"never\",\n        \"benchmarkWindowStart\": \"00:00:00\",\n        \"benchmarkWindowEnd\": \"00:00:00\"\n    },\n    {\n        \"windowTimezone\": \"\",\n        \"forwardPointConversion\": 10000,\n        \"currencyPair\": \"USDCNH\",\n        \"isNDF\": 0,\n        \"spotSettlementDays\": 2,\n        \"benchmarkStatus\": \"always\",\n        \"benchmarkWindowStart\": \"00:00:00\",\n        \"benchmarkWindowEnd\": \"00:00:00\"\n    },\n    {\n        \"windowTimezone\": \"\",\n        \"forwardPointConversion\": 10000,\n        \"currencyPair\": \"USDCNY\",\n        \"isNDF\": 0,\n        \"spotSettlementDays\": 2,\n        \"benchmarkStatus\": \"never\",\n        \"benchmarkWindowStart\": \"00:00:00\",\n        \"benchmarkWindowEnd\": \"00:00:00\"\n    },\n    {\n        \"windowTimezone\": \"\",\n        \"forwardPointConversion\": 1,\n        \"currencyPair\": \"USDCNY\",\n        \"isNDF\": 1,\n        \"spotSettlementDays\": 2,\n        \"benchmarkStatus\": \"never\",\n        \"benchmarkWindowStart\": \"00:00:00\",\n        \"benchmarkWindowEnd\": \"00:00:00\"\n    },\n    {\n        \"windowTimezone\": \"\",\n        \"forwardPointConversion\": 1,\n        \"currencyPair\": \"USDCOP\",\n        \"isNDF\": 0,\n        \"spotSettlementDays\": 2,\n        \"benchmarkStatus\": \"never\",\n        \"benchmarkWindowStart\": \"00:00:00\",\n        \"benchmarkWindowEnd\": \"00:00:00\"\n    },\n    {\n        \"windowTimezone\": \"\",\n        \"forwardPointConversion\": 1,\n        \"currencyPair\": \"USDCOP\",\n        \"isNDF\": 1,\n        \"spotSettlementDays\": 2,\n        \"benchmarkStatus\": \"never\",\n        \"benchmarkWindowStart\": \"00:00:00\",\n        \"benchmarkWindowEnd\": \"00:00:00\"\n    },\n    {\n        \"windowTimezone\": \"\",\n        \"forwardPointConversion\": 1,\n        \"currencyPair\": \"USDCRC\",\n        \"isNDF\": 0,\n        \"spotSettlementDays\": 2,\n        \"benchmarkStatus\": \"never\",\n        \"benchmarkWindowStart\": \"00:00:00\",\n        \"benchmarkWindowEnd\": \"00:00:00\"\n    },\n    {\n        \"windowTimezone\": \"\",\n        \"forwardPointConversion\": 1,\n        \"currencyPair\": \"USDCRC\",\n        \"isNDF\": 1,\n        \"spotSettlementDays\": 2,\n        \"benchmarkStatus\": \"never\",\n        \"benchmarkWindowStart\": \"00:00:00\",\n        \"benchmarkWindowEnd\": \"00:00:00\"\n    },\n    {\n        \"windowTimezone\": \"\",\n        \"forwardPointConversion\": 100,\n        \"currencyPair\": \"USDCUP\",\n        \"isNDF\": 0,\n        \"spotSettlementDays\": 2,\n        \"benchmarkStatus\": \"never\",\n        \"benchmarkWindowStart\": \"00:00:00\",\n        \"benchmarkWindowEnd\": \"00:00:00\"\n    },\n    {\n        \"windowTimezone\": \"\",\n        \"forwardPointConversion\": 10000,\n        \"currencyPair\": \"USDCVE\",\n        \"isNDF\": 0,\n        \"spotSettlementDays\": 2,\n        \"benchmarkStatus\": \"never\",\n        \"benchmarkWindowStart\": \"00:00:00\",\n        \"benchmarkWindowEnd\": \"00:00:00\"\n    },\n    {\n        \"windowTimezone\": \"\",\n        \"forwardPointConversion\": 1000,\n        \"currencyPair\": \"USDCZK\",\n        \"isNDF\": 0,\n        \"spotSettlementDays\": 2,\n        \"benchmarkStatus\": \"always\",\n        \"benchmarkWindowStart\": \"00:00:00\",\n        \"benchmarkWindowEnd\": \"00:00:00\"\n    },\n    {\n        \"windowTimezone\": \"\",\n        \"forwardPointConversion\": 10000,\n        \"currencyPair\": \"USDDJF\",\n        \"isNDF\": 0,\n        \"spotSettlementDays\": 2,\n        \"benchmarkStatus\": \"never\",\n        \"benchmarkWindowStart\": \"00:00:00\",\n        \"benchmarkWindowEnd\": \"00:00:00\"\n    },\n    {\n        \"windowTimezone\": \"\",\n        \"forwardPointConversion\": 10000,\n        \"currencyPair\": \"USDDKK\",\n        \"isNDF\": 0,\n        \"spotSettlementDays\": 2,\n        \"benchmarkStatus\": \"always\",\n        \"benchmarkWindowStart\": \"00:00:00\",\n        \"benchmarkWindowEnd\": \"00:00:00\"\n    },\n    {\n        \"windowTimezone\": \"\",\n        \"forwardPointConversion\": 1,\n        \"currencyPair\": \"USDDOP\",\n        \"isNDF\": 0,\n        \"spotSettlementDays\": 2,\n        \"benchmarkStatus\": \"never\",\n        \"benchmarkWindowStart\": \"00:00:00\",\n        \"benchmarkWindowEnd\": \"00:00:00\"\n    },\n    {\n        \"windowTimezone\": \"\",\n        \"forwardPointConversion\": 1,\n        \"currencyPair\": \"USDDOP\",\n        \"isNDF\": 1,\n        \"spotSettlementDays\": 2,\n        \"benchmarkStatus\": \"never\",\n        \"benchmarkWindowStart\": \"00:00:00\",\n        \"benchmarkWindowEnd\": \"00:00:00\"\n    },\n    {\n        \"windowTimezone\": \"\",\n        \"forwardPointConversion\": 10000,\n        \"currencyPair\": \"USDDZD\",\n        \"isNDF\": 0,\n        \"spotSettlementDays\": 2,\n        \"benchmarkStatus\": \"never\",\n        \"benchmarkWindowStart\": \"00:00:00\",\n        \"benchmarkWindowEnd\": \"00:00:00\"\n    },\n    {\n        \"windowTimezone\": \"\",\n        \"forwardPointConversion\": 10000,\n        \"currencyPair\": \"USDDZD\",\n        \"isNDF\": 1,\n        \"spotSettlementDays\": 2,\n        \"benchmarkStatus\": \"never\",\n        \"benchmarkWindowStart\": \"00:00:00\",\n        \"benchmarkWindowEnd\": \"00:00:00\"\n    },\n    {\n        \"windowTimezone\": \"\",\n        \"forwardPointConversion\": 10000,\n        \"currencyPair\": \"USDEGP\",\n        \"isNDF\": 0,\n        \"spotSettlementDays\": 2,\n        \"benchmarkStatus\": \"never\",\n        \"benchmarkWindowStart\": \"00:00:00\",\n        \"benchmarkWindowEnd\": \"00:00:00\"\n    },\n    {\n        \"windowTimezone\": \"\",\n        \"forwardPointConversion\": 10000,\n        \"currencyPair\": \"USDEGP\",\n        \"isNDF\": 1,\n        \"spotSettlementDays\": 2,\n        \"benchmarkStatus\": \"never\",\n        \"benchmarkWindowStart\": \"00:00:00\",\n        \"benchmarkWindowEnd\": \"00:00:00\"\n    },\n    {\n        \"windowTimezone\": \"\",\n        \"forwardPointConversion\": 10000,\n        \"currencyPair\": \"USDERN\",\n        \"isNDF\": 0,\n        \"spotSettlementDays\": 2,\n        \"benchmarkStatus\": \"never\",\n        \"benchmarkWindowStart\": \"00:00:00\",\n        \"benchmarkWindowEnd\": \"00:00:00\"\n    },\n    {\n        \"windowTimezone\": \"\",\n        \"forwardPointConversion\": 1,\n        \"currencyPair\": \"USDETB\",\n        \"isNDF\": 0,\n        \"spotSettlementDays\": 2,\n        \"benchmarkStatus\": \"never\",\n        \"benchmarkWindowStart\": \"00:00:00\",\n        \"benchmarkWindowEnd\": \"00:00:00\"\n    },\n    {\n        \"windowTimezone\": \"\",\n        \"forwardPointConversion\": 10000,\n        \"currencyPair\": \"USDFJD\",\n        \"isNDF\": 0,\n        \"spotSettlementDays\": 2,\n        \"benchmarkStatus\": \"never\",\n        \"benchmarkWindowStart\": \"00:00:00\",\n        \"benchmarkWindowEnd\": \"00:00:00\"\n    },\n    {\n        \"windowTimezone\": \"\",\n        \"forwardPointConversion\": 10000,\n        \"currencyPair\": \"USDFKP\",\n        \"isNDF\": 0,\n        \"spotSettlementDays\": 2,\n        \"benchmarkStatus\": \"never\",\n        \"benchmarkWindowStart\": \"00:00:00\",\n        \"benchmarkWindowEnd\": \"00:00:00\"\n    },\n    {\n        \"windowTimezone\": \"\",\n        \"forwardPointConversion\": 10000,\n        \"currencyPair\": \"USDGEL\",\n        \"isNDF\": 0,\n        \"spotSettlementDays\": 2,\n        \"benchmarkStatus\": \"never\",\n        \"benchmarkWindowStart\": \"00:00:00\",\n        \"benchmarkWindowEnd\": \"00:00:00\"\n    },\n    {\n        \"windowTimezone\": \"\",\n        \"forwardPointConversion\": 10000,\n        \"currencyPair\": \"USDGHS\",\n        \"isNDF\": 0,\n        \"spotSettlementDays\": 2,\n        \"benchmarkStatus\": \"never\",\n        \"benchmarkWindowStart\": \"00:00:00\",\n        \"benchmarkWindowEnd\": \"00:00:00\"\n    },\n    {\n        \"windowTimezone\": \"\",\n        \"forwardPointConversion\": 1,\n        \"currencyPair\": \"USDGHS\",\n        \"isNDF\": 1,\n        \"spotSettlementDays\": 2,\n        \"benchmarkStatus\": \"never\",\n        \"benchmarkWindowStart\": \"00:00:00\",\n        \"benchmarkWindowEnd\": \"00:00:00\"\n    },\n    {\n        \"windowTimezone\": \"\",\n        \"forwardPointConversion\": 10000,\n        \"currencyPair\": \"USDGIP\",\n        \"isNDF\": 0,\n        \"spotSettlementDays\": 2,\n        \"benchmarkStatus\": \"never\",\n        \"benchmarkWindowStart\": \"00:00:00\",\n        \"benchmarkWindowEnd\": \"00:00:00\"\n    },\n    {\n        \"windowTimezone\": \"\",\n        \"forwardPointConversion\": 10000,\n        \"currencyPair\": \"USDGMD\",\n        \"isNDF\": 0,\n        \"spotSettlementDays\": 2,\n        \"benchmarkStatus\": \"never\",\n        \"benchmarkWindowStart\": \"00:00:00\",\n        \"benchmarkWindowEnd\": \"00:00:00\"\n    },\n    {\n        \"windowTimezone\": \"\",\n        \"forwardPointConversion\": 100,\n        \"currencyPair\": \"USDGNF\",\n        \"isNDF\": 0,\n        \"spotSettlementDays\": 2,\n        \"benchmarkStatus\": \"never\",\n        \"benchmarkWindowStart\": \"00:00:00\",\n        \"benchmarkWindowEnd\": \"00:00:00\"\n    },\n    {\n        \"windowTimezone\": \"\",\n        \"forwardPointConversion\": 10000,\n        \"currencyPair\": \"USDGTQ\",\n        \"isNDF\": 0,\n        \"spotSettlementDays\": 2,\n        \"benchmarkStatus\": \"never\",\n        \"benchmarkWindowStart\": \"00:00:00\",\n        \"benchmarkWindowEnd\": \"00:00:00\"\n    },\n    {\n        \"windowTimezone\": \"\",\n        \"forwardPointConversion\": 10,\n        \"currencyPair\": \"USDGYD\",\n        \"isNDF\": 0,\n        \"spotSettlementDays\": 2,\n        \"benchmarkStatus\": \"never\",\n        \"benchmarkWindowStart\": \"00:00:00\",\n        \"benchmarkWindowEnd\": \"00:00:00\"\n    },\n    {\n        \"windowTimezone\": \"\",\n        \"forwardPointConversion\": 10000,\n        \"currencyPair\": \"USDHKD\",\n        \"isNDF\": 0,\n        \"spotSettlementDays\": 2,\n        \"benchmarkStatus\": \"always\",\n        \"benchmarkWindowStart\": \"00:00:00\",\n        \"benchmarkWindowEnd\": \"00:00:00\"\n    },\n    {\n        \"windowTimezone\": \"\",\n        \"forwardPointConversion\": 10000,\n        \"currencyPair\": \"USDHNL\",\n        \"isNDF\": 0,\n        \"spotSettlementDays\": 2,\n        \"benchmarkStatus\": \"never\",\n        \"benchmarkWindowStart\": \"00:00:00\",\n        \"benchmarkWindowEnd\": \"00:00:00\"\n    },\n    {\n        \"windowTimezone\": \"\",\n        \"forwardPointConversion\": 10000,\n        \"currencyPair\": \"USDHRK\",\n        \"isNDF\": 0,\n        \"spotSettlementDays\": 2,\n        \"benchmarkStatus\": \"never\",\n        \"benchmarkWindowStart\": \"00:00:00\",\n        \"benchmarkWindowEnd\": \"00:00:00\"\n    },\n    {\n        \"windowTimezone\": \"\",\n        \"forwardPointConversion\": 10000,\n        \"currencyPair\": \"USDHTG\",\n        \"isNDF\": 0,\n        \"spotSettlementDays\": 2,\n        \"benchmarkStatus\": \"never\",\n        \"benchmarkWindowStart\": \"00:00:00\",\n        \"benchmarkWindowEnd\": \"00:00:00\"\n    },\n    {\n        \"windowTimezone\": \"\",\n        \"forwardPointConversion\": 100,\n        \"currencyPair\": \"USDHUF\",\n        \"isNDF\": 0,\n        \"spotSettlementDays\": 2,\n        \"benchmarkStatus\": \"always\",\n        \"benchmarkWindowStart\": \"00:00:00\",\n        \"benchmarkWindowEnd\": \"00:00:00\"\n    },\n    {\n        \"windowTimezone\": \"\",\n        \"forwardPointConversion\": 1,\n        \"currencyPair\": \"USDIDR\",\n        \"isNDF\": 0,\n        \"spotSettlementDays\": 2,\n        \"benchmarkStatus\": \"never\",\n        \"benchmarkWindowStart\": \"00:00:00\",\n        \"benchmarkWindowEnd\": \"00:00:00\"\n    },\n    {\n        \"windowTimezone\": \"\",\n        \"forwardPointConversion\": 1,\n        \"currencyPair\": \"USDIDR\",\n        \"isNDF\": 1,\n        \"spotSettlementDays\": 2,\n        \"benchmarkStatus\": \"never\",\n        \"benchmarkWindowStart\": \"00:00:00\",\n        \"benchmarkWindowEnd\": \"00:00:00\"\n    },\n    {\n        \"windowTimezone\": \"\",\n        \"forwardPointConversion\": 10000,\n        \"currencyPair\": \"USDILS\",\n        \"isNDF\": 0,\n        \"spotSettlementDays\": 2,\n        \"benchmarkStatus\": \"always\",\n        \"benchmarkWindowStart\": \"00:00:00\",\n        \"benchmarkWindowEnd\": \"00:00:00\"\n    },\n    {\n        \"windowTimezone\": \"\",\n        \"forwardPointConversion\": 100,\n        \"currencyPair\": \"USDINR\",\n        \"isNDF\": 0,\n        \"spotSettlementDays\": 2,\n        \"benchmarkStatus\": \"never\",\n        \"benchmarkWindowStart\": \"00:00:00\",\n        \"benchmarkWindowEnd\": \"00:00:00\"\n    },\n    {\n        \"windowTimezone\": \"\",\n        \"forwardPointConversion\": 1,\n        \"currencyPair\": \"USDINR\",\n        \"isNDF\": 1,\n        \"spotSettlementDays\": 2,\n        \"benchmarkStatus\": \"never\",\n        \"benchmarkWindowStart\": \"00:00:00\",\n        \"benchmarkWindowEnd\": \"00:00:00\"\n    },\n    {\n        \"windowTimezone\": \"\",\n        \"forwardPointConversion\": 10000,\n        \"currencyPair\": \"USDIQD\",\n        \"isNDF\": 0,\n        \"spotSettlementDays\": 2,\n        \"benchmarkStatus\": \"never\",\n        \"benchmarkWindowStart\": \"00:00:00\",\n        \"benchmarkWindowEnd\": \"00:00:00\"\n    },\n    {\n        \"windowTimezone\": \"\",\n        \"forwardPointConversion\": 1,\n        \"currencyPair\": \"USDIRR\",\n        \"isNDF\": 0,\n        \"spotSettlementDays\": 2,\n        \"benchmarkStatus\": \"never\",\n        \"benchmarkWindowStart\": \"00:00:00\",\n        \"benchmarkWindowEnd\": \"00:00:00\"\n    },\n    {\n        \"windowTimezone\": \"\",\n        \"forwardPointConversion\": 100,\n        \"currencyPair\": \"USDISK\",\n        \"isNDF\": 0,\n        \"spotSettlementDays\": 2,\n        \"benchmarkStatus\": \"never\",\n        \"benchmarkWindowStart\": \"00:00:00\",\n        \"benchmarkWindowEnd\": \"00:00:00\"\n    },\n    {\n        \"windowTimezone\": \"\",\n        \"forwardPointConversion\": 10000,\n        \"currencyPair\": \"USDJMD\",\n        \"isNDF\": 0,\n        \"spotSettlementDays\": 2,\n        \"benchmarkStatus\": \"never\",\n        \"benchmarkWindowStart\": \"00:00:00\",\n        \"benchmarkWindowEnd\": \"00:00:00\"\n    },\n    {\n        \"windowTimezone\": \"\",\n        \"forwardPointConversion\": 100000,\n        \"currencyPair\": \"USDJOD\",\n        \"isNDF\": 0,\n        \"spotSettlementDays\": 2,\n        \"benchmarkStatus\": \"never\",\n        \"benchmarkWindowStart\": \"00:00:00\",\n        \"benchmarkWindowEnd\": \"00:00:00\"\n    },\n    {\n        \"windowTimezone\": \"\",\n        \"forwardPointConversion\": 100,\n        \"currencyPair\": \"USDJPY\",\n        \"isNDF\": 0,\n        \"spotSettlementDays\": 2,\n        \"benchmarkStatus\": \"always\",\n        \"benchmarkWindowStart\": \"00:00:00\",\n        \"benchmarkWindowEnd\": \"00:00:00\"\n    },\n    {\n        \"windowTimezone\": \"\",\n        \"forwardPointConversion\": 100,\n        \"currencyPair\": \"USDKES\",\n        \"isNDF\": 0,\n        \"spotSettlementDays\": 2,\n        \"benchmarkStatus\": \"never\",\n        \"benchmarkWindowStart\": \"00:00:00\",\n        \"benchmarkWindowEnd\": \"00:00:00\"\n    },\n    {\n        \"windowTimezone\": \"\",\n        \"forwardPointConversion\": 100,\n        \"currencyPair\": \"USDKES\",\n        \"isNDF\": 1,\n        \"spotSettlementDays\": 2,\n        \"benchmarkStatus\": \"never\",\n        \"benchmarkWindowStart\": \"00:00:00\",\n        \"benchmarkWindowEnd\": \"00:00:00\"\n    },\n    {\n        \"windowTimezone\": \"\",\n        \"forwardPointConversion\": 1,\n        \"currencyPair\": \"USDKGS\",\n        \"isNDF\": 0,\n        \"spotSettlementDays\": 0,\n        \"benchmarkStatus\": \"never\",\n        \"benchmarkWindowStart\": \"00:00:00\",\n        \"benchmarkWindowEnd\": \"00:00:00\"\n    },\n    {\n        \"windowTimezone\": \"\",\n        \"forwardPointConversion\": 1,\n        \"currencyPair\": \"USDKGS\",\n        \"isNDF\": 1,\n        \"spotSettlementDays\": 0,\n        \"benchmarkStatus\": \"never\",\n        \"benchmarkWindowStart\": \"00:00:00\",\n        \"benchmarkWindowEnd\": \"00:00:00\"\n    },\n    {\n        \"windowTimezone\": \"\",\n        \"forwardPointConversion\": 10000,\n        \"currencyPair\": \"USDKHR\",\n        \"isNDF\": 0,\n        \"spotSettlementDays\": 2,\n        \"benchmarkStatus\": \"never\",\n        \"benchmarkWindowStart\": \"00:00:00\",\n        \"benchmarkWindowEnd\": \"00:00:00\"\n    },\n    {\n        \"windowTimezone\": \"\",\n        \"forwardPointConversion\": 10000,\n        \"currencyPair\": \"USDKMF\",\n        \"isNDF\": 0,\n        \"spotSettlementDays\": 2,\n        \"benchmarkStatus\": \"never\",\n        \"benchmarkWindowStart\": \"00:00:00\",\n        \"benchmarkWindowEnd\": \"00:00:00\"\n    },\n    {\n        \"windowTimezone\": \"\",\n        \"forwardPointConversion\": 10000,\n        \"currencyPair\": \"USDKPW\",\n        \"isNDF\": 0,\n        \"spotSettlementDays\": 2,\n        \"benchmarkStatus\": \"never\",\n        \"benchmarkWindowStart\": \"00:00:00\",\n        \"benchmarkWindowEnd\": \"00:00:00\"\n    },\n    {\n        \"windowTimezone\": \"\",\n        \"forwardPointConversion\": 1,\n        \"currencyPair\": \"USDKRW\",\n        \"isNDF\": 0,\n        \"spotSettlementDays\": 2,\n        \"benchmarkStatus\": \"never\",\n        \"benchmarkWindowStart\": \"00:00:00\",\n        \"benchmarkWindowEnd\": \"00:00:00\"\n    },\n    {\n        \"windowTimezone\": \"\",\n        \"forwardPointConversion\": 1,\n        \"currencyPair\": \"USDKRW\",\n        \"isNDF\": 1,\n        \"spotSettlementDays\": 2,\n        \"benchmarkStatus\": \"never\",\n        \"benchmarkWindowStart\": \"00:00:00\",\n        \"benchmarkWindowEnd\": \"00:00:00\"\n    },\n    {\n        \"windowTimezone\": \"\",\n        \"forwardPointConversion\": 100000,\n        \"currencyPair\": \"USDKWD\",\n        \"isNDF\": 0,\n        \"spotSettlementDays\": 2,\n        \"benchmarkStatus\": \"never\",\n        \"benchmarkWindowStart\": \"00:00:00\",\n        \"benchmarkWindowEnd\": \"00:00:00\"\n    },\n    {\n        \"windowTimezone\": \"\",\n        \"forwardPointConversion\": 10000,\n        \"currencyPair\": \"USDKYD\",\n        \"isNDF\": 0,\n        \"spotSettlementDays\": 2,\n        \"benchmarkStatus\": \"never\",\n        \"benchmarkWindowStart\": \"00:00:00\",\n        \"benchmarkWindowEnd\": \"00:00:00\"\n    },\n    {\n        \"windowTimezone\": \"\",\n        \"forwardPointConversion\": 100,\n        \"currencyPair\": \"USDKZT\",\n        \"isNDF\": 0,\n        \"spotSettlementDays\": 1,\n        \"benchmarkStatus\": \"never\",\n        \"benchmarkWindowStart\": \"00:00:00\",\n        \"benchmarkWindowEnd\": \"00:00:00\"\n    },\n    {\n        \"windowTimezone\": \"\",\n        \"forwardPointConversion\": 1,\n        \"currencyPair\": \"USDKZT\",\n        \"isNDF\": 1,\n        \"spotSettlementDays\": 1,\n        \"benchmarkStatus\": \"never\",\n        \"benchmarkWindowStart\": \"00:00:00\",\n        \"benchmarkWindowEnd\": \"00:00:00\"\n    },\n    {\n        \"windowTimezone\": \"\",\n        \"forwardPointConversion\": 100,\n        \"currencyPair\": \"USDLAK\",\n        \"isNDF\": 0,\n        \"spotSettlementDays\": 2,\n        \"benchmarkStatus\": \"never\",\n        \"benchmarkWindowStart\": \"00:00:00\",\n        \"benchmarkWindowEnd\": \"00:00:00\"\n    },\n    {\n        \"windowTimezone\": \"\",\n        \"forwardPointConversion\": 10000,\n        \"currencyPair\": \"USDLBP\",\n        \"isNDF\": 0,\n        \"spotSettlementDays\": 2,\n        \"benchmarkStatus\": \"never\",\n        \"benchmarkWindowStart\": \"00:00:00\",\n        \"benchmarkWindowEnd\": \"00:00:00\"\n    },\n    {\n        \"windowTimezone\": \"\",\n        \"forwardPointConversion\": 10000,\n        \"currencyPair\": \"USDLBP\",\n        \"isNDF\": 1,\n        \"spotSettlementDays\": 2,\n        \"benchmarkStatus\": \"never\",\n        \"benchmarkWindowStart\": \"00:00:00\",\n        \"benchmarkWindowEnd\": \"00:00:00\"\n    },\n    {\n        \"windowTimezone\": \"\",\n        \"forwardPointConversion\": 1,\n        \"currencyPair\": \"USDLKR\",\n        \"isNDF\": 0,\n        \"spotSettlementDays\": 2,\n        \"benchmarkStatus\": \"never\",\n        \"benchmarkWindowStart\": \"00:00:00\",\n        \"benchmarkWindowEnd\": \"00:00:00\"\n    },\n    {\n        \"windowTimezone\": \"\",\n        \"forwardPointConversion\": 10000,\n        \"currencyPair\": \"USDLRD\",\n        \"isNDF\": 0,\n        \"spotSettlementDays\": 2,\n        \"benchmarkStatus\": \"never\",\n        \"benchmarkWindowStart\": \"00:00:00\",\n        \"benchmarkWindowEnd\": \"00:00:00\"\n    },\n    {\n        \"windowTimezone\": \"\",\n        \"forwardPointConversion\": 10000,\n        \"currencyPair\": \"USDLSL\",\n        \"isNDF\": 0,\n        \"spotSettlementDays\": 2,\n        \"benchmarkStatus\": \"never\",\n        \"benchmarkWindowStart\": \"00:00:00\",\n        \"benchmarkWindowEnd\": \"00:00:00\"\n    },\n    {\n        \"windowTimezone\": \"\",\n        \"forwardPointConversion\": 1,\n        \"currencyPair\": \"USDLYD\",\n        \"isNDF\": 0,\n        \"spotSettlementDays\": 2,\n        \"benchmarkStatus\": \"never\",\n        \"benchmarkWindowStart\": \"00:00:00\",\n        \"benchmarkWindowEnd\": \"00:00:00\"\n    },\n    {\n        \"windowTimezone\": \"\",\n        \"forwardPointConversion\": 10000,\n        \"currencyPair\": \"USDMAD\",\n        \"isNDF\": 0,\n        \"spotSettlementDays\": 2,\n        \"benchmarkStatus\": \"never\",\n        \"benchmarkWindowStart\": \"00:00:00\",\n        \"benchmarkWindowEnd\": \"00:00:00\"\n    },\n    {\n        \"windowTimezone\": \"\",\n        \"forwardPointConversion\": 10000,\n        \"currencyPair\": \"USDMDL\",\n        \"isNDF\": 0,\n        \"spotSettlementDays\": 0,\n        \"benchmarkStatus\": \"never\",\n        \"benchmarkWindowStart\": \"00:00:00\",\n        \"benchmarkWindowEnd\": \"00:00:00\"\n    },\n    {\n        \"windowTimezone\": \"\",\n        \"forwardPointConversion\": 100,\n        \"currencyPair\": \"USDMGA\",\n        \"isNDF\": 0,\n        \"spotSettlementDays\": 2,\n        \"benchmarkStatus\": \"never\",\n        \"benchmarkWindowStart\": \"00:00:00\",\n        \"benchmarkWindowEnd\": \"00:00:00\"\n    },\n    {\n        \"windowTimezone\": \"\",\n        \"forwardPointConversion\": 10000,\n        \"currencyPair\": \"USDMKD\",\n        \"isNDF\": 0,\n        \"spotSettlementDays\": 2,\n        \"benchmarkStatus\": \"never\",\n        \"benchmarkWindowStart\": \"00:00:00\",\n        \"benchmarkWindowEnd\": \"00:00:00\"\n    },\n    {\n        \"windowTimezone\": \"\",\n        \"forwardPointConversion\": 1,\n        \"currencyPair\": \"USDMMK\",\n        \"isNDF\": 0,\n        \"spotSettlementDays\": 2,\n        \"benchmarkStatus\": \"never\",\n        \"benchmarkWindowStart\": \"00:00:00\",\n        \"benchmarkWindowEnd\": \"00:00:00\"\n    },\n    {\n        \"windowTimezone\": \"\",\n        \"forwardPointConversion\": 1,\n        \"currencyPair\": \"USDMNT\",\n        \"isNDF\": 0,\n        \"spotSettlementDays\": 0,\n        \"benchmarkStatus\": \"never\",\n        \"benchmarkWindowStart\": \"00:00:00\",\n        \"benchmarkWindowEnd\": \"00:00:00\"\n    },\n    {\n        \"windowTimezone\": \"\",\n        \"forwardPointConversion\": 10000,\n        \"currencyPair\": \"USDMOP\",\n        \"isNDF\": 0,\n        \"spotSettlementDays\": 2,\n        \"benchmarkStatus\": \"never\",\n        \"benchmarkWindowStart\": \"00:00:00\",\n        \"benchmarkWindowEnd\": \"00:00:00\"\n    },\n    {\n        \"windowTimezone\": \"\",\n        \"forwardPointConversion\": 100,\n        \"currencyPair\": \"USDMUR\",\n        \"isNDF\": 0,\n        \"spotSettlementDays\": 2,\n        \"benchmarkStatus\": \"never\",\n        \"benchmarkWindowStart\": \"00:00:00\",\n        \"benchmarkWindowEnd\": \"00:00:00\"\n    },\n    {\n        \"windowTimezone\": \"\",\n        \"forwardPointConversion\": 10000,\n        \"currencyPair\": \"USDMVR\",\n        \"isNDF\": 0,\n        \"spotSettlementDays\": 2,\n        \"benchmarkStatus\": \"never\",\n        \"benchmarkWindowStart\": \"00:00:00\",\n        \"benchmarkWindowEnd\": \"00:00:00\"\n    },\n    {\n        \"windowTimezone\": \"\",\n        \"forwardPointConversion\": 10000,\n        \"currencyPair\": \"USDMWK\",\n        \"isNDF\": 0,\n        \"spotSettlementDays\": 2,\n        \"benchmarkStatus\": \"never\",\n        \"benchmarkWindowStart\": \"00:00:00\",\n        \"benchmarkWindowEnd\": \"00:00:00\"\n    },\n    {\n        \"windowTimezone\": \"\",\n        \"forwardPointConversion\": 10000,\n        \"currencyPair\": \"USDMXN\",\n        \"isNDF\": 0,\n        \"spotSettlementDays\": 2,\n        \"benchmarkStatus\": \"always\",\n        \"benchmarkWindowStart\": \"00:00:00\",\n        \"benchmarkWindowEnd\": \"00:00:00\"\n    },\n    {\n        \"windowTimezone\": \"\",\n        \"forwardPointConversion\": 10000,\n        \"currencyPair\": \"USDMYR\",\n        \"isNDF\": 0,\n        \"spotSettlementDays\": 2,\n        \"benchmarkStatus\": \"never\",\n        \"benchmarkWindowStart\": \"00:00:00\",\n        \"benchmarkWindowEnd\": \"00:00:00\"\n    },\n    {\n        \"windowTimezone\": \"\",\n        \"forwardPointConversion\": 1,\n        \"currencyPair\": \"USDMYR\",\n        \"isNDF\": 1,\n        \"spotSettlementDays\": 2,\n        \"benchmarkStatus\": \"never\",\n        \"benchmarkWindowStart\": \"00:00:00\",\n        \"benchmarkWindowEnd\": \"00:00:00\"\n    },\n    {\n        \"windowTimezone\": \"\",\n        \"forwardPointConversion\": 10000,\n        \"currencyPair\": \"USDMZN\",\n        \"isNDF\": 0,\n        \"spotSettlementDays\": 2,\n        \"benchmarkStatus\": \"never\",\n        \"benchmarkWindowStart\": \"00:00:00\",\n        \"benchmarkWindowEnd\": \"00:00:00\"\n    },\n    {\n        \"windowTimezone\": \"\",\n        \"forwardPointConversion\": 1,\n        \"currencyPair\": \"USDNAD\",\n        \"isNDF\": 0,\n        \"spotSettlementDays\": 2,\n        \"benchmarkStatus\": \"never\",\n        \"benchmarkWindowStart\": \"00:00:00\",\n        \"benchmarkWindowEnd\": \"00:00:00\"\n    },\n    {\n        \"windowTimezone\": \"\",\n        \"forwardPointConversion\": 100,\n        \"currencyPair\": \"USDNGN\",\n        \"isNDF\": 0,\n        \"spotSettlementDays\": 2,\n        \"benchmarkStatus\": \"never\",\n        \"benchmarkWindowStart\": \"00:00:00\",\n        \"benchmarkWindowEnd\": \"00:00:00\"\n    },\n    {\n        \"windowTimezone\": \"\",\n        \"forwardPointConversion\": 1,\n        \"currencyPair\": \"USDNGN\",\n        \"isNDF\": 1,\n        \"spotSettlementDays\": 2,\n        \"benchmarkStatus\": \"never\",\n        \"benchmarkWindowStart\": \"00:00:00\",\n        \"benchmarkWindowEnd\": \"00:00:00\"\n    },\n    {\n        \"windowTimezone\": \"\",\n        \"forwardPointConversion\": 10000,\n        \"currencyPair\": \"USDNIO\",\n        \"isNDF\": 0,\n        \"spotSettlementDays\": 2,\n        \"benchmarkStatus\": \"never\",\n        \"benchmarkWindowStart\": \"00:00:00\",\n        \"benchmarkWindowEnd\": \"00:00:00\"\n    },\n    {\n        \"windowTimezone\": \"\",\n        \"forwardPointConversion\": 10000,\n        \"currencyPair\": \"USDNOK\",\n        \"isNDF\": 0,\n        \"spotSettlementDays\": 2,\n        \"benchmarkStatus\": \"always\",\n        \"benchmarkWindowStart\": \"00:00:00\",\n        \"benchmarkWindowEnd\": \"00:00:00\"\n    },\n    {\n        \"windowTimezone\": \"\",\n        \"forwardPointConversion\": 10000,\n        \"currencyPair\": \"USDNPR\",\n        \"isNDF\": 0,\n        \"spotSettlementDays\": 2,\n        \"benchmarkStatus\": \"never\",\n        \"benchmarkWindowStart\": \"00:00:00\",\n        \"benchmarkWindowEnd\": \"00:00:00\"\n    },\n    {\n        \"windowTimezone\": \"\",\n        \"forwardPointConversion\": 100000,\n        \"currencyPair\": \"USDOMR\",\n        \"isNDF\": 0,\n        \"spotSettlementDays\": 2,\n        \"benchmarkStatus\": \"never\",\n        \"benchmarkWindowStart\": \"00:00:00\",\n        \"benchmarkWindowEnd\": \"00:00:00\"\n    },\n    {\n        \"windowTimezone\": \"\",\n        \"forwardPointConversion\": 10000,\n        \"currencyPair\": \"USDPAB\",\n        \"isNDF\": 0,\n        \"spotSettlementDays\": 2,\n        \"benchmarkStatus\": \"never\",\n        \"benchmarkWindowStart\": \"00:00:00\",\n        \"benchmarkWindowEnd\": \"00:00:00\"\n    },\n    {\n        \"windowTimezone\": \"\",\n        \"forwardPointConversion\": 10000,\n        \"currencyPair\": \"USDPEN\",\n        \"isNDF\": 0,\n        \"spotSettlementDays\": 2,\n        \"benchmarkStatus\": \"never\",\n        \"benchmarkWindowStart\": \"00:00:00\",\n        \"benchmarkWindowEnd\": \"00:00:00\"\n    },\n    {\n        \"windowTimezone\": \"\",\n        \"forwardPointConversion\": 10000,\n        \"currencyPair\": \"USDPEN\",\n        \"isNDF\": 1,\n        \"spotSettlementDays\": 2,\n        \"benchmarkStatus\": \"never\",\n        \"benchmarkWindowStart\": \"00:00:00\",\n        \"benchmarkWindowEnd\": \"00:00:00\"\n    },\n    {\n        \"windowTimezone\": \"\",\n        \"forwardPointConversion\": 10000,\n        \"currencyPair\": \"USDPGK\",\n        \"isNDF\": 0,\n        \"spotSettlementDays\": 2,\n        \"benchmarkStatus\": \"never\",\n        \"benchmarkWindowStart\": \"00:00:00\",\n        \"benchmarkWindowEnd\": \"00:00:00\"\n    },\n    {\n        \"windowTimezone\": \"\",\n        \"forwardPointConversion\": 1,\n        \"currencyPair\": \"USDPHP\",\n        \"isNDF\": 0,\n        \"spotSettlementDays\": 1,\n        \"benchmarkStatus\": \"never\",\n        \"benchmarkWindowStart\": \"00:00:00\",\n        \"benchmarkWindowEnd\": \"00:00:00\"\n    },\n    {\n        \"windowTimezone\": \"\",\n        \"forwardPointConversion\": 1,\n        \"currencyPair\": \"USDPHP\",\n        \"isNDF\": 1,\n        \"spotSettlementDays\": 2,\n        \"benchmarkStatus\": \"never\",\n        \"benchmarkWindowStart\": \"00:00:00\",\n        \"benchmarkWindowEnd\": \"00:00:00\"\n    },\n    {\n        \"windowTimezone\": \"\",\n        \"forwardPointConversion\": 100,\n        \"currencyPair\": \"USDPKR\",\n        \"isNDF\": 0,\n        \"spotSettlementDays\": 2,\n        \"benchmarkStatus\": \"never\",\n        \"benchmarkWindowStart\": \"00:00:00\",\n        \"benchmarkWindowEnd\": \"00:00:00\"\n    },\n    {\n        \"windowTimezone\": \"\",\n        \"forwardPointConversion\": 1,\n        \"currencyPair\": \"USDPKR\",\n        \"isNDF\": 1,\n        \"spotSettlementDays\": 2,\n        \"benchmarkStatus\": \"never\",\n        \"benchmarkWindowStart\": \"00:00:00\",\n        \"benchmarkWindowEnd\": \"00:00:00\"\n    },\n    {\n        \"windowTimezone\": \"\",\n        \"forwardPointConversion\": 10000,\n        \"currencyPair\": \"USDPLN\",\n        \"isNDF\": 0,\n        \"spotSettlementDays\": 2,\n        \"benchmarkStatus\": \"always\",\n        \"benchmarkWindowStart\": \"00:00:00\",\n        \"benchmarkWindowEnd\": \"00:00:00\"\n    },\n    {\n        \"windowTimezone\": \"\",\n        \"forwardPointConversion\": 100,\n        \"currencyPair\": \"USDPYG\",\n        \"isNDF\": 0,\n        \"spotSettlementDays\": 2,\n        \"benchmarkStatus\": \"never\",\n        \"benchmarkWindowStart\": \"00:00:00\",\n        \"benchmarkWindowEnd\": \"00:00:00\"\n    },\n    {\n        \"windowTimezone\": \"\",\n        \"forwardPointConversion\": 10000,\n        \"currencyPair\": \"USDQAR\",\n        \"isNDF\": 0,\n        \"spotSettlementDays\": 2,\n        \"benchmarkStatus\": \"never\",\n        \"benchmarkWindowStart\": \"00:00:00\",\n        \"benchmarkWindowEnd\": \"00:00:00\"\n    },\n    {\n        \"windowTimezone\": \"\",\n        \"forwardPointConversion\": 10000,\n        \"currencyPair\": \"USDRON\",\n        \"isNDF\": 0,\n        \"spotSettlementDays\": 2,\n        \"benchmarkStatus\": \"never\",\n        \"benchmarkWindowStart\": \"00:00:00\",\n        \"benchmarkWindowEnd\": \"00:00:00\"\n    },\n    {\n        \"windowTimezone\": \"\",\n        \"forwardPointConversion\": 100,\n        \"currencyPair\": \"USDRSD\",\n        \"isNDF\": 0,\n        \"spotSettlementDays\": 2,\n        \"benchmarkStatus\": \"never\",\n        \"benchmarkWindowStart\": \"00:00:00\",\n        \"benchmarkWindowEnd\": \"00:00:00\"\n    },\n    {\n        \"windowTimezone\": \"\",\n        \"forwardPointConversion\": 1,\n        \"currencyPair\": \"USDRUB\",\n        \"isNDF\": 1,\n        \"spotSettlementDays\": 2,\n        \"benchmarkStatus\": \"never\",\n        \"benchmarkWindowStart\": \"00:00:00\",\n        \"benchmarkWindowEnd\": \"00:00:00\"\n    },\n    {\n        \"windowTimezone\": \"\",\n        \"forwardPointConversion\": 1,\n        \"currencyPair\": \"USDRWF\",\n        \"isNDF\": 0,\n        \"spotSettlementDays\": 2,\n        \"benchmarkStatus\": \"never\",\n        \"benchmarkWindowStart\": \"00:00:00\",\n        \"benchmarkWindowEnd\": \"00:00:00\"\n    },\n    {\n        \"windowTimezone\": \"\",\n        \"forwardPointConversion\": 10000,\n        \"currencyPair\": \"USDSAR\",\n        \"isNDF\": 0,\n        \"spotSettlementDays\": 2,\n        \"benchmarkStatus\": \"never\",\n        \"benchmarkWindowStart\": \"00:00:00\",\n        \"benchmarkWindowEnd\": \"00:00:00\"\n    },\n    {\n        \"windowTimezone\": \"\",\n        \"forwardPointConversion\": 10000,\n        \"currencyPair\": \"USDSBD\",\n        \"isNDF\": 0,\n        \"spotSettlementDays\": 2,\n        \"benchmarkStatus\": \"never\",\n        \"benchmarkWindowStart\": \"00:00:00\",\n        \"benchmarkWindowEnd\": \"00:00:00\"\n    },\n    {\n        \"windowTimezone\": \"\",\n        \"forwardPointConversion\": 10000,\n        \"currencyPair\": \"USDSCR\",\n        \"isNDF\": 0,\n        \"spotSettlementDays\": 2,\n        \"benchmarkStatus\": \"never\",\n        \"benchmarkWindowStart\": \"00:00:00\",\n        \"benchmarkWindowEnd\": \"00:00:00\"\n    },\n    {\n        \"windowTimezone\": \"\",\n        \"forwardPointConversion\": 10000,\n        \"currencyPair\": \"USDSDG\",\n        \"isNDF\": 0,\n        \"spotSettlementDays\": 2,\n        \"benchmarkStatus\": \"never\",\n        \"benchmarkWindowStart\": \"00:00:00\",\n        \"benchmarkWindowEnd\": \"00:00:00\"\n    },\n    {\n        \"windowTimezone\": \"\",\n        \"forwardPointConversion\": 10000,\n        \"currencyPair\": \"USDSEK\",\n        \"isNDF\": 0,\n        \"spotSettlementDays\": 2,\n        \"benchmarkStatus\": \"always\",\n        \"benchmarkWindowStart\": \"00:00:00\",\n        \"benchmarkWindowEnd\": \"00:00:00\"\n    },\n    {\n        \"windowTimezone\": \"\",\n        \"forwardPointConversion\": 10000,\n        \"currencyPair\": \"USDSGD\",\n        \"isNDF\": 0,\n        \"spotSettlementDays\": 2,\n        \"benchmarkStatus\": \"always\",\n        \"benchmarkWindowStart\": \"00:00:00\",\n        \"benchmarkWindowEnd\": \"00:00:00\"\n    },\n    {\n        \"windowTimezone\": \"\",\n        \"forwardPointConversion\": 10000,\n        \"currencyPair\": \"USDSHP\",\n        \"isNDF\": 0,\n        \"spotSettlementDays\": 2,\n        \"benchmarkStatus\": \"never\",\n        \"benchmarkWindowStart\": \"00:00:00\",\n        \"benchmarkWindowEnd\": \"00:00:00\"\n    },\n    {\n        \"windowTimezone\": \"\",\n        \"forwardPointConversion\": 10000,\n        \"currencyPair\": \"USDSLL\",\n        \"isNDF\": 0,\n        \"spotSettlementDays\": 2,\n        \"benchmarkStatus\": \"never\",\n        \"benchmarkWindowStart\": \"00:00:00\",\n        \"benchmarkWindowEnd\": \"00:00:00\"\n    },\n    {\n        \"windowTimezone\": \"\",\n        \"forwardPointConversion\": 10000,\n        \"currencyPair\": \"USDSOS\",\n        \"isNDF\": 0,\n        \"spotSettlementDays\": 2,\n        \"benchmarkStatus\": \"never\",\n        \"benchmarkWindowStart\": \"00:00:00\",\n        \"benchmarkWindowEnd\": \"00:00:00\"\n    },\n    {\n        \"windowTimezone\": \"\",\n        \"forwardPointConversion\": 10000,\n        \"currencyPair\": \"USDSRD\",\n        \"isNDF\": 0,\n        \"spotSettlementDays\": 2,\n        \"benchmarkStatus\": \"never\",\n        \"benchmarkWindowStart\": \"00:00:00\",\n        \"benchmarkWindowEnd\": \"00:00:00\"\n    },\n    {\n        \"windowTimezone\": \"\",\n        \"forwardPointConversion\": 10000,\n        \"currencyPair\": \"USDSVC\",\n        \"isNDF\": 0,\n        \"spotSettlementDays\": 2,\n        \"benchmarkStatus\": \"never\",\n        \"benchmarkWindowStart\": \"00:00:00\",\n        \"benchmarkWindowEnd\": \"00:00:00\"\n    },\n    {\n        \"windowTimezone\": \"\",\n        \"forwardPointConversion\": 10000,\n        \"currencyPair\": \"USDSYP\",\n        \"isNDF\": 0,\n        \"spotSettlementDays\": 2,\n        \"benchmarkStatus\": \"never\",\n        \"benchmarkWindowStart\": \"00:00:00\",\n        \"benchmarkWindowEnd\": \"00:00:00\"\n    },\n    {\n        \"windowTimezone\": \"\",\n        \"forwardPointConversion\": 10000,\n        \"currencyPair\": \"USDSZL\",\n        \"isNDF\": 0,\n        \"spotSettlementDays\": 2,\n        \"benchmarkStatus\": \"never\",\n        \"benchmarkWindowStart\": \"00:00:00\",\n        \"benchmarkWindowEnd\": \"00:00:00\"\n    },\n    {\n        \"windowTimezone\": \"\",\n        \"forwardPointConversion\": 100,\n        \"currencyPair\": \"USDTHB\",\n        \"isNDF\": 0,\n        \"spotSettlementDays\": 2,\n        \"benchmarkStatus\": \"never\",\n        \"benchmarkWindowStart\": \"00:00:00\",\n        \"benchmarkWindowEnd\": \"00:00:00\"\n    },\n    {\n        \"windowTimezone\": \"\",\n        \"forwardPointConversion\": 10000,\n        \"currencyPair\": \"USDTJS\",\n        \"isNDF\": 0,\n        \"spotSettlementDays\": 2,\n        \"benchmarkStatus\": \"never\",\n        \"benchmarkWindowStart\": \"00:00:00\",\n        \"benchmarkWindowEnd\": \"00:00:00\"\n    },\n    {\n        \"windowTimezone\": \"\",\n        \"forwardPointConversion\": 1,\n        \"currencyPair\": \"USDTMT\",\n        \"isNDF\": 0,\n        \"spotSettlementDays\": 2,\n        \"benchmarkStatus\": \"never\",\n        \"benchmarkWindowStart\": \"00:00:00\",\n        \"benchmarkWindowEnd\": \"00:00:00\"\n    },\n    {\n        \"windowTimezone\": \"\",\n        \"forwardPointConversion\": 1,\n        \"currencyPair\": \"USDTMT\",\n        \"isNDF\": 1,\n        \"spotSettlementDays\": 2,\n        \"benchmarkStatus\": \"never\",\n        \"benchmarkWindowStart\": \"00:00:00\",\n        \"benchmarkWindowEnd\": \"00:00:00\"\n    },\n    {\n        \"windowTimezone\": \"\",\n        \"forwardPointConversion\": 10000,\n        \"currencyPair\": \"USDTND\",\n        \"isNDF\": 0,\n        \"spotSettlementDays\": 2,\n        \"benchmarkStatus\": \"never\",\n        \"benchmarkWindowStart\": \"00:00:00\",\n        \"benchmarkWindowEnd\": \"00:00:00\"\n    },\n    {\n        \"windowTimezone\": \"\",\n        \"forwardPointConversion\": 10000,\n        \"currencyPair\": \"USDTOP\",\n        \"isNDF\": 0,\n        \"spotSettlementDays\": 2,\n        \"benchmarkStatus\": \"never\",\n        \"benchmarkWindowStart\": \"00:00:00\",\n        \"benchmarkWindowEnd\": \"00:00:00\"\n    },\n    {\n        \"windowTimezone\": \"Asia/Istanbul\",\n        \"forwardPointConversion\": 10000,\n        \"currencyPair\": \"USDTRY\",\n        \"isNDF\": 0,\n        \"spotSettlementDays\": 1,\n        \"benchmarkStatus\": \"always\",\n        \"benchmarkWindowStart\": \"09:00:00\",\n        \"benchmarkWindowEnd\": \"18:00:00\"\n    },\n    {\n        \"windowTimezone\": \"\",\n        \"forwardPointConversion\": 10000,\n        \"currencyPair\": \"USDTTD\",\n        \"isNDF\": 0,\n        \"spotSettlementDays\": 2,\n        \"benchmarkStatus\": \"never\",\n        \"benchmarkWindowStart\": \"00:00:00\",\n        \"benchmarkWindowEnd\": \"00:00:00\"\n    },\n    {\n        \"windowTimezone\": \"\",\n        \"forwardPointConversion\": 1,\n        \"currencyPair\": \"USDTWD\",\n        \"isNDF\": 0,\n        \"spotSettlementDays\": 2,\n        \"benchmarkStatus\": \"never\",\n        \"benchmarkWindowStart\": \"00:00:00\",\n        \"benchmarkWindowEnd\": \"00:00:00\"\n    },\n    {\n        \"windowTimezone\": \"\",\n        \"forwardPointConversion\": 1,\n        \"currencyPair\": \"USDTWD\",\n        \"isNDF\": 1,\n        \"spotSettlementDays\": 2,\n        \"benchmarkStatus\": \"never\",\n        \"benchmarkWindowStart\": \"00:00:00\",\n        \"benchmarkWindowEnd\": \"00:00:00\"\n    },\n    {\n        \"windowTimezone\": \"\",\n        \"forwardPointConversion\": 1,\n        \"currencyPair\": \"USDTZS\",\n        \"isNDF\": 0,\n        \"spotSettlementDays\": 2,\n        \"benchmarkStatus\": \"never\",\n        \"benchmarkWindowStart\": \"00:00:00\",\n        \"benchmarkWindowEnd\": \"00:00:00\"\n    },\n    {\n        \"windowTimezone\": \"\",\n        \"forwardPointConversion\": 10000,\n        \"currencyPair\": \"USDUAH\",\n        \"isNDF\": 0,\n        \"spotSettlementDays\": 0,\n        \"benchmarkStatus\": \"never\",\n        \"benchmarkWindowStart\": \"00:00:00\",\n        \"benchmarkWindowEnd\": \"00:00:00\"\n    },\n    {\n        \"windowTimezone\": \"\",\n        \"forwardPointConversion\": 1,\n        \"currencyPair\": \"USDUAH\",\n        \"isNDF\": 1,\n        \"spotSettlementDays\": 2,\n        \"benchmarkStatus\": \"never\",\n        \"benchmarkWindowStart\": \"00:00:00\",\n        \"benchmarkWindowEnd\": \"00:00:00\"\n    },\n    {\n        \"windowTimezone\": \"\",\n        \"forwardPointConversion\": 10000,\n        \"currencyPair\": \"USDUGX\",\n        \"isNDF\": 0,\n        \"spotSettlementDays\": 2,\n        \"benchmarkStatus\": \"never\",\n        \"benchmarkWindowStart\": \"00:00:00\",\n        \"benchmarkWindowEnd\": \"00:00:00\"\n    },\n    {\n        \"windowTimezone\": \"\",\n        \"forwardPointConversion\": 1,\n        \"currencyPair\": \"USDUYU\",\n        \"isNDF\": 0,\n        \"spotSettlementDays\": 2,\n        \"benchmarkStatus\": \"never\",\n        \"benchmarkWindowStart\": \"00:00:00\",\n        \"benchmarkWindowEnd\": \"00:00:00\"\n    },\n    {\n        \"windowTimezone\": \"\",\n        \"forwardPointConversion\": 1,\n        \"currencyPair\": \"USDUYU\",\n        \"isNDF\": 1,\n        \"spotSettlementDays\": 2,\n        \"benchmarkStatus\": \"never\",\n        \"benchmarkWindowStart\": \"00:00:00\",\n        \"benchmarkWindowEnd\": \"00:00:00\"\n    },\n    {\n        \"windowTimezone\": \"\",\n        \"forwardPointConversion\": 100,\n        \"currencyPair\": \"USDUZS\",\n        \"isNDF\": 0,\n        \"spotSettlementDays\": 2,\n        \"benchmarkStatus\": \"never\",\n        \"benchmarkWindowStart\": \"00:00:00\",\n        \"benchmarkWindowEnd\": \"00:00:00\"\n    },\n    {\n        \"windowTimezone\": \"\",\n        \"forwardPointConversion\": 100,\n        \"currencyPair\": \"USDUZS\",\n        \"isNDF\": 1,\n        \"spotSettlementDays\": 2,\n        \"benchmarkStatus\": \"never\",\n        \"benchmarkWindowStart\": \"00:00:00\",\n        \"benchmarkWindowEnd\": \"00:00:00\"\n    },\n    {\n        \"windowTimezone\": \"\",\n        \"forwardPointConversion\": 10000,\n        \"currencyPair\": \"USDVES\",\n        \"isNDF\": 0,\n        \"spotSettlementDays\": 2,\n        \"benchmarkStatus\": \"never\",\n        \"benchmarkWindowStart\": \"00:00:00\",\n        \"benchmarkWindowEnd\": \"00:00:00\"\n    },\n    {\n        \"windowTimezone\": \"\",\n        \"forwardPointConversion\": 10000,\n        \"currencyPair\": \"USDVES\",\n        \"isNDF\": 1,\n        \"spotSettlementDays\": 2,\n        \"benchmarkStatus\": \"never\",\n        \"benchmarkWindowStart\": \"00:00:00\",\n        \"benchmarkWindowEnd\": \"00:00:00\"\n    },\n    {\n        \"windowTimezone\": \"\",\n        \"forwardPointConversion\": 1,\n        \"currencyPair\": \"USDVND\",\n        \"isNDF\": 0,\n        \"spotSettlementDays\": 2,\n        \"benchmarkStatus\": \"never\",\n        \"benchmarkWindowStart\": \"00:00:00\",\n        \"benchmarkWindowEnd\": \"00:00:00\"\n    },\n    {\n        \"windowTimezone\": \"\",\n        \"forwardPointConversion\": 1,\n        \"currencyPair\": \"USDVND\",\n        \"isNDF\": 1,\n        \"spotSettlementDays\": 2,\n        \"benchmarkStatus\": \"never\",\n        \"benchmarkWindowStart\": \"00:00:00\",\n        \"benchmarkWindowEnd\": \"00:00:00\"\n    },\n    {\n        \"windowTimezone\": \"\",\n        \"forwardPointConversion\": 10000,\n        \"currencyPair\": \"USDVUV\",\n        \"isNDF\": 0,\n        \"spotSettlementDays\": 2,\n        \"benchmarkStatus\": \"never\",\n        \"benchmarkWindowStart\": \"00:00:00\",\n        \"benchmarkWindowEnd\": \"00:00:00\"\n    },\n    {\n        \"windowTimezone\": \"\",\n        \"forwardPointConversion\": 10000,\n        \"currencyPair\": \"USDWST\",\n        \"isNDF\": 0,\n        \"spotSettlementDays\": 2,\n        \"benchmarkStatus\": \"never\",\n        \"benchmarkWindowStart\": \"00:00:00\",\n        \"benchmarkWindowEnd\": \"00:00:00\"\n    },\n    {\n        \"windowTimezone\": \"\",\n        \"forwardPointConversion\": 1,\n        \"currencyPair\": \"USDXAF\",\n        \"isNDF\": 0,\n        \"spotSettlementDays\": 2,\n        \"benchmarkStatus\": \"never\",\n        \"benchmarkWindowStart\": \"00:00:00\",\n        \"benchmarkWindowEnd\": \"00:00:00\"\n    },\n    {\n        \"windowTimezone\": \"\",\n        \"forwardPointConversion\": 100,\n        \"currencyPair\": \"USDXCD\",\n        \"isNDF\": 0,\n        \"spotSettlementDays\": 2,\n        \"benchmarkStatus\": \"never\",\n        \"benchmarkWindowStart\": \"00:00:00\",\n        \"benchmarkWindowEnd\": \"00:00:00\"\n    },\n    {\n        \"windowTimezone\": \"\",\n        \"forwardPointConversion\": 100000,\n        \"currencyPair\": \"USDXDR\",\n        \"isNDF\": 0,\n        \"spotSettlementDays\": 2,\n        \"benchmarkStatus\": \"never\",\n        \"benchmarkWindowStart\": \"00:00:00\",\n        \"benchmarkWindowEnd\": \"00:00:00\"\n    },\n    {\n        \"windowTimezone\": \"\",\n        \"forwardPointConversion\": 1,\n        \"currencyPair\": \"USDXOF\",\n        \"isNDF\": 0,\n        \"spotSettlementDays\": 2,\n        \"benchmarkStatus\": \"never\",\n        \"benchmarkWindowStart\": \"00:00:00\",\n        \"benchmarkWindowEnd\": \"00:00:00\"\n    },\n    {\n        \"windowTimezone\": \"\",\n        \"forwardPointConversion\": 10000,\n        \"currencyPair\": \"USDXPF\",\n        \"isNDF\": 0,\n        \"spotSettlementDays\": 2,\n        \"benchmarkStatus\": \"never\",\n        \"benchmarkWindowStart\": \"00:00:00\",\n        \"benchmarkWindowEnd\": \"00:00:00\"\n    },\n    {\n        \"windowTimezone\": \"\",\n        \"forwardPointConversion\": 1,\n        \"currencyPair\": \"USDYER\",\n        \"isNDF\": 0,\n        \"spotSettlementDays\": 2,\n        \"benchmarkStatus\": \"never\",\n        \"benchmarkWindowStart\": \"00:00:00\",\n        \"benchmarkWindowEnd\": \"00:00:00\"\n    },\n    {\n        \"windowTimezone\": \"\",\n        \"forwardPointConversion\": 10000,\n        \"currencyPair\": \"USDZAR\",\n        \"isNDF\": 0,\n        \"spotSettlementDays\": 2,\n        \"benchmarkStatus\": \"always\",\n        \"benchmarkWindowStart\": \"00:00:00\",\n        \"benchmarkWindowEnd\": \"00:00:00\"\n    },\n    {\n        \"windowTimezone\": \"\",\n        \"forwardPointConversion\": 1000,\n        \"currencyPair\": \"USDZMW\",\n        \"isNDF\": 0,\n        \"spotSettlementDays\": 2,\n        \"benchmarkStatus\": \"never\",\n        \"benchmarkWindowStart\": \"00:00:00\",\n        \"benchmarkWindowEnd\": \"00:00:00\"\n    },\n    {\n        \"windowTimezone\": \"\",\n        \"forwardPointConversion\": 1,\n        \"currencyPair\": \"USDZMW\",\n        \"isNDF\": 1,\n        \"spotSettlementDays\": 2,\n        \"benchmarkStatus\": \"never\",\n        \"benchmarkWindowStart\": \"00:00:00\",\n        \"benchmarkWindowEnd\": \"00:00:00\"\n    },\n    {\n        \"windowTimezone\": \"\",\n        \"forwardPointConversion\": 10000,\n        \"currencyPair\": \"XAGUSD\",\n        \"isNDF\": 0,\n        \"spotSettlementDays\": 2,\n        \"benchmarkStatus\": \"always\",\n        \"benchmarkWindowStart\": \"00:00:00\",\n        \"benchmarkWindowEnd\": \"00:00:00\"\n    },\n    {\n        \"windowTimezone\": \"\",\n        \"forwardPointConversion\": 100,\n        \"currencyPair\": \"XAUUSD\",\n        \"isNDF\": 0,\n        \"spotSettlementDays\": 2,\n        \"benchmarkStatus\": \"always\",\n        \"benchmarkWindowStart\": \"00:00:00\",\n        \"benchmarkWindowEnd\": \"00:00:00\"\n    }\n]"}],"_postman_id":"578918d5-c11a-4c24-876f-b6e75a2a00c7"},{"name":"optioncut","event":[{"listen":"prerequest","script":{"exec":[""],"type":"text/javascript","packages":{},"id":"f01f1815-5794-4ae7-b066-d4b2b2e5e310"}}],"id":"46308d68-6486-4759-b0fc-1398ac423189","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"body":{"mode":"urlencoded","urlencoded":[]},"url":"{{FIAT_API_ENDPOINT}}/general/reference/v1/optioncut","description":"<p>It returns data about the names, timing (including timezone), and content of NCFX option cuts.</p>\n<blockquote>\n<p>This API does not require authentication.</p>\n</blockquote>\n","auth":{"type":"oauth2","oauth2":{"refreshRequestParams":"<refresh-request-params>","password":"{{AUTH_PASSWORD}}","username":"{{AUTH_USERNAME}}","refreshTokenUrl":"<refresh-token-url>","accessTokenUrl":"<access-token-url>","grant_type":"<grant_type>","authUrl":"<auth-url>"},"isInherited":true,"source":{"_postman_id":"9ebb9928-d7bc-4f70-89b3-72c671248367","id":"9ebb9928-d7bc-4f70-89b3-72c671248367","name":"API","type":"folder"}},"urlObject":{"path":["general","reference","v1","optioncut"],"host":["{{FIAT_API_ENDPOINT}}"],"query":[],"variable":[]}},"response":[{"id":"9d9f4f2c-d716-4695-a24d-5b4fffeb9cf8","name":"List of available optioncuts","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer <your_access_token>","description":"String 'Bearer' followed by a space and your access token","type":"text","disabled":true}],"url":"{{FIAT_API_ENDPOINT}}/general/reference/v1/optioncut"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"openresty","enabled":true},{"key":"Date","value":"Tue, 30 Jan 2024 16:36:50 GMT","enabled":true},{"key":"Content-Type","value":"application/json","enabled":true},{"key":"Transfer-Encoding","value":"chunked","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains","enabled":true},{"key":"X-Frame-Options","value":"DENY","enabled":true},{"key":"X-Content-Type-Options","value":"nosniff","enabled":true}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"hour\": 12,\n        \"second\": 0,\n        \"timezone\": \"Europe/Budapest\",\n        \"currencyPairs\": [\n            {\n                \"isCross\": 0,\n                \"optionCutName\": \"Budapest12noon\",\n                \"currencyPair\": \"EURHUF\",\n                \"isNDF\": 0\n            },\n            {\n                \"isCross\": 0,\n                \"optionCutName\": \"Budapest12noon\",\n                \"currencyPair\": \"USDHUF\",\n                \"isNDF\": 0\n            }\n        ],\n        \"name\": \"Budapest12noon\",\n        \"minute\": 0\n    },\n    {\n        \"hour\": 12,\n        \"second\": 0,\n        \"timezone\": \"Europe/London\",\n        \"currencyPairs\": [\n            {\n                \"isCross\": 0,\n                \"optionCutName\": \"London12noon\",\n                \"currencyPair\": \"EURTRY\",\n                \"isNDF\": 0\n            },\n            {\n                \"isCross\": 0,\n                \"optionCutName\": \"London12noon\",\n                \"currencyPair\": \"USDTRY\",\n                \"isNDF\": 0\n            }\n        ],\n        \"name\": \"London12noon\",\n        \"minute\": 0\n    },\n    {\n        \"hour\": 10,\n        \"second\": 0,\n        \"timezone\": \"America/New_York\",\n        \"currencyPairs\": [\n            {\n                \"isCross\": 0,\n                \"optionCutName\": \"NewYork10am\",\n                \"currencyPair\": \"AUDCAD\",\n                \"isNDF\": 0\n            },\n            {\n                \"isCross\": 0,\n                \"optionCutName\": \"NewYork10am\",\n                \"currencyPair\": \"AUDCHF\",\n                \"isNDF\": 0\n            },\n            {\n                \"isCross\": 0,\n                \"optionCutName\": \"NewYork10am\",\n                \"currencyPair\": \"AUDJPY\",\n                \"isNDF\": 0\n            },\n            {\n                \"isCross\": 0,\n                \"optionCutName\": \"NewYork10am\",\n                \"currencyPair\": \"AUDNZD\",\n                \"isNDF\": 0\n            },\n            {\n                \"isCross\": 0,\n                \"optionCutName\": \"NewYork10am\",\n                \"currencyPair\": \"AUDSGD\",\n                \"isNDF\": 0\n            },\n            {\n                \"isCross\": 0,\n                \"optionCutName\": \"NewYork10am\",\n                \"currencyPair\": \"AUDUSD\",\n                \"isNDF\": 0\n            },\n            {\n                \"isCross\": 0,\n                \"optionCutName\": \"NewYork10am\",\n                \"currencyPair\": \"CADCHF\",\n                \"isNDF\": 0\n            },\n            {\n                \"isCross\": 0,\n                \"optionCutName\": \"NewYork10am\",\n                \"currencyPair\": \"CADJPY\",\n                \"isNDF\": 0\n            },\n            {\n                \"isCross\": 0,\n                \"optionCutName\": \"NewYork10am\",\n                \"currencyPair\": \"CHFJPY\",\n                \"isNDF\": 0\n            },\n            {\n                \"isCross\": 0,\n                \"optionCutName\": \"NewYork10am\",\n                \"currencyPair\": \"EURAUD\",\n                \"isNDF\": 0\n            },\n            {\n                \"isCross\": 0,\n                \"optionCutName\": \"NewYork10am\",\n                \"currencyPair\": \"EURCAD\",\n                \"isNDF\": 0\n            },\n            {\n                \"isCross\": 0,\n                \"optionCutName\": \"NewYork10am\",\n                \"currencyPair\": \"EURCHF\",\n                \"isNDF\": 0\n            },\n            {\n                \"isCross\": 0,\n                \"optionCutName\": \"NewYork10am\",\n                \"currencyPair\": \"EURCZK\",\n                \"isNDF\": 0\n            },\n            {\n                \"isCross\": 0,\n                \"optionCutName\": \"NewYork10am\",\n                \"currencyPair\": \"EURGBP\",\n                \"isNDF\": 0\n            },\n            {\n                \"isCross\": 0,\n                \"optionCutName\": \"NewYork10am\",\n                \"currencyPair\": \"EURJPY\",\n                \"isNDF\": 0\n            },\n            {\n                \"isCross\": 0,\n                \"optionCutName\": \"NewYork10am\",\n                \"currencyPair\": \"EURNOK\",\n                \"isNDF\": 0\n            },\n            {\n                \"isCross\": 0,\n                \"optionCutName\": \"NewYork10am\",\n                \"currencyPair\": \"EURNZD\",\n                \"isNDF\": 0\n            },\n            {\n                \"isCross\": 0,\n                \"optionCutName\": \"NewYork10am\",\n                \"currencyPair\": \"EURSEK\",\n                \"isNDF\": 0\n            },\n            {\n                \"isCross\": 0,\n                \"optionCutName\": \"NewYork10am\",\n                \"currencyPair\": \"EURUSD\",\n                \"isNDF\": 0\n            },\n            {\n                \"isCross\": 0,\n                \"optionCutName\": \"NewYork10am\",\n                \"currencyPair\": \"EURZAR\",\n                \"isNDF\": 0\n            },\n            {\n                \"isCross\": 0,\n                \"optionCutName\": \"NewYork10am\",\n                \"currencyPair\": \"GBPAUD\",\n                \"isNDF\": 0\n            },\n            {\n                \"isCross\": 0,\n                \"optionCutName\": \"NewYork10am\",\n                \"currencyPair\": \"GBPCAD\",\n                \"isNDF\": 0\n            },\n            {\n                \"isCross\": 0,\n                \"optionCutName\": \"NewYork10am\",\n                \"currencyPair\": \"GBPCHF\",\n                \"isNDF\": 0\n            },\n            {\n                \"isCross\": 0,\n                \"optionCutName\": \"NewYork10am\",\n                \"currencyPair\": \"GBPJPY\",\n                \"isNDF\": 0\n            },\n            {\n                \"isCross\": 0,\n                \"optionCutName\": \"NewYork10am\",\n                \"currencyPair\": \"GBPUSD\",\n                \"isNDF\": 0\n            },\n            {\n                \"isCross\": 0,\n                \"optionCutName\": \"NewYork10am\",\n                \"currencyPair\": \"NOKSEK\",\n                \"isNDF\": 0\n            },\n            {\n                \"isCross\": 0,\n                \"optionCutName\": \"NewYork10am\",\n                \"currencyPair\": \"NZDJPY\",\n                \"isNDF\": 0\n            },\n            {\n                \"isCross\": 0,\n                \"optionCutName\": \"NewYork10am\",\n                \"currencyPair\": \"NZDUSD\",\n                \"isNDF\": 0\n            },\n            {\n                \"isCross\": 0,\n                \"optionCutName\": \"NewYork10am\",\n                \"currencyPair\": \"USDCAD\",\n                \"isNDF\": 0\n            },\n            {\n                \"isCross\": 0,\n                \"optionCutName\": \"NewYork10am\",\n                \"currencyPair\": \"USDCHF\",\n                \"isNDF\": 0\n            },\n            {\n                \"isCross\": 0,\n                \"optionCutName\": \"NewYork10am\",\n                \"currencyPair\": \"USDCNH\",\n                \"isNDF\": 0\n            },\n            {\n                \"isCross\": 0,\n                \"optionCutName\": \"NewYork10am\",\n                \"currencyPair\": \"USDCZK\",\n                \"isNDF\": 0\n            },\n            {\n                \"isCross\": 0,\n                \"optionCutName\": \"NewYork10am\",\n                \"currencyPair\": \"USDDKK\",\n                \"isNDF\": 0\n            },\n            {\n                \"isCross\": 0,\n                \"optionCutName\": \"NewYork10am\",\n                \"currencyPair\": \"USDHKD\",\n                \"isNDF\": 0\n            },\n            {\n                \"isCross\": 0,\n                \"optionCutName\": \"NewYork10am\",\n                \"currencyPair\": \"USDJPY\",\n                \"isNDF\": 0\n            },\n            {\n                \"isCross\": 0,\n                \"optionCutName\": \"NewYork10am\",\n                \"currencyPair\": \"USDNOK\",\n                \"isNDF\": 0\n            },\n            {\n                \"isCross\": 0,\n                \"optionCutName\": \"NewYork10am\",\n                \"currencyPair\": \"USDSEK\",\n                \"isNDF\": 0\n            },\n            {\n                \"isCross\": 0,\n                \"optionCutName\": \"NewYork10am\",\n                \"currencyPair\": \"USDSGD\",\n                \"isNDF\": 0\n            },\n            {\n                \"isCross\": 0,\n                \"optionCutName\": \"NewYork10am\",\n                \"currencyPair\": \"USDZAR\",\n                \"isNDF\": 0\n            }\n        ],\n        \"name\": \"NewYork10am\",\n        \"minute\": 0\n    },\n    {\n        \"hour\": 12,\n        \"second\": 0,\n        \"timezone\": \"America/New_York\",\n        \"currencyPairs\": [\n            {\n                \"isCross\": 0,\n                \"optionCutName\": \"NewYork1230pm\",\n                \"currencyPair\": \"EURMXN\",\n                \"isNDF\": 0\n            },\n            {\n                \"isCross\": 0,\n                \"optionCutName\": \"NewYork1230pm\",\n                \"currencyPair\": \"USDMXN\",\n                \"isNDF\": 0\n            }\n        ],\n        \"name\": \"NewYork1230pm\",\n        \"minute\": 30\n    },\n    {\n        \"hour\": 9,\n        \"second\": 0,\n        \"timezone\": \"America/New_York\",\n        \"currencyPairs\": [\n            {\n                \"isCross\": 0,\n                \"optionCutName\": \"NewYork930am\",\n                \"currencyPair\": \"XAGUSD\",\n                \"isNDF\": 0\n            },\n            {\n                \"isCross\": 0,\n                \"optionCutName\": \"NewYork930am\",\n                \"currencyPair\": \"XAUUSD\",\n                \"isNDF\": 0\n            }\n        ],\n        \"name\": \"NewYork930am\",\n        \"minute\": 30\n    },\n    {\n        \"hour\": 15,\n        \"second\": 0,\n        \"timezone\": \"Asia/Tokyo\",\n        \"currencyPairs\": [\n            {\n                \"isCross\": 0,\n                \"optionCutName\": \"Tokyo3pm\",\n                \"currencyPair\": \"AUDCAD\",\n                \"isNDF\": 0\n            },\n            {\n                \"isCross\": 0,\n                \"optionCutName\": \"Tokyo3pm\",\n                \"currencyPair\": \"AUDCHF\",\n                \"isNDF\": 0\n            },\n            {\n                \"isCross\": 0,\n                \"optionCutName\": \"Tokyo3pm\",\n                \"currencyPair\": \"AUDJPY\",\n                \"isNDF\": 0\n            },\n            {\n                \"isCross\": 0,\n                \"optionCutName\": \"Tokyo3pm\",\n                \"currencyPair\": \"AUDNZD\",\n                \"isNDF\": 0\n            },\n            {\n                \"isCross\": 0,\n                \"optionCutName\": \"Tokyo3pm\",\n                \"currencyPair\": \"AUDSGD\",\n                \"isNDF\": 0\n            },\n            {\n                \"isCross\": 0,\n                \"optionCutName\": \"Tokyo3pm\",\n                \"currencyPair\": \"AUDUSD\",\n                \"isNDF\": 0\n            },\n            {\n                \"isCross\": 0,\n                \"optionCutName\": \"Tokyo3pm\",\n                \"currencyPair\": \"CADCHF\",\n                \"isNDF\": 0\n            },\n            {\n                \"isCross\": 0,\n                \"optionCutName\": \"Tokyo3pm\",\n                \"currencyPair\": \"CADJPY\",\n                \"isNDF\": 0\n            },\n            {\n                \"isCross\": 0,\n                \"optionCutName\": \"Tokyo3pm\",\n                \"currencyPair\": \"CHFJPY\",\n                \"isNDF\": 0\n            },\n            {\n                \"isCross\": 0,\n                \"optionCutName\": \"Tokyo3pm\",\n                \"currencyPair\": \"EURAUD\",\n                \"isNDF\": 0\n            },\n            {\n                \"isCross\": 0,\n                \"optionCutName\": \"Tokyo3pm\",\n                \"currencyPair\": \"EURCAD\",\n                \"isNDF\": 0\n            },\n            {\n                \"isCross\": 0,\n                \"optionCutName\": \"Tokyo3pm\",\n                \"currencyPair\": \"EURCHF\",\n                \"isNDF\": 0\n            },\n            {\n                \"isCross\": 0,\n                \"optionCutName\": \"Tokyo3pm\",\n                \"currencyPair\": \"EURCZK\",\n                \"isNDF\": 0\n            },\n            {\n                \"isCross\": 0,\n                \"optionCutName\": \"Tokyo3pm\",\n                \"currencyPair\": \"EURGBP\",\n                \"isNDF\": 0\n            },\n            {\n                \"isCross\": 0,\n                \"optionCutName\": \"Tokyo3pm\",\n                \"currencyPair\": \"EURJPY\",\n                \"isNDF\": 0\n            },\n            {\n                \"isCross\": 0,\n                \"optionCutName\": \"Tokyo3pm\",\n                \"currencyPair\": \"EURNOK\",\n                \"isNDF\": 0\n            },\n            {\n                \"isCross\": 0,\n                \"optionCutName\": \"Tokyo3pm\",\n                \"currencyPair\": \"EURNZD\",\n                \"isNDF\": 0\n            },\n            {\n                \"isCross\": 0,\n                \"optionCutName\": \"Tokyo3pm\",\n                \"currencyPair\": \"EURSEK\",\n                \"isNDF\": 0\n            },\n            {\n                \"isCross\": 0,\n                \"optionCutName\": \"Tokyo3pm\",\n                \"currencyPair\": \"EURUSD\",\n                \"isNDF\": 0\n            },\n            {\n                \"isCross\": 0,\n                \"optionCutName\": \"Tokyo3pm\",\n                \"currencyPair\": \"GBPAUD\",\n                \"isNDF\": 0\n            },\n            {\n                \"isCross\": 0,\n                \"optionCutName\": \"Tokyo3pm\",\n                \"currencyPair\": \"GBPCAD\",\n                \"isNDF\": 0\n            },\n            {\n                \"isCross\": 0,\n                \"optionCutName\": \"Tokyo3pm\",\n                \"currencyPair\": \"GBPCHF\",\n                \"isNDF\": 0\n            },\n            {\n                \"isCross\": 0,\n                \"optionCutName\": \"Tokyo3pm\",\n                \"currencyPair\": \"GBPJPY\",\n                \"isNDF\": 0\n            },\n            {\n                \"isCross\": 0,\n                \"optionCutName\": \"Tokyo3pm\",\n                \"currencyPair\": \"GBPUSD\",\n                \"isNDF\": 0\n            },\n            {\n                \"isCross\": 0,\n                \"optionCutName\": \"Tokyo3pm\",\n                \"currencyPair\": \"NOKSEK\",\n                \"isNDF\": 0\n            },\n            {\n                \"isCross\": 0,\n                \"optionCutName\": \"Tokyo3pm\",\n                \"currencyPair\": \"NZDJPY\",\n                \"isNDF\": 0\n            },\n            {\n                \"isCross\": 0,\n                \"optionCutName\": \"Tokyo3pm\",\n                \"currencyPair\": \"NZDUSD\",\n                \"isNDF\": 0\n            },\n            {\n                \"isCross\": 0,\n                \"optionCutName\": \"Tokyo3pm\",\n                \"currencyPair\": \"USDCAD\",\n                \"isNDF\": 0\n            },\n            {\n                \"isCross\": 0,\n                \"optionCutName\": \"Tokyo3pm\",\n                \"currencyPair\": \"USDCHF\",\n                \"isNDF\": 0\n            },\n            {\n                \"isCross\": 0,\n                \"optionCutName\": \"Tokyo3pm\",\n                \"currencyPair\": \"USDCNH\",\n                \"isNDF\": 0\n            },\n            {\n                \"isCross\": 0,\n                \"optionCutName\": \"Tokyo3pm\",\n                \"currencyPair\": \"USDCZK\",\n                \"isNDF\": 0\n            },\n            {\n                \"isCross\": 0,\n                \"optionCutName\": \"Tokyo3pm\",\n                \"currencyPair\": \"USDDKK\",\n                \"isNDF\": 0\n            },\n            {\n                \"isCross\": 0,\n                \"optionCutName\": \"Tokyo3pm\",\n                \"currencyPair\": \"USDHKD\",\n                \"isNDF\": 0\n            },\n            {\n                \"isCross\": 0,\n                \"optionCutName\": \"Tokyo3pm\",\n                \"currencyPair\": \"USDJPY\",\n                \"isNDF\": 0\n            },\n            {\n                \"isCross\": 0,\n                \"optionCutName\": \"Tokyo3pm\",\n                \"currencyPair\": \"USDNOK\",\n                \"isNDF\": 0\n            },\n            {\n                \"isCross\": 0,\n                \"optionCutName\": \"Tokyo3pm\",\n                \"currencyPair\": \"USDSEK\",\n                \"isNDF\": 0\n            },\n            {\n                \"isCross\": 0,\n                \"optionCutName\": \"Tokyo3pm\",\n                \"currencyPair\": \"USDSGD\",\n                \"isNDF\": 0\n            },\n            {\n                \"isCross\": 0,\n                \"optionCutName\": \"Tokyo3pm\",\n                \"currencyPair\": \"USDZAR\",\n                \"isNDF\": 0\n            },\n            {\n                \"isCross\": 0,\n                \"optionCutName\": \"Tokyo3pm\",\n                \"currencyPair\": \"XAGUSD\",\n                \"isNDF\": 0\n            },\n            {\n                \"isCross\": 0,\n                \"optionCutName\": \"Tokyo3pm\",\n                \"currencyPair\": \"XAUUSD\",\n                \"isNDF\": 0\n            }\n        ],\n        \"name\": \"Tokyo3pm\",\n        \"minute\": 0\n    },\n    {\n        \"hour\": 11,\n        \"second\": 0,\n        \"timezone\": \"Europe/Warsaw\",\n        \"currencyPairs\": [\n            {\n                \"isCross\": 0,\n                \"optionCutName\": \"Warsaw11am\",\n                \"currencyPair\": \"EURPLN\",\n                \"isNDF\": 0\n            },\n            {\n                \"isCross\": 0,\n                \"optionCutName\": \"Warsaw11am\",\n                \"currencyPair\": \"USDPLN\",\n                \"isNDF\": 0\n            }\n        ],\n        \"name\": \"Warsaw11am\",\n        \"minute\": 0\n    }\n]"}],"_postman_id":"46308d68-6486-4759-b0fc-1398ac423189"},{"name":"businessdays","id":"8bf674af-e96e-4d15-a931-978fe4744ef2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{FIAT_API_ENDPOINT}}/general/reference/v1/businessdays","description":"<p>This endpoint makes an HTTP GET request to retrieve the business days reference data. The response of this request is documented below as a JSON schema.</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"type\": \"object\",\n  \"properties\": {\n    \"businessDays\": {\n      \"type\": \"array\",\n      \"items\": {\n        \"type\": \"string\",\n        \"format\": \"date\"\n      }\n    }\n  }\n}\n\n</code></pre>\n","auth":{"type":"oauth2","oauth2":{"refreshRequestParams":"<refresh-request-params>","password":"{{AUTH_PASSWORD}}","username":"{{AUTH_USERNAME}}","refreshTokenUrl":"<refresh-token-url>","accessTokenUrl":"<access-token-url>","grant_type":"<grant_type>","authUrl":"<auth-url>"},"isInherited":true,"source":{"_postman_id":"9ebb9928-d7bc-4f70-89b3-72c671248367","id":"9ebb9928-d7bc-4f70-89b3-72c671248367","name":"API","type":"folder"}},"urlObject":{"path":["general","reference","v1","businessdays"],"host":["{{FIAT_API_ENDPOINT}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"8bf674af-e96e-4d15-a931-978fe4744ef2"},{"name":"valuedate","id":"01ea7c99-1f87-4445-9c57-d8eeaa8d93c2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{FIAT_API_ENDPOINT}}/general/reference/v1/valuedate","auth":{"type":"oauth2","oauth2":{"refreshRequestParams":"<refresh-request-params>","password":"{{AUTH_PASSWORD}}","username":"{{AUTH_USERNAME}}","refreshTokenUrl":"<refresh-token-url>","accessTokenUrl":"<access-token-url>","grant_type":"<grant_type>","authUrl":"<auth-url>"},"isInherited":true,"source":{"_postman_id":"9ebb9928-d7bc-4f70-89b3-72c671248367","id":"9ebb9928-d7bc-4f70-89b3-72c671248367","name":"API","type":"folder"}},"urlObject":{"path":["general","reference","v1","valuedate"],"host":["{{FIAT_API_ENDPOINT}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"01ea7c99-1f87-4445-9c57-d8eeaa8d93c2"},{"name":"fwdpointsconversion","id":"4fe5dd09-6ba8-4bec-9c66-143e8aaece24","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{FIAT_API_ENDPOINT}}/general/reference/v1/fwdpointsconversion","auth":{"type":"oauth2","oauth2":{"refreshRequestParams":"<refresh-request-params>","password":"{{AUTH_PASSWORD}}","username":"{{AUTH_USERNAME}}","refreshTokenUrl":"<refresh-token-url>","accessTokenUrl":"<access-token-url>","grant_type":"<grant_type>","authUrl":"<auth-url>"},"isInherited":true,"source":{"_postman_id":"9ebb9928-d7bc-4f70-89b3-72c671248367","id":"9ebb9928-d7bc-4f70-89b3-72c671248367","name":"API","type":"folder"}},"urlObject":{"path":["general","reference","v1","fwdpointsconversion"],"host":["{{FIAT_API_ENDPOINT}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"4fe5dd09-6ba8-4bec-9c66-143e8aaece24"},{"name":"tenor","id":"ff500076-ba32-449c-aff5-eca9f0b8a7ca","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{FIAT_API_ENDPOINT}}/general/reference/v1/tenor","description":"<p><em><strong>NOTE that not all currencies support all tenors. NDF in particular do not support ON, TN, SPT, SN</strong></em></p>\n<p>ON | TN | SPT | SN | W1 | W2 | W3 | M1 | M2 | M3 | M4 | M5 | M6 | M7 | M8 | M9 | M10 | M11 | M12 | M15 | M18 | M21 | Y2 | Y3 | Y4 | Y5</p>\n<blockquote>\n<p>This API does not require authentication.</p>\n</blockquote>\n","auth":{"type":"oauth2","oauth2":{"refreshRequestParams":"<refresh-request-params>","password":"{{AUTH_PASSWORD}}","username":"{{AUTH_USERNAME}}","refreshTokenUrl":"<refresh-token-url>","accessTokenUrl":"<access-token-url>","grant_type":"<grant_type>","authUrl":"<auth-url>"},"isInherited":true,"source":{"_postman_id":"9ebb9928-d7bc-4f70-89b3-72c671248367","id":"9ebb9928-d7bc-4f70-89b3-72c671248367","name":"API","type":"folder"}},"urlObject":{"path":["general","reference","v1","tenor"],"host":["{{FIAT_API_ENDPOINT}}"],"query":[],"variable":[]}},"response":[{"id":"f5bf5301-1c3a-4f40-b4b9-af3162edfba9","name":"List of tenors","originalRequest":{"method":"GET","header":[],"url":"{{FIAT_API_ENDPOINT}}/general/reference/v1/tenor"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"openresty","enabled":true},{"key":"Date","value":"Tue, 20 May 2025 12:45:47 GMT","enabled":true},{"key":"Content-Type","value":"application/json; charset=utf-8","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Access-Control-Allow-Credentials","value":"true","enabled":true},{"key":"Access-Control-Allow-Credentials","value":"true","enabled":true},{"key":"Content-Length","value":"138","enabled":true}],"cookie":[],"responseTime":null,"body":"[\n    \"ON\",\n    \"TN\",\n    \"SPT\",\n    \"SN\",\n    \"W1\",\n    \"W2\",\n    \"W3\",\n    \"M1\",\n    \"M2\",\n    \"M3\",\n    \"M4\",\n    \"M5\",\n    \"M6\",\n    \"M7\",\n    \"M8\",\n    \"M9\",\n    \"M10\",\n    \"M11\",\n    \"M12\",\n    \"M15\",\n    \"M18\",\n    \"M21\",\n    \"Y2\",\n    \"Y3\",\n    \"Y4\",\n    \"Y5\"\n]"}],"_postman_id":"ff500076-ba32-449c-aff5-eca9f0b8a7ca"},{"name":"convert-time","id":"5e517978-3ee6-48f6-9de6-f3fd0e76d0a2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{FIAT_API_ENDPOINT}}/general/reference/v1/convert-time?input=","auth":{"type":"oauth2","oauth2":{"refreshRequestParams":"<refresh-request-params>","password":"{{AUTH_PASSWORD}}","username":"{{AUTH_USERNAME}}","refreshTokenUrl":"<refresh-token-url>","accessTokenUrl":"<access-token-url>","grant_type":"<grant_type>","authUrl":"<auth-url>"},"isInherited":true,"source":{"_postman_id":"9ebb9928-d7bc-4f70-89b3-72c671248367","id":"9ebb9928-d7bc-4f70-89b3-72c671248367","name":"API","type":"folder"}},"urlObject":{"path":["general","reference","v1","convert-time"],"host":["{{FIAT_API_ENDPOINT}}"],"query":[{"description":{"content":"<p>date-time in ISO8601, RFC822, RFC2822, RFC3339 and unixtimestamp ( e.g. 2025-05-20T14:31:06+03:00 )</p>\n","type":"text/plain"},"key":"input","value":""}],"variable":[]}},"response":[{"id":"d35ef85c-1930-403e-8207-1723c2217f5c","name":"ISO 8601","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{FIAT_API_ENDPOINT}}/general/reference/v1/convert-time?input=2025-05-20T14:31:06+07:00","host":["{{FIAT_API_ENDPOINT}}"],"path":["general","reference","v1","convert-time"],"query":[{"key":"input","value":"2025-05-20T14:31:06+07:00"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"openresty","enabled":true},{"key":"Date","value":"Tue, 20 May 2025 15:11:40 GMT","enabled":true},{"key":"Content-Type","value":"application/json","enabled":true},{"key":"Transfer-Encoding","value":"chunked","enabled":true},{"key":"Connection","value":"close","enabled":true},{"key":"Access-Control-Allow-Credentials","value":"true","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"utc_datetime\": \"2025-05-20 07:31:06\"\n}"},{"id":"5fab0960-d68c-48c2-b127-8a521fd788f2","name":"RFC 822, 1036, 1123, 2822","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{FIAT_API_ENDPOINT}}/general/reference/v1/convert-time?input=Tue, 20 May 2025 14:31:06 +0300","host":["{{FIAT_API_ENDPOINT}}"],"path":["general","reference","v1","convert-time"],"query":[{"key":"input","value":"Tue, 20 May 2025 14:31:06 +0300"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"openresty","enabled":true},{"key":"Date","value":"Tue, 20 May 2025 15:12:25 GMT","enabled":true},{"key":"Content-Type","value":"application/json","enabled":true},{"key":"Transfer-Encoding","value":"chunked","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Access-Control-Allow-Credentials","value":"true","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"utc_datetime\": \"2025-05-20 11:31:06\"\n}"},{"id":"3ced980f-d228-431e-8d3f-3d5f56d2ad66","name":"RFC 2822","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{FIAT_API_ENDPOINT}}/general/reference/v1/convert-time?input=Tuesday, 20-May-2025 14:31:06 UTC","host":["{{FIAT_API_ENDPOINT}}"],"path":["general","reference","v1","convert-time"],"query":[{"key":"input","value":"Tuesday, 20-May-2025 14:31:06 UTC"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"openresty","enabled":true},{"key":"Date","value":"Tue, 20 May 2025 15:12:55 GMT","enabled":true},{"key":"Content-Type","value":"application/json","enabled":true},{"key":"Transfer-Encoding","value":"chunked","enabled":true},{"key":"Connection","value":"close","enabled":true},{"key":"Access-Control-Allow-Credentials","value":"true","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"utc_datetime\": \"2025-05-20 14:31:06\"\n}"},{"id":"f9c52b05-8be2-44ad-8a64-3a7144b16b59","name":"RFC 3339","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{FIAT_API_ENDPOINT}}/general/reference/v1/convert-time?input=2025-05-20T14:31:06+03:00","host":["{{FIAT_API_ENDPOINT}}"],"path":["general","reference","v1","convert-time"],"query":[{"key":"input","value":"2025-05-20T14:31:06+03:00"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"openresty","enabled":true},{"key":"Date","value":"Tue, 20 May 2025 15:13:24 GMT","enabled":true},{"key":"Content-Type","value":"application/json","enabled":true},{"key":"Transfer-Encoding","value":"chunked","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Access-Control-Allow-Credentials","value":"true","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"utc_datetime\": \"2025-05-20 11:31:06\"\n}"}],"_postman_id":"5e517978-3ee6-48f6-9de6-f3fd0e76d0a2"},{"name":"market hours","event":[{"listen":"prerequest","script":{"exec":[""],"type":"text/javascript","packages":{},"id":"accb2ece-859c-4ddd-8bee-9a16d1f356ac"}}],"id":"8925e973-8e01-40bb-a8b4-fd0d4cdaa489","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"body":{"mode":"urlencoded","urlencoded":[]},"url":"{{FIAT_API_ENDPOINT}}/general/reference/v1/markethours","description":"<p>This API returns data about the status of market at the time of the request.</p>\n<p>The API will returns a single record indicating the open or closed status for FX market and metals market.</p>\n<p>The data is also available via a websocket.</p>\n","auth":{"type":"oauth2","oauth2":{"refreshRequestParams":"<refresh-request-params>","password":"{{AUTH_PASSWORD}}","username":"{{AUTH_USERNAME}}","refreshTokenUrl":"<refresh-token-url>","accessTokenUrl":"<access-token-url>","grant_type":"<grant_type>","authUrl":"<auth-url>"},"isInherited":true,"source":{"_postman_id":"9ebb9928-d7bc-4f70-89b3-72c671248367","id":"9ebb9928-d7bc-4f70-89b3-72c671248367","name":"API","type":"folder"}},"urlObject":{"path":["general","reference","v1","markethours"],"host":["{{FIAT_API_ENDPOINT}}"],"query":[],"variable":[]}},"response":[{"id":"1976ac0d-844b-4d97-9cdf-5ef3b13d3889","name":"Current market status","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer <your_access_token>","description":"String 'Bearer' followed by a space and your access token","type":"text","disabled":true}],"url":"{{FIAT_API_ENDPOINT}}/general/reference/v1/markethours"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"openresty","enabled":true},{"key":"Date","value":"Thu, 13 Jun 2024 08:58:33 GMT","enabled":true},{"key":"Content-Type","value":"application/json","enabled":true},{"key":"Content-Length","value":"85","enabled":true},{"key":"Last-Modified","value":"Thu, 13 Jun 2024 08:58:33 GMT","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Etag","value":"0","enabled":true},{"key":"Vary","value":"If-None-Match, If-Modified-Since","enabled":true},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains","enabled":true},{"key":"X-Frame-Options","value":"DENY","enabled":true},{"key":"X-Content-Type-Options","value":"nosniff","enabled":true},{"key":"Access-Control-Allow-Credentials","value":"true","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"marketStatus\": {\n        \"fx\": \"open\",\n        \"metals\": \"open\"\n    },\n    \"timestamp\": \"2024-06-13T08:58:33.604Z\"\n}"}],"_postman_id":"8925e973-8e01-40bb-a8b4-fd0d4cdaa489"}],"id":"6337d060-9553-4282-944b-21e2ab3cade6","event":[{"listen":"prerequest","script":{"type":"text/javascript","exec":[""],"id":"acf3c68d-2db1-411a-bd33-21c252e6d3e1"}},{"listen":"test","script":{"type":"text/javascript","exec":[""],"id":"eb106f4f-30c3-4081-b9b9-dc27130e961c"}}],"_postman_id":"6337d060-9553-4282-944b-21e2ab3cade6","description":"","auth":{"type":"oauth2","oauth2":{"refreshRequestParams":"<refresh-request-params>","password":"{{AUTH_PASSWORD}}","username":"{{AUTH_USERNAME}}","refreshTokenUrl":"<refresh-token-url>","accessTokenUrl":"<access-token-url>","grant_type":"<grant_type>","authUrl":"<auth-url>"},"isInherited":true,"source":{"_postman_id":"9ebb9928-d7bc-4f70-89b3-72c671248367","id":"9ebb9928-d7bc-4f70-89b3-72c671248367","name":"API","type":"folder"}}}],"id":"72f9a422-cf12-4b0e-a5d1-fab85d5d77dc","description":"<p>These reference APIs do not require authentication. They return data about our other API, such as available pairs, tenors, and optioncuts.</p>\n","event":[{"listen":"prerequest","script":{"type":"text/javascript","exec":[""],"id":"d56bba49-e16c-414d-8b29-c897a872ee6a"}},{"listen":"test","script":{"type":"text/javascript","exec":[""],"id":"c25e5cdb-7af7-483a-bbfe-25efb8959bab"}}],"_postman_id":"72f9a422-cf12-4b0e-a5d1-fab85d5d77dc","auth":{"type":"oauth2","oauth2":{"refreshRequestParams":"<refresh-request-params>","password":"{{AUTH_PASSWORD}}","username":"{{AUTH_USERNAME}}","refreshTokenUrl":"<refresh-token-url>","accessTokenUrl":"<access-token-url>","grant_type":"<grant_type>","authUrl":"<auth-url>"},"isInherited":true,"source":{"_postman_id":"9ebb9928-d7bc-4f70-89b3-72c671248367","id":"9ebb9928-d7bc-4f70-89b3-72c671248367","name":"API","type":"folder"}}}],"id":"8b7230df-5e50-4788-9966-d1999a12eb2c","event":[{"listen":"prerequest","script":{"type":"text/javascript","exec":[""],"id":"f53cc5d0-c931-4dda-bcb0-09bcf834337f"}},{"listen":"test","script":{"type":"text/javascript","exec":[""],"id":"601c0e02-a535-4af6-8333-1b271f83b5e0"}}],"_postman_id":"8b7230df-5e50-4788-9966-d1999a12eb2c","description":"","auth":{"type":"oauth2","oauth2":{"refreshRequestParams":"<refresh-request-params>","password":"{{AUTH_PASSWORD}}","username":"{{AUTH_USERNAME}}","refreshTokenUrl":"<refresh-token-url>","accessTokenUrl":"<access-token-url>","grant_type":"<grant_type>","authUrl":"<auth-url>"},"isInherited":true,"source":{"_postman_id":"9ebb9928-d7bc-4f70-89b3-72c671248367","id":"9ebb9928-d7bc-4f70-89b3-72c671248367","name":"API","type":"folder"}}},{"name":"historicbulk","item":[{"name":"midrate","item":[{"name":"v1","item":[{"name":"ohlc","id":"ff521c83-1072-480d-b962-7f645e1b719c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{FIAT_API_ENDPOINT}}/historicbulk/midrate/v1/ohlc?currencyPair=<currency pair>&tenor=<tenor>&startTimestamp=<start timestamp>&endTimestamp=<end timestamp>&period=<period>","description":"<p>This API will cause OHLC data to be generated and made available to the user on sftp.newchangefx.com</p>\n","auth":{"type":"oauth2","oauth2":{"refreshRequestParams":"<refresh-request-params>","password":"{{AUTH_PASSWORD}}","username":"{{AUTH_USERNAME}}","refreshTokenUrl":"<refresh-token-url>","accessTokenUrl":"<access-token-url>","grant_type":"<grant_type>","authUrl":"<auth-url>"},"isInherited":true,"source":{"_postman_id":"9ebb9928-d7bc-4f70-89b3-72c671248367","id":"9ebb9928-d7bc-4f70-89b3-72c671248367","name":"API","type":"folder"}},"urlObject":{"path":["historicbulk","midrate","v1","ohlc"],"host":["{{FIAT_API_ENDPOINT}}"],"query":[{"description":{"content":"<p>Required currency pair e.g. GBPUSD</p>\n","type":"text/plain"},"key":"currencyPair","value":"<currency pair>"},{"description":{"content":"<p>Required tenor e.g. \"SPT\", \"ON\", \"SN\", \"W1\", \"M1\", ...</p>\n","type":"text/plain"},"key":"tenor","value":"<tenor>"},{"description":{"content":"<p>Required start timestamp in format yyyy-mm-dd hh:mm:ss.000 (ms are optional)</p>\n","type":"text/plain"},"key":"startTimestamp","value":"<start timestamp>"},{"description":{"content":"<p>Required end timestamp in format yyyy-mm-dd hh:mm:ss.000 (ms are optional)</p>\n","type":"text/plain"},"key":"endTimestamp","value":"<end timestamp>"},{"description":{"content":"<p>period of ohlc in seconds</p>\n","type":"text/plain"},"key":"period","value":"<period>"}],"variable":[]}},"response":[],"_postman_id":"ff521c83-1072-480d-b962-7f645e1b719c"},{"name":"series","id":"8ff4e82f-cd4f-4a42-9543-fb5e882f2edf","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{FIAT_API_ENDPOINT}}/historicbulk/midrate/v1/series?currencyPair=<currency pair>&tenor=<tenor>&startTimestamp=<start timestamp>&endTimestamp=<end timestamp>","description":"<p>This API will extract all selected rates and make them available to the user on sftp.newchangefx.com</p>\n","auth":{"type":"oauth2","oauth2":{"refreshRequestParams":"<refresh-request-params>","password":"{{AUTH_PASSWORD}}","username":"{{AUTH_USERNAME}}","refreshTokenUrl":"<refresh-token-url>","accessTokenUrl":"<access-token-url>","grant_type":"<grant_type>","authUrl":"<auth-url>"},"isInherited":true,"source":{"_postman_id":"9ebb9928-d7bc-4f70-89b3-72c671248367","id":"9ebb9928-d7bc-4f70-89b3-72c671248367","name":"API","type":"folder"}},"urlObject":{"path":["historicbulk","midrate","v1","series"],"host":["{{FIAT_API_ENDPOINT}}"],"query":[{"description":{"content":"<p>Required currency pair e.g. GBPUSD</p>\n","type":"text/plain"},"key":"currencyPair","value":"<currency pair>"},{"description":{"content":"<p>Required tenor e.g. \"SPT\", \"ON\", \"SN\", \"W1\", \"M1\", ...</p>\n","type":"text/plain"},"key":"tenor","value":"<tenor>"},{"description":{"content":"<p>Required start timestamp in format yyyy-mm-dd hh:mm:ss.000 (ms are optional)</p>\n","type":"text/plain"},"key":"startTimestamp","value":"<start timestamp>"},{"description":{"content":"<p>Required end timestamp in format yyyy-mm-dd hh:mm:ss.000 (ms are optional)</p>\n","type":"text/plain"},"key":"endTimestamp","value":"<end timestamp>"}],"variable":[]}},"response":[],"_postman_id":"8ff4e82f-cd4f-4a42-9543-fb5e882f2edf"}],"id":"b145115b-40e6-4b7b-9266-94f2f40a2c0b","_postman_id":"b145115b-40e6-4b7b-9266-94f2f40a2c0b","description":"","auth":{"type":"oauth2","oauth2":{"refreshRequestParams":"<refresh-request-params>","password":"{{AUTH_PASSWORD}}","username":"{{AUTH_USERNAME}}","refreshTokenUrl":"<refresh-token-url>","accessTokenUrl":"<access-token-url>","grant_type":"<grant_type>","authUrl":"<auth-url>"},"isInherited":true,"source":{"_postman_id":"9ebb9928-d7bc-4f70-89b3-72c671248367","id":"9ebb9928-d7bc-4f70-89b3-72c671248367","name":"API","type":"folder"}}}],"id":"7dc6f1c0-f629-4f69-bc28-c9db9f6accdf","_postman_id":"7dc6f1c0-f629-4f69-bc28-c9db9f6accdf","description":"","auth":{"type":"oauth2","oauth2":{"refreshRequestParams":"<refresh-request-params>","password":"{{AUTH_PASSWORD}}","username":"{{AUTH_USERNAME}}","refreshTokenUrl":"<refresh-token-url>","accessTokenUrl":"<access-token-url>","grant_type":"<grant_type>","authUrl":"<auth-url>"},"isInherited":true,"source":{"_postman_id":"9ebb9928-d7bc-4f70-89b3-72c671248367","id":"9ebb9928-d7bc-4f70-89b3-72c671248367","name":"API","type":"folder"}}}],"id":"39322d2f-424c-4e2c-ae1b-9d9403ac7361","description":"<p>These APIs return historic data in very large volumes (up to 30Gb per request, subject to authorization). The API will deliver the requested data to a folder on the NCFX SFTP site. The API will return a success/fail message and a link to the files.</p>\n<p>If your user has been enabled for SFTP access, you will be able to access the SFTP site using the same credential as your API call was made with. Data can be downloaded over SFTP or HTTP.</p>\n<p>Data is returned in CSV format and compressed with GZIP.</p>\n<p>Spot data is available from January 2016. Forward data is available from August 2017.</p>\n","_postman_id":"39322d2f-424c-4e2c-ae1b-9d9403ac7361","auth":{"type":"oauth2","oauth2":{"refreshRequestParams":"<refresh-request-params>","password":"{{AUTH_PASSWORD}}","username":"{{AUTH_USERNAME}}","refreshTokenUrl":"<refresh-token-url>","accessTokenUrl":"<access-token-url>","grant_type":"<grant_type>","authUrl":"<auth-url>"},"isInherited":true,"source":{"_postman_id":"9ebb9928-d7bc-4f70-89b3-72c671248367","id":"9ebb9928-d7bc-4f70-89b3-72c671248367","name":"API","type":"folder"}}}],"id":"08b47895-7a0a-4991-a873-b3d6d84b3e7c","description":"<p>This folder contains NCFX fiat APIs</p>\n<p>The APIs in this section will return rates that are decorated with additional information. The key for this information is:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>ix</td>\n<td>isCrossed. This is true (or 1) when the rate has been calculated by crossing through primary markets.</td>\n</tr>\n<tr>\n<td>in</td>\n<td>isNDF. This is true (or 1) when the rate is for a non-deliverable forward.</td>\n</tr>\n<tr>\n<td>io</td>\n<td>isOutright. This is true (or 1) when the rate is an ouright. If false (or 0) the rate is forward points which are shown to convention. Please see the currencypairs reference API (in the fiat/general folders) for definition of the multiplication factor for convention (this is the forwardPointConversion).</td>\n</tr>\n<tr>\n<td>ic</td>\n<td>isCalculated. This is true (or 1) when the rate has been interpolated forward from the last rate of the proceeding day (generally at 5PM New York). <strong>PLEASE NOTE THAT THIS IS DUE TO BE DEPRECATED</strong></td>\n</tr>\n</tbody>\n</table>\n</div>","event":[{"listen":"prerequest","script":{"type":"text/javascript","exec":[""],"id":"21d8914b-2bde-4ca7-a0f0-17ac4962dede"}},{"listen":"test","script":{"type":"text/javascript","exec":[""],"id":"2a7eb69a-cf5e-429a-9730-6d254ac95286"}}],"_postman_id":"08b47895-7a0a-4991-a873-b3d6d84b3e7c","auth":{"type":"oauth2","oauth2":{"refreshRequestParams":"<refresh-request-params>","password":"{{AUTH_PASSWORD}}","username":"{{AUTH_USERNAME}}","refreshTokenUrl":"<refresh-token-url>","accessTokenUrl":"<access-token-url>","grant_type":"<grant_type>","authUrl":"<auth-url>"},"isInherited":true,"source":{"_postman_id":"9ebb9928-d7bc-4f70-89b3-72c671248367","id":"9ebb9928-d7bc-4f70-89b3-72c671248367","name":"API","type":"folder"}}},{"name":"CRYPTO","item":[{"name":"live","item":[{"name":"midrate","item":[{"name":"v1","item":[{"name":"rates","id":"3b5990de-1881-4975-8e4c-5877f905559b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{CRYPTO_API_ENDPOINT}}/live/midrate/v1/rates?pairs=<required pairs>","description":"<p>This API returns live midrates for crypto pairs. For a list of available pairs please use the reference API (in general).</p>\n<p>Multiple pairs can be requested in a single call, by using a comma separated list. e.g.</p>\n<p><a href=\"https://cryptofeed.api.dev.newchangefx.com/rates\">{{CRYPTO_API_ENDPOINT}}/live/midrate/v1/rates</a><a href=\"https://cryptofeed.api.dev.ncfxtest.co.uk/live/v1/spot/midrate/rates?pairs=ETH-USD,BTC-USD\">?pairs=ETH-USD,BTC-USD</a></p>\n<p>Tokens must be submitted in a standard format; base and term currencies must be separated by a hyphen, e.g. ‘ETH-USD’</p>\n<p>This API requires authentication, please see instructions in the API\\Authentication folder for how to add the additional necessary header to your request. If you would like to use this collection in Postman to request the data, please follow the instructions in the introduction to this documentation.</p>\n","auth":{"type":"oauth2","oauth2":{"refreshRequestParams":"<refresh-request-params>","password":"{{AUTH_PASSWORD}}","username":"{{AUTH_USERNAME}}","refreshTokenUrl":"<refresh-token-url>","accessTokenUrl":"<access-token-url>","grant_type":"<grant_type>","authUrl":"<auth-url>"},"isInherited":true,"source":{"_postman_id":"9ebb9928-d7bc-4f70-89b3-72c671248367","id":"9ebb9928-d7bc-4f70-89b3-72c671248367","name":"API","type":"folder"}},"urlObject":{"path":["live","midrate","v1","rates"],"host":["{{CRYPTO_API_ENDPOINT}}"],"query":[{"description":{"content":"<p>Comma separated list of pairs e.g. ETH-USD,BTC-USD</p>\n","type":"text/plain"},"key":"pairs","value":"<required pairs>"}],"variable":[]}},"response":[{"id":"100c73d3-8339-4d79-84ac-5a6ee4d9a9e9","name":"BTC-USD, ETH-USD rate","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{CRYPTO_API_ENDPOINT}}/live/midrate/v1/rates?pairs=BTC-USD,ETH-USD","host":["{{CRYPTO_API_ENDPOINT}}"],"path":["live","midrate","v1","rates"],"query":[{"key":"pairs","value":"BTC-USD,ETH-USD","description":"Comma separated list of pairs e.g. ETH-USD,BTC-USD"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 01 Feb 2024 09:46:07 GMT","enabled":true},{"key":"Content-Type","value":"application/json; charset=utf-8","enabled":true},{"key":"Content-Length","value":"144","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Server","value":"openresty","enabled":true},{"key":"X-Powered-By","value":"Express","enabled":true},{"key":"ETag","value":"W/\"90-3AH5x+LV1PY7/wPOsNAAw172Xl8\"","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"rates\": {\n        \"BTC-USD\": {\n            \"rate\": 42129.99,\n            \"timestamp\": \"2024-02-01 09:46:07.500\"\n        },\n        \"ETH-USD\": {\n            \"rate\": 2264.2174,\n            \"timestamp\": \"2024-02-01 09:46:07.500\"\n        }\n    }\n}"}],"_postman_id":"3b5990de-1881-4975-8e4c-5877f905559b"}],"id":"4f9eb5eb-aee0-406a-9d94-3455d99b1d5d","_postman_id":"4f9eb5eb-aee0-406a-9d94-3455d99b1d5d","description":"","auth":{"type":"oauth2","oauth2":{"refreshRequestParams":"<refresh-request-params>","password":"{{AUTH_PASSWORD}}","username":"{{AUTH_USERNAME}}","refreshTokenUrl":"<refresh-token-url>","accessTokenUrl":"<access-token-url>","grant_type":"<grant_type>","authUrl":"<auth-url>"},"isInherited":true,"source":{"_postman_id":"9ebb9928-d7bc-4f70-89b3-72c671248367","id":"9ebb9928-d7bc-4f70-89b3-72c671248367","name":"API","type":"folder"}}}],"id":"7ac378d4-870b-46b4-ad65-433cbb9c02b2","_postman_id":"7ac378d4-870b-46b4-ad65-433cbb9c02b2","description":"","auth":{"type":"oauth2","oauth2":{"refreshRequestParams":"<refresh-request-params>","password":"{{AUTH_PASSWORD}}","username":"{{AUTH_USERNAME}}","refreshTokenUrl":"<refresh-token-url>","accessTokenUrl":"<access-token-url>","grant_type":"<grant_type>","authUrl":"<auth-url>"},"isInherited":true,"source":{"_postman_id":"9ebb9928-d7bc-4f70-89b3-72c671248367","id":"9ebb9928-d7bc-4f70-89b3-72c671248367","name":"API","type":"folder"}}}],"id":"75810a66-3089-4d23-8a5c-776b8c6da39e","description":"<p>These APIs return live data (i.e. prevailing rate now).</p>\n","_postman_id":"75810a66-3089-4d23-8a5c-776b8c6da39e","auth":{"type":"oauth2","oauth2":{"refreshRequestParams":"<refresh-request-params>","password":"{{AUTH_PASSWORD}}","username":"{{AUTH_USERNAME}}","refreshTokenUrl":"<refresh-token-url>","accessTokenUrl":"<access-token-url>","grant_type":"<grant_type>","authUrl":"<auth-url>"},"isInherited":true,"source":{"_postman_id":"9ebb9928-d7bc-4f70-89b3-72c671248367","id":"9ebb9928-d7bc-4f70-89b3-72c671248367","name":"API","type":"folder"}}},{"name":"general","item":[{"name":"available pairs","id":"2947b010-40ce-4fce-8a0c-551d57e586de","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{CRYPTO_API_ENDPOINT}}/live/v1/spot/midrate/pairs","description":"<p>This API returns all available crypto token pairs.</p>\n","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"36bf8999-dea6-4875-b327-961674ae75ee","id":"36bf8999-dea6-4875-b327-961674ae75ee","name":"general","type":"folder"}},"urlObject":{"path":["live","v1","spot","midrate","pairs"],"host":["{{CRYPTO_API_ENDPOINT}}"],"query":[],"variable":[]}},"response":[{"id":"dd2e7172-c52c-4f3f-a3c2-c3ac83d65a45","name":"List of available pairs","originalRequest":{"method":"GET","header":[],"url":"https://cryptofeed.api.newchangefx.com/live/v1/spot/midrate/pairs"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 30 Jan 2024 16:34:01 GMT","enabled":true},{"key":"Content-Type","value":"application/json;charset=UTF-8","enabled":true},{"key":"Content-Length","value":"3668","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Server","value":"openresty","enabled":true},{"key":"Apigw-Requestid","value":"SXK3CjOsrPEEPeA=","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"availablePairs\": [\n        \"1INCH/USD\",\n        \"AAVE/BTC\",\n        \"AAVE/ETH\",\n        \"AAVE/USD\",\n        \"ADA/BNB\",\n        \"ADA/BTC\",\n        \"ADA/USD\",\n        \"AKRO/USD\",\n        \"ALCX/ETH\",\n        \"ALCX/USD\",\n        \"ALGO/BNB\",\n        \"ALGO/BTC\",\n        \"ALGO/USD\",\n        \"ALPACA/USD\",\n        \"ALPHA/ETH\",\n        \"ALPHA/USD\",\n        \"AMPL/ETH\",\n        \"AMPL/USD\",\n        \"ANKR/USD\",\n        \"ANT/ETH\",\n        \"ANT/USD\",\n        \"APE/BTC\",\n        \"APE/ETH\",\n        \"APE/USD\",\n        \"API3/USD\",\n        \"APT/USD\",\n        \"ARB/USD\",\n        \"ARPA/USD\",\n        \"ASTR/USD\",\n        \"ATOM/BNB\",\n        \"ATOM/BTC\",\n        \"ATOM/USD\",\n        \"AVAX/BNB\",\n        \"AVAX/BTC\",\n        \"AVAX/USD\",\n        \"AXS/USD\",\n        \"BADGER/ETH\",\n        \"BADGER/USD\",\n        \"BAL/ETH\",\n        \"BAL/USD\",\n        \"BAND/BNB\",\n        \"BAND/ETH\",\n        \"BAND/USD\",\n        \"BAT/ETH\",\n        \"BAT/USD\",\n        \"BCH/BNB\",\n        \"BCH/BTC\",\n        \"BCH/USD\",\n        \"BETH/USD\",\n        \"BIFI/BNB\",\n        \"BIFI/USD\",\n        \"BLUR/USD\",\n        \"BNB/BTC\",\n        \"BNB/ETH\",\n        \"BNB/USD\",\n        \"BONK/USD\",\n        \"BOO/USD\",\n        \"BORING/BNB\",\n        \"BORING/USD\",\n        \"BSW/USD\",\n        \"BTC/BNB\",\n        \"BTC/ETH\",\n        \"BTC/USD\",\n        \"BTT/USD\",\n        \"BUSD/BNB\",\n        \"BUSD/BTC\",\n        \"BUSD/ETH\",\n        \"BUSD/USD\",\n        \"C98/USD\",\n        \"CAKE/USD\",\n        \"CEL/ETH\",\n        \"CEL/USD\",\n        \"CELO/ETH\",\n        \"CELO/USD\",\n        \"CFX/USD\",\n        \"CHR/USD\",\n        \"CHZ/USD\",\n        \"COMP/ETH\",\n        \"COMP/USD\",\n        \"CREAM/ETH\",\n        \"CREAM/USD\",\n        \"CRO/ETH\",\n        \"CRO/USD\",\n        \"CRV/ETH\",\n        \"CRV/USD\",\n        \"CVX/ETH\",\n        \"CVX/USD\",\n        \"DAI/BNB\",\n        \"DAI/BTC\",\n        \"DAI/ETH\",\n        \"DAI/USD\",\n        \"DASH/USD\",\n        \"DEGO/USD\",\n        \"DF/USD\",\n        \"DFI/USD\",\n        \"DODO/BNB\",\n        \"DODO/USD\",\n        \"DOGE/BNB\",\n        \"DOGE/BTC\",\n        \"DOGE/USD\",\n        \"DOT/BNB\",\n        \"DOT/BTC\",\n        \"DOT/USD\",\n        \"DYDX/USD\",\n        \"ENJ/ETH\",\n        \"ENJ/USD\",\n        \"ENS/USD\",\n        \"EOS/BNB\",\n        \"EOS/USD\",\n        \"ETC/BNB\",\n        \"ETC/BTC\",\n        \"ETC/USD\",\n        \"ETH/BNB\",\n        \"ETH/BTC\",\n        \"ETH/USD\",\n        \"EUL/USD\",\n        \"EURC/USD\",\n        \"EURT/USD\",\n        \"FARM/ETH\",\n        \"FARM/USD\",\n        \"FIL/BTC\",\n        \"FIL/ETH\",\n        \"FIL/USD\",\n        \"FIS/USD\",\n        \"FLOKI/USD\",\n        \"FLOW/BNB\",\n        \"FLOW/BTC\",\n        \"FLOW/USD\",\n        \"FOR/USD\",\n        \"FORTH/USD\",\n        \"FTM/BNB\",\n        \"FTM/BTC\",\n        \"FTM/ETH\",\n        \"FTM/USD\",\n        \"FTT/ETH\",\n        \"FTT/USD\",\n        \"FXS/USD\",\n        \"GHST/ETH\",\n        \"GHST/USD\",\n        \"GLMR/USD\",\n        \"GMT/USD\",\n        \"GMX/USD\",\n        \"GNO/USD\",\n        \"GNS/USD\",\n        \"GRT/ETH\",\n        \"GRT/USD\",\n        \"GTC/ETH\",\n        \"GTC/USD\",\n        \"HBAR/USD\",\n        \"HIGH/USD\",\n        \"HNT/USD\",\n        \"HT/USD\",\n        \"ICP/BTC\",\n        \"ICP/ETH\",\n        \"ICP/USD\",\n        \"ILV/ETH\",\n        \"ILV/USD\",\n        \"IMX/USD\",\n        \"IOTX/USD\",\n        \"JOE/USD\",\n        \"JTO/USD\",\n        \"KAVA/USD\",\n        \"KDA/USD\",\n        \"KNC/ETH\",\n        \"KNC/USD\",\n        \"KP3R/ETH\",\n        \"KP3R/USD\",\n        \"KSM/USD\",\n        \"LDO/ETH\",\n        \"LDO/USD\",\n        \"LINA/USD\",\n        \"LINK/BNB\",\n        \"LINK/BTC\",\n        \"LINK/ETH\",\n        \"LINK/FTM\",\n        \"LINK/MATIC\",\n        \"LINK/USD\",\n        \"LIT/USD\",\n        \"LQTY/USD\",\n        \"LRC/ETH\",\n        \"LRC/USD\",\n        \"LTC/BNB\",\n        \"LTC/BTC\",\n        \"LTC/USD\",\n        \"MAGIC/USD\",\n        \"MANA/ETH\",\n        \"MANA/USD\",\n        \"MASK/USD\",\n        \"MATIC/BNB\",\n        \"MATIC/BTC\",\n        \"MATIC/USD\",\n        \"MAV/USD\",\n        \"MBOX/USD\",\n        \"MEME/USD\",\n        \"METIS/USD\",\n        \"MKR/ETH\",\n        \"MKR/USD\",\n        \"MLN/ETH\",\n        \"MLN/USD\",\n        \"MNT/USD\",\n        \"MOVR/USD\",\n        \"NEAR/BNB\",\n        \"NEAR/BTC\",\n        \"NEAR/USD\",\n        \"NEXO/USD\",\n        \"NMR/ETH\",\n        \"NMR/USD\",\n        \"NULS/USD\",\n        \"OCEAN/ETH\",\n        \"OCEAN/USD\",\n        \"OGN/ETH\",\n        \"OGN/USD\",\n        \"OKB/USD\",\n        \"OMG/ETH\",\n        \"OMG/USD\",\n        \"ONE/USD\",\n        \"ONG/USD\",\n        \"ONT/USD\",\n        \"OP/USD\",\n        \"ORDI/USD\",\n        \"ORN/ETH\",\n        \"ORN/USD\",\n        \"OSMO/USD\",\n        \"OXT/USD\",\n        \"PAX/ETH\",\n        \"PAX/USD\",\n        \"PAXG/ETH\",\n        \"PAXG/USD\",\n        \"PENDLE/USD\",\n        \"PEPE/USD\",\n        \"PERP/ETH\",\n        \"PERP/USD\",\n        \"PLA/USD\",\n        \"PYTH/USD\",\n        \"PYUSD/USD\",\n        \"QI/USD\",\n        \"QUICK/ETH\",\n        \"QUICK/USD\",\n        \"QUICKNEW/ETH\",\n        \"QUICKNEW/USD\",\n        \"RAI/ETH\",\n        \"RAI/USD\",\n        \"RBN/USD\",\n        \"RDNT/USD\",\n        \"REEF/USD\",\n        \"REN/ETH\",\n        \"REN/USD\",\n        \"REP/ETH\",\n        \"REP/USD\",\n        \"RIF/USD\",\n        \"RLC/ETH\",\n        \"RLC/USD\",\n        \"RNDR/USD\",\n        \"ROSE/USD\",\n        \"RPL/USD\",\n        \"RSR/USD\",\n        \"RUNE/ETH\",\n        \"RUNE/USD\",\n        \"SAND/BTC\",\n        \"SAND/USD\",\n        \"SEI/USD\",\n        \"SHIB/ETH\",\n        \"SHIB/USD\",\n        \"SNX/ETH\",\n        \"SNX/USD\",\n        \"SOL/BNB\",\n        \"SOL/BTC\",\n        \"SOL/USD\",\n        \"SRM/ETH\",\n        \"SRM/USD\",\n        \"STETH/ETH\",\n        \"STETH/USD\",\n        \"STG/USD\",\n        \"STORJ/USD\",\n        \"STX/USD\",\n        \"SUI/USD\",\n        \"SUSHI/USD\",\n        \"SWAP/ETH\",\n        \"SWAP/USD\",\n        \"SXP/USD\",\n        \"TIA/USD\",\n        \"TOMI/USD\",\n        \"TRB/USD\",\n        \"TRIBE/ETH\",\n        \"TRIBE/USD\",\n        \"TRU/USD\",\n        \"TRX/BNB\",\n        \"TRX/BTC\",\n        \"TRX/USD\",\n        \"TUSD/ETH\",\n        \"TUSD/USD\",\n        \"TWT/BNB\",\n        \"TWT/USD\",\n        \"UMA/ETH\",\n        \"UMA/USD\",\n        \"UNI/BNB\",\n        \"UNI/ETH\",\n        \"UNI/USD\",\n        \"USDC/BNB\",\n        \"USDC/BTC\",\n        \"USDC/ETH\",\n        \"USDC/USD\",\n        \"USDP/ETH\",\n        \"USDP/USD\",\n        \"USDT/BNB\",\n        \"USDT/BTC\",\n        \"USDT/ETH\",\n        \"USDT/USD\",\n        \"UST/ETH\",\n        \"UST/USD\",\n        \"USTC/USD\",\n        \"WBETH/USD\",\n        \"WBTC/BNB\",\n        \"WBTC/BTC\",\n        \"WBTC/ETH\",\n        \"WBTC/USD\",\n        \"WIN/USD\",\n        \"WING/USD\",\n        \"WLD/USD\",\n        \"WNXM/ETH\",\n        \"WNXM/USD\",\n        \"WOO/ETH\",\n        \"WOO/USD\",\n        \"XAVA/USD\",\n        \"XCN/USD\",\n        \"XLM/BNB\",\n        \"XLM/BTC\",\n        \"XLM/USD\",\n        \"XMR/BNB\",\n        \"XMR/BTC\",\n        \"XMR/USD\",\n        \"XRP/BNB\",\n        \"XRP/BTC\",\n        \"XRP/USD\",\n        \"XTZ/BNB\",\n        \"XTZ/USD\",\n        \"XVS/USD\",\n        \"YFI/BNB\",\n        \"YFI/ETH\",\n        \"YFI/USD\",\n        \"YFII/USD\",\n        \"ZEC/USD\",\n        \"ZIL/USD\",\n        \"ZRX/ETH\",\n        \"ZRX/USD\"\n    ]\n}"}],"_postman_id":"2947b010-40ce-4fce-8a0c-551d57e586de"}],"id":"36bf8999-dea6-4875-b327-961674ae75ee","description":"<p>This folder contains reference information and APIs relating to crypto data.</p>\n","auth":{"type":"noauth","isInherited":false},"event":[{"listen":"prerequest","script":{"type":"text/javascript","exec":[""],"id":"cd1f2473-05c8-4a0e-9192-58eb7142f422"}},{"listen":"test","script":{"type":"text/javascript","exec":[""],"id":"a4354a50-4ab4-417f-ae20-a0f85598362c"}}],"_postman_id":"36bf8999-dea6-4875-b327-961674ae75ee"}],"id":"38296e2a-c984-4663-a085-c5fff9e0cd34","description":"<p>This folder contains all crypto APIs</p>\n","_postman_id":"38296e2a-c984-4663-a085-c5fff9e0cd34","auth":{"type":"oauth2","oauth2":{"refreshRequestParams":"<refresh-request-params>","password":"{{AUTH_PASSWORD}}","username":"{{AUTH_USERNAME}}","refreshTokenUrl":"<refresh-token-url>","accessTokenUrl":"<access-token-url>","grant_type":"<grant_type>","authUrl":"<auth-url>"},"isInherited":true,"source":{"_postman_id":"9ebb9928-d7bc-4f70-89b3-72c671248367","id":"9ebb9928-d7bc-4f70-89b3-72c671248367","name":"API","type":"folder"}}}],"id":"9ebb9928-d7bc-4f70-89b3-72c671248367","description":"<p>This folder contains the documentation and example implementations of all NCFX RESTful API.</p>\n","auth":{"type":"oauth2","oauth2":{"refreshRequestParams":"<refresh-request-params>","password":"{{AUTH_PASSWORD}}","username":"{{AUTH_USERNAME}}","refreshTokenUrl":"<refresh-token-url>","accessTokenUrl":"<access-token-url>","grant_type":"<grant_type>","authUrl":"<auth-url>"},"isInherited":false},"event":[{"listen":"prerequest","script":{"type":"text/javascript","exec":[""],"id":"9059b37e-2e40-42d5-99c2-cc4043303390"}},{"listen":"test","script":{"type":"text/javascript","exec":[""],"id":"71dee4bb-80c6-49ef-b3a4-015ba4438d9f"}}],"_postman_id":"9ebb9928-d7bc-4f70-89b3-72c671248367"},{"name":"FIX (Financial Information eXchange)","item":[{"name":"Message overview","item":[],"id":"f982f7cb-f777-453e-8a8a-3cc025ef587d","description":"<h2 id=\"fix-message-types\">FIX message types</h2>\n<p>NCFX uses the following FIX messages:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Message type</strong></th>\n<th><strong>Message name</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>A</td>\n<td>Logon</td>\n<td>Logon to the service using the username and password provided by NCFX</td>\n</tr>\n<tr>\n<td>5</td>\n<td>Logout</td>\n<td>Used by client or server to initiate logout</td>\n</tr>\n<tr>\n<td>0</td>\n<td>Heartbeat</td>\n<td>Heartbeat message as per FIX 4.4</td>\n</tr>\n<tr>\n<td>V</td>\n<td>MarketDataRequest</td>\n<td>Request a subset of the entire feed by specifying criteria</td>\n</tr>\n<tr>\n<td>W</td>\n<td>MarketDataSnapshotFullRefresh</td>\n<td>Instruments meeting the specified criteria will be sent in MarketDataSnapshotFullRefresh messages</td>\n</tr>\n<tr>\n<td>Y</td>\n<td>MarketDataRequestReject</td>\n<td>Requests that have been rejected and the reason</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"fix-message-header\">FIX message header</h3>\n<p>NCFX uses the standard FIX message header, and sends the following tags (Note that the SenderCompId and TargetCompID are reversed for messages sent by the customer):</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Tag</strong></th>\n<th><strong>Name</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n<th><strong>Required</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>8</td>\n<td>BeginStrting</td>\n<td>String</td>\n<td>Value: FIX 4.4</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>9</td>\n<td>BodyLength</td>\n<td>Int</td>\n<td>Standard FIX body length</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>35</td>\n<td>MsgType</td>\n<td>String</td>\n<td>Message Type (the value of this is shown for each message type below)</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>49</td>\n<td>SenderCompID</td>\n<td>String</td>\n<td>Sending firm. This will be your SenderCompID as agreed with NCFX</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>56</td>\n<td>TargetCompID</td>\n<td>String</td>\n<td>Receiving firm. NCFX use this to specify the data service. Valid values (for services in brackets) are:  <br /><code>ncfx.forwardcurve</code> (forward curve)  <br /><code>ncfx.optioncut</code> (option cut)  <br /><code>ncfx.cryptofeed</code> (crypto)  <br /><code>ncfx.midrate</code> (generic midrates)  <br /><code>ncfx.midrate.spt</code> (spot midrates  <br /><code>ncfx.midrate.fwd</code> (forwards midrates)  <br /><code>ncfx.bank365</code>  <br />(bank365 individual value dates)  <br /><code>ncfx.bank365curve</code>  <br />(bank365 interpolated curve)</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>34</td>\n<td>MsgSeqNum</td>\n<td>Int</td>\n<td>Message Sequence Number</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>52</td>\n<td>SendingTime</td>\n<td>Date</td>\n<td>Sending time in UTC</td>\n<td>Yes</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"fix-message-trailer\">FIX Message Trailer</h3>\n<p>NCFX use the standard FIX trailer, and expects the following tags:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Tag</strong></th>\n<th><strong>Name</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n<th><strong>Required</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>10</td>\n<td>Checksum</td>\n<td>Int</td>\n<td>Standard FIX.4.4 checksum</td>\n<td>Yes</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"noauth","isInherited":false},"event":[{"listen":"prerequest","script":{"type":"text/javascript","exec":[""],"id":"bb5aa3b6-e43c-4cd8-b877-f301f0a3f865"}},{"listen":"test","script":{"type":"text/javascript","exec":[""],"id":"de02c346-5c51-4b9e-8fb8-fa8351d32726"}}],"_postman_id":"f982f7cb-f777-453e-8a8a-3cc025ef587d"},{"name":"FIX session common messages","item":[],"id":"421af7d7-e8db-4055-b8b1-f2d0b9508681","description":"<p>The following message types initiate, control, and terminate FIX sessions.</p>\n<h3 id=\"logon-request-a\">Logon Request (A)</h3>\n<p>A logon request in the following format is required to initiate a session</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Standard Header</strong></th>\n<th><strong>Required</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>MsgType (Tag 35) = A</td>\n<td>Yes</td>\n</tr>\n</tbody>\n</table>\n</div><div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Tag</strong></th>\n<th><strong>Name</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description/Value</strong></th>\n<th><strong>Required</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>98</td>\n<td>EncryptMethod</td>\n<td>Int</td>\n<td>Value: 0 (None)</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>108</td>\n<td>HeartBtInt</td>\n<td>Int</td>\n<td>Value: 60</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>553</td>\n<td>Username</td>\n<td>String</td>\n<td>Username provided by NCFX</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>554</td>\n<td>Password</td>\n<td>String</td>\n<td>Password provided by NCFX</td>\n<td>Yes</td>\n</tr>\n</tbody>\n</table>\n</div><div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Standard Trailer</strong></th>\n<th><strong>Required</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td></td>\n<td>Yes</td>\n</tr>\n</tbody>\n</table>\n</div><h4 id=\"example\">Example</h4>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>8=FIX.4.4|9=0000115|35=A|49=ncfx|56=ncfx.optioncut|34=1|52=20231014-10:20:28.692|98=0|108=60|141=Y|553=Username|554=Password|10=117|\n\n</code></pre><h3 id=\"logon-response-a\">Logon Response (A)</h3>\n<p>Response to successful logon request</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Standard Header</strong></th>\n<th><strong>Required</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>MsgType (Tag 35) = A</td>\n<td>Yes</td>\n</tr>\n</tbody>\n</table>\n</div><div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Tag</strong></th>\n<th><strong>Name</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description/Value</strong></th>\n<th><strong>Required</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>98</td>\n<td>EncryptMethod</td>\n<td>Int</td>\n<td>Value: 0 (None)</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>108</td>\n<td>HeartBtInt</td>\n<td>Int</td>\n<td>Value: 60</td>\n<td>Yes</td>\n</tr>\n</tbody>\n</table>\n</div><div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Standard Trailer</strong></th>\n<th><strong>Required</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td></td>\n<td>Yes</td>\n</tr>\n</tbody>\n</table>\n</div><h4 id=\"example-1\">Example</h4>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>8=FIX.4.4|9=0000079|35=A|49=ncfx.optioncut|56=ncfx|34=1|52=20231014-10:20:29.038|98=0|108=60|141=Y|10=141|\n\n</code></pre><h3 id=\"logout-response-5\">Logout Response (5)</h3>\n<p>Response to a failed logon or notification of session logout</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Standard Header</strong></th>\n<th>Required</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>MsgType (Tag 35) = 5</td>\n<td>Yes</td>\n</tr>\n</tbody>\n</table>\n</div><div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Standard Trailer</strong></th>\n<th><strong>Required</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td></td>\n<td>Yes</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"heartbeat-0\">Heartbeat (0)</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Standard Header</strong></th>\n<th>Required</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>MsgType (Tag 35) = 0</td>\n<td>Yes</td>\n</tr>\n</tbody>\n</table>\n</div><div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Standard Trailer</strong></th>\n<th><strong>Required</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td></td>\n<td>Yes</td>\n</tr>\n</tbody>\n</table>\n</div><h4 id=\"example-2\">Example</h4>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>8=FIX.4.4|9=0000098|35=0|49=ncfx.optioncut|56=ncfx|34=1534|52=20231207-09:17:14.484|112=Thu, 07 Dec 2023 09:17:14 GMT|10=124|\n\n</code></pre><h3 id=\"market-data-request-reject-y\">Market data request reject (Y)</h3>\n<p>Response to incorrect data request.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Standard Header</strong></th>\n<th><strong>Required</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>MsgType (Tag 35) = Y</td>\n<td>Yes</td>\n</tr>\n</tbody>\n</table>\n</div><div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Tag</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description/  <br />Value</th>\n<th>Required</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>262</td>\n<td>MDReqID</td>\n<td>String</td>\n<td>Unique identifier for Market Data Request</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>281</td>\n<td>MDReqRejReason</td>\n<td>Int</td>\n<td>Reject reason  <br />0 = unknown symbol</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>58</td>\n<td>Text</td>\n<td>String</td>\n<td>Description of rejection reason</td>\n<td>Yes</td>\n</tr>\n</tbody>\n</table>\n</div><div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Standard Trailer</strong></th>\n<th><strong>Required</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td></td>\n<td>Yes</td>\n</tr>\n</tbody>\n</table>\n</div><h4 id=\"example-3\">Example</h4>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>8=FIX.4.4|9=0000213|35=Y|49=ncfx.midrate|56=ncfx|34=2|52=20240220-15:57:56.833|262=#GBPUSD#|281=0|58=Invalid SecurityID &lt;48&gt; field format: GBPUSD_X_Y. Expected regular expression: /^[A-Z]{6}_[DN]_[OC]$/ (symbol_deliverability_route)|10=050|\n\n</code></pre>","auth":{"type":"noauth","isInherited":false},"event":[{"listen":"prerequest","script":{"type":"text/javascript","exec":[""],"id":"46de23ce-4db3-4a38-9367-5d4b54d66ac3"}},{"listen":"test","script":{"type":"text/javascript","exec":[""],"id":"c7f09f50-30c4-4bc0-b827-37897b58ead8"}}],"_postman_id":"421af7d7-e8db-4055-b8b1-f2d0b9508681"},{"name":"Crypto Market Data Messages","item":[],"id":"08c182cb-7134-4809-9f49-c588d7da88d7","description":"<p>The NCFX Crypto service provides crypto asset mid-rate values based on immediate settlement.</p>\n<p>Note that asset names are separated by a hyphen e.g. BTC-USD</p>\n<p>Ensure that TargetCompID (tag 56 in the FIX header) is set to <code>ncfx.cryptofeed</code> to connect to this service.</p>\n<h3 id=\"market-data-requests-v\">Market Data Requests (V)</h3>\n<p>The Market Data Request (V) message is sent to subscribe to forward curves.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Standard Header</strong></th>\n<th><strong>Required</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>MsgType (Tag 35) = V</td>\n<td>Yes</td>\n</tr>\n</tbody>\n</table>\n</div><div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Tag</strong></th>\n<th><strong>Name</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description/Value</strong></th>\n<th><strong>Required</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>262</td>\n<td>MDReqID</td>\n<td>String</td>\n<td>Unique identifier for Market Data Request</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>263</td>\n<td>SubscriptionRequestType</td>\n<td>Char</td>\n<td>Subscription Request Type Valid values:  <br />  <br />Value: 1</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>264</td>\n<td>MarketDepth</td>\n<td>Int</td>\n<td>Value: 0</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>146</td>\n<td>NoRelatedSym</td>\n<td>NuminGroup</td>\n<td>Specifies the number of repeating Symbols  <br />  <br />Value: 1</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>55</td>\n<td>Symbol</td>\n<td>String</td>\n<td>Market Data Entry Currency symbol:  <br />e.g. BTC-USD</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>461</td>\n<td>CFICode</td>\n<td>String</td>\n<td>Type of security using ISO 10962 standard  <br />  <br />Value: ITM</td>\n<td>Yes</td>\n</tr>\n</tbody>\n</table>\n</div><div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Standard Trailer</strong></th>\n<th><strong>Required</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td></td>\n<td>Yes</td>\n</tr>\n</tbody>\n</table>\n</div><h4 id=\"example\">Example</h4>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>8=FIX.4.4|9=0000114|35=V|49=ncfx|56=ncfx.cryptofeed|34=67|52=20231003-14:12:43.688|262=#ETH-USD#|263=1|264=1|146=1|55=ETH-USD|461=ITM|10=129|\n\n</code></pre><h3 id=\"market-data-snapshot-full-refresh-w\">Market Data Snapshot Full Refresh (W)</h3>\n<p>After making a successful Market Data Request (V), the subscriber will receive responses in the form of Market Data Snapshot Full Refresh (W).</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Standard Header</strong></th>\n<th><strong>Required</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>MsgType (Tag 35) = W</td>\n<td>Yes</td>\n</tr>\n</tbody>\n</table>\n</div><div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Tag</strong></th>\n<th><strong>Name</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description/Value</strong></th>\n<th><strong>Required</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>262</td>\n<td>MDReqID</td>\n<td>String</td>\n<td>Unique GUID identifier</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>55</td>\n<td>Symbol</td>\n<td>String</td>\n<td>Symbol of the crypto asset</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>461</td>\n<td>CFICode</td>\n<td>String</td>\n<td>Value: ITM</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>268</td>\n<td>NoMDEntries</td>\n<td>NuminGroup</td>\n<td>Specifies the number of repeating entries</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>269</td>\n<td>MDEntryType</td>\n<td>Char</td>\n<td>Value:  <br />  <br />H (mid)  <br />  <br />0 (bid)  <br />  <br />1 (offer</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>270</td>\n<td>MDEntryPx</td>\n<td>Price</td>\n<td>Price</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>768</td>\n<td>NoTrdRegTimestamps</td>\n<td>NuminGroup</td>\n<td>Specifies the number of repeating entries  <br />  <br />Value: 1</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>769</td>\n<td>TrdRegTimestamp</td>\n<td>Date</td>\n<td>Timestamp in UTC</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>770</td>\n<td>TrdRegTimestampType</td>\n<td>Int</td>\n<td>Value: 4  <br />  <br />(Rate calculation completion time)</td>\n<td>Yes</td>\n</tr>\n</tbody>\n</table>\n</div><div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Standard Trailer</strong></th>\n<th><strong>Required</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td></td>\n<td>Yes</td>\n</tr>\n</tbody>\n</table>\n</div><h4 id=\"example-1\">Example</h4>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>8=FIX.4.4|9=0000293|35=W|49=ncfx.cryptofeed|56=ncfx|34=572821|52=20230908-08:30:00.037|262=c7207151-cdac-4f2a-a45d-07107377bfdd|55=ETH-USD|461=ITM|268=3|269=0|270=1644.0123|768=1|769=20230908-08:30:00.004|770=4|269=1|768=1|769=20230908-08:30:00.004|770=4|269=H|270=1644.0861|768=1|769=20230908-08:30:00.004|770=4|10=166|\n\n</code></pre>","auth":{"type":"noauth","isInherited":false},"event":[{"listen":"prerequest","script":{"type":"text/javascript","exec":[""],"id":"cac740ff-9433-48c8-a407-452a59323dcf"}},{"listen":"test","script":{"type":"text/javascript","exec":[""],"id":"37acc721-b0b6-4f2d-baa2-adab9d9b3e4f"}}],"_postman_id":"08c182cb-7134-4809-9f49-c588d7da88d7"},{"name":"Option Cut Market Data Messages","item":[],"id":"f188cafa-3a28-45b7-8d00-05feb5184b3f","description":"<p>The NCFX Option Cut fix session will provide the Option Cut data for all cuts that the customer is entitled to. A single V record is required to start the subscription.</p>\n<p>Individual W records will be sent for each rate in every Option Cut. The timestamp for each rate is the timestamp of the benchmark rate that was selected for the cut. This is in general within 50ms of the cut time. Option cut messages are sent within 250ms of the cut time.</p>\n<p>On connection the last cut value for every cut that the customer is entitled to will be sent, followed by updates.</p>\n<p>Ensure that TargetCompID (tag 56 in the FIX header) is set to ncfx.optioncut to connect to this service.</p>\n<h4 id=\"fix-market-data-messages--option-cut\">FIX Market Data messages – Option Cut</h4>\n<p>The NCFX Option Cut fix session will provide the Option Cut data for all cuts that the customer is entitled to. A single V record is required to start the subscription.</p>\n<p>Individual W records will be sent for each rate in every Option Cut. The timestamp for each rate is the timestamp of the benchmark rate that was selected for the cut. This is in general within 50ms of the cut time. Option cut messages are sent within 250ms of the cut time.</p>\n<p>On connection the last cut value for every cut that the customer is entitled to will be sent, followed by updates.</p>\n<p>Ensure that TargetCompID (tag 56 in the FIX header) is set to NCFX-OC to connect to this service.</p>\n<h4 id=\"market-data-requests-v\">Market Data Requests (V)</h4>\n<p>The Market Data Request (V) message is sent to subscribe to Market Data. In Option Cut sessions, customers will be subscribed to all Cuts that they are entitled to.</p>\n<p>NCFX also product <strong>Dummy Cuts</strong> 1 hour before their equivalent Option Cut. Dummy Cuts contain the same pairs as will be expected in their respective Option Cuts. Dummy Cuts can be requested in the subscription V message in an optional tag (ommission of this tag will result in no Dummy Cuts being delivered). Customers that request Dummy Cuts should take care as Dummy Cut information may be delivered at the same time as Option Cuts.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Standard Header</strong></th>\n<th><strong>Required</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>MsgType (Tag 35) = V</td>\n<td>Yes</td>\n</tr>\n</tbody>\n</table>\n</div><div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Tag</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description/  <br />Value</th>\n<th>Required</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>262</td>\n<td>MDReqID</td>\n<td>String</td>\n<td>Unique identifier for Market Data Request</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>263</td>\n<td>SubscriptionRequestType</td>\n<td>Char</td>\n<td>Subscription Request Type Valid values:  <br />  <br />Value: 1</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>264</td>\n<td>MarketDepth</td>\n<td>Int</td>\n<td>Value: 0</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>146</td>\n<td>NoRelatedSym</td>\n<td>NuminGroup</td>\n<td>Specifies the number of repeating Symbols  <br />  <br />Value: 1</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>461</td>\n<td>CFICode</td>\n<td>String</td>\n<td>Type of security using ISO10962 standard  <br />  <br />Value: O</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>6219</td>\n<td>DummyCutsEnabled</td>\n<td>Char (Boolean)</td>\n<td>Dummy Cuts enabled Valid values:  <br />  <br />Value: Y  <br />Value: N</td>\n<td>No</td>\n</tr>\n</tbody>\n</table>\n</div><div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Standard Trailer</strong></th>\n<th><strong>Required</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td></td>\n<td>Yes</td>\n</tr>\n</tbody>\n</table>\n</div><h4 id=\"example\">Example</h4>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>8=FIX.4.4|9=0000109|35=V|49=ncfx|56=ncfx.optioncut|34=2|52=20240628-13:39:17.273|262=#OPTION-CUT#|263=1|264=1|146=1|6219=Y|461=O|10=042|\n\n</code></pre><h4 id=\"market-data-snapshot-full-refresh-w\">Market Data Snapshot Full Refresh (W)</h4>\n<p>After making a successful Market Data Request (V), the subscriber will receive responses in the form of Market Data Snapshot Full Refresh (W).</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Standard Header</strong></th>\n<th><strong>Required</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>MsgType (Tag 35) = W</td>\n<td>Yes</td>\n</tr>\n</tbody>\n</table>\n</div><div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Tag</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description/  <br />Value</th>\n<th>Required</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>262</td>\n<td>MDReqID</td>\n<td>String</td>\n<td>Unique identifier for Market Data Request</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>55</td>\n<td>Symbol</td>\n<td>String</td>\n<td>Currency symbol of the specific currency in the cut e.g.  <br />  <br />GBPUSD</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>461</td>\n<td>CFICode</td>\n<td>String</td>\n<td>Value: O</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>268</td>\n<td>NoMDEntries</td>\n<td>NuminGroup</td>\n<td>Specifies the number of repeating Symbols  <br />  <br />Value: 1</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>269</td>\n<td>MDEntryType</td>\n<td>Char</td>\n<td>Value: H</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>270</td>\n<td>MDEntryPx</td>\n<td>Price</td>\n<td>Price of the option cut</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>768</td>\n<td>NoTrdRegTimestamps</td>\n<td>NuminGroup</td>\n<td>Specifies the number of repeating entries  <br />  <br />Value: 1</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>769</td>\n<td>TrdRegTimestamp</td>\n<td>Date</td>\n<td>Timestamp of the benchmark rate that was selected for the cut</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>770</td>\n<td>TrdRegTimestampType</td>\n<td>Int</td>\n<td>Value: 2  <br />  <br />(Benchmark Rate Timestamp)</td>\n<td>Yes</td>\n</tr>\n</tbody>\n</table>\n</div><div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Standard Trailer</strong></th>\n<th><strong>Required</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td></td>\n<td>Yes</td>\n</tr>\n</tbody>\n</table>\n</div><h4 id=\"example-1\">Example</h4>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>8=FIX.4.4|9=0000158|35=W|49=ncfx.optioncut|56=ncfx|34=203|52=20240723-13:00:00.180|262=#OPTION-CUT#|55=AUDCHF|461=O|268=1|269=H|270=0.59028|768=1|769=20240723-12:59:59.976|770=2|10=003|\n\n</code></pre>","_postman_id":"f188cafa-3a28-45b7-8d00-05feb5184b3f","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"de998acf-a68b-4a64-bbdc-067b91154736","id":"de998acf-a68b-4a64-bbdc-067b91154736","name":"FIX (Financial Information eXchange)","type":"folder"}}},{"name":"Forwards365 Market Data Messages","item":[],"id":"f4af0c10-41ed-4ae2-b7b9-e43202ae73f9","description":"<p>The NCFX Forward365 fix session will provide forward rates for each day in the next year (including on days when trading is not possible). A V record is required to start the subscription for each currency (i.e. it is not possible to request multiple curves with a single V record)</p>\n<p>A single W record will be sent for each curve containing all value dates for the next year. Tag 769 (TrdRegTimestamp) is the time that the curve was created. Tag 272 is the value date of each specific rate in the curve. Tag 63 (tenor) will only be sent if the specific value date is a standard tenor.</p>\n<p>If optional tag 6221 is set to 'Y' in the V message, then tag 6217 will be included in the repeating group of the W message if the value date for that data falls on a tenor. Tag 6217 will state the tenor name. (Note that NCFX use the convention where the letter precedes the number in week, month and year tenors).</p>\n<p>Ensure that TargetCompID (tag 56 in the FIX header) is set to ncfx.forwardcurve to connect to this service.</p>\n<p>This service supports both <strong>strict</strong> and <strong>permissive</strong> definitions of the requested instrument according to the SecurityID &lt;48&gt;.</p>\n<p>If a strict SecurityID &lt;48&gt; definition is used, the currency pair must be specified in the SecurityID &lt;48&gt; to include the type and route (see the introduction to this documentation for further information), e.g. 48=GBPUSD_D_O, where GBPUSD is the currency pair, <strong>type</strong> is <strong>D</strong> or <strong>N</strong>, and the <strong>route</strong> is <strong>O</strong> or <strong>C</strong>. In this case, the SecurityIDSource &lt;22&gt; is compulsory and should be set to 999 (this informs a strict definition is being used). Please note that the Symbol &lt;55&gt; should be included as normal (mandatory in the FIX specification) in the market data request message (V). For example, 55=GBPUSD (Symbol &lt;55&gt; should match the currency pair symbol in the SecurityID &lt;48&gt;, i.e. GBPUSD should correspond to GBPUSD_D_O).</p>\n<p>If a permissive SecurityID &lt;48&gt; definition is used, NCFX will deduce the relevant SecurityID &lt;48&gt; using the currency pair defined in Symbol &lt;55&gt; (e.g. 55 = GBPUSD). In this case, the SecurityID &lt;48&gt; and SecurityIDSource &lt;22&gt; should not be included in the market data request message (V).</p>\n<p>When sending Market Data Request messages to unsubscribe from instruments, ensure that the SubscriptionRequestType &lt;263&gt; is set to 2, where 2 indicates a request to unsubscribe market data.</p>\n<h4 id=\"market-data-requests-v\">Market Data Requests (V)</h4>\n<p>The Market Data Request (V) message is sent to subscribe to forward curves.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Standard Header</strong></th>\n<th><strong>Required</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>MsgType (Tag 35) = V</td>\n<td>Yes</td>\n</tr>\n</tbody>\n</table>\n</div><div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Tag</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description/  <br />Value</th>\n<th>Required</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>262</td>\n<td>MDReqID</td>\n<td>String</td>\n<td>Unique identifier for Market Data Request</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>263</td>\n<td>SubscriptionRequestType</td>\n<td>Char</td>\n<td>Subscription Request Type Valid values:  <br />1 = subscribe  <br />2= unsubscribe</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>264</td>\n<td>MarketDepth</td>\n<td>Int</td>\n<td>Value: 0</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>146</td>\n<td>NoRelatedSym</td>\n<td>NuminGroup</td>\n<td>Specifies the number of repeating Symbols  <br />  <br />Value: 1</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>55</td>\n<td>Symbol</td>\n<td>String</td>\n<td>Market Data Entry Currency symbol:  <br />  <br />e.g. EURUSD</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>48</td>\n<td>SecurityID</td>\n<td>String</td>\n<td>Strict definition of instrument  <br />e.g. EURUSD_D_O</td>\n<td>No</td>\n</tr>\n<tr>\n<td>22</td>\n<td>SecurityIDSource</td>\n<td>int</td>\n<td>999</td>\n<td>Conditional (Required if tag 48 is populated)</td>\n</tr>\n<tr>\n<td>6221</td>\n<td>TenorEnabled</td>\n<td>Char (Boolean)</td>\n<td>Specifies if the returned data should be decorated with tenor in tag 6217. Default if omitted is N.  <br />  <br />Value: Y  <br />Value: N</td>\n<td>No</td>\n</tr>\n<tr>\n<td>461</td>\n<td>CFICode</td>\n<td>String</td>\n<td>Type of security using ISO10962 standard  <br />  <br />Value: JF</td>\n<td>Yes</td>\n</tr>\n</tbody>\n</table>\n</div><div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Standard Trailer</strong></th>\n<th><strong>Required</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td></td>\n<td>Yes</td>\n</tr>\n</tbody>\n</table>\n</div><h4 id=\"example\">Example</h4>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>8=FIX.4.4|9=0000112|35=V|49=ncfx|56=ncfx.forwardcurve|34=3|52=20250212-16:47:42.819|262=#EURUSD#|263=1|264=1|6221=N|146=1|55=EURUSD|461=JF|10=148|\n\n</code></pre><h4 id=\"market-data-snapshot-full-refresh-w\">Market Data Snapshot Full Refresh (W)</h4>\n<p>After making a successful Market Data Request (V), the subscriber will receive responses in the form of Market Data Snapshot Full Refresh (W).</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Standard Header</strong></th>\n<th><strong>Required</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>MsgType (Tag 35) = W</td>\n<td>Yes</td>\n</tr>\n</tbody>\n</table>\n</div><div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Tag</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description/  <br />Value</th>\n<th>Required</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>262</td>\n<td>MDReqID</td>\n<td>String</td>\n<td>Unique identifier for Market Data Request</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>55</td>\n<td>Symbol</td>\n<td>String</td>\n<td>Currency pair of the curve  <br />e.g. EURUSD</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>48</td>\n<td>SecurityID</td>\n<td>String</td>\n<td>Strict definition of instrument  <br />e.g. EURUSD_D_O</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>22</td>\n<td>SecurityIDSource</td>\n<td>int</td>\n<td>999</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>461</td>\n<td>CFICode</td>\n<td>String</td>\n<td>Value: JF</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>268</td>\n<td>NoMDEntries</td>\n<td>NuminGroup</td>\n<td>Specifies the number of repeating Symbols</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>269</td>\n<td>MDEntryType</td>\n<td>Char</td>\n<td>Value: H</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>272</td>\n<td>MDEntryDate</td>\n<td>Date</td>\n<td>value date</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>1027</td>\n<td>MDEntryForwardPoints</td>\n<td>PriceOffset</td>\n<td>Forward points  <br />This tag is populated for currency pairs whose data is provided by convention as Points.</td>\n<td>Conditional</td>\n</tr>\n<tr>\n<td>270</td>\n<td>MDEntryPx</td>\n<td>Price</td>\n<td>All-in rate  <br />This tag is populated for currency pairs whose data is provided by convention as Outrights.</td>\n<td>Conditional</td>\n</tr>\n<tr>\n<td>6217</td>\n<td>Tenor</td>\n<td>String</td>\n<td>Tenor (if value date is a pillar date)  <br />  <br />(e.g. SPT, W1, M12)</td>\n<td>No</td>\n</tr>\n<tr>\n<td>768</td>\n<td>NoTrdRegTimestamps</td>\n<td>NuminGroup</td>\n<td>Specifies the number of repeating entries  <br />  <br />Value: 1</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>769</td>\n<td>TrdRegTimestamp</td>\n<td>Date</td>\n<td>Timestamp in UTC</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>770</td>\n<td>TrdRegTimestampType</td>\n<td>Int</td>\n<td>Value: 4  <br />  <br />(Rate calculation completion time)</td>\n<td>Yes</td>\n</tr>\n</tbody>\n</table>\n</div><div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Standard Trailer</strong></th>\n<th><strong>Required</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td></td>\n<td>Yes</td>\n</tr>\n</tbody>\n</table>\n</div><h4 id=\"example-1\">Example</h4>\n<p>Example without tenor decoration. (Please note that the W message contains all the rates for the 1 year period, and is therefore ~ 28KB.)</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>8=FIX.4.4|9=0012212|35=W|49=ncfx.forwardcurve|56=ncfx|34=2|52=20250212-16:47:44.119|262=#AUDUSD#|55=AUDUSD|48=AUDUSD_D_O|22=999|461=JF|268=371|269=H|272=20250212|1027=-0.05810|269=H|272=20250213|1027=-0.01310|269=H|272=20250214|1027=0.00000|269=H|272=20250215|1027=0.01050|269=H|272=20250216|1027=0.02110|269=H|272=20250217|1027=0.03160|269=H|272=20250218|1027=0.04220|269=H|272=20250219|1027=0.06020|269=H|272=20250220|1027=0.09510|269=H|272=20250221|1027=0.13000|269=H|272=20250222|1027=0.16860|269=H|272=20250223|1027=0.20720|269=H|272=20250224|1027=0.24580|269=H|272=20250225|1027=0.28430|269=H|272=20250226|1027=0.32290|269=H|272=20250227|1027=0.36150|269=H|272=20250228|1027=0.40000|269=H|272=20250301|1027=0.43860|269=H|272=20250302|1027=0.47720|269=H|272=20250303|1027=0.51580|269=H|272=20250304|1027=0.55430|269=H|272=20250305|1027=0.59290|269=H|272=20250306|1027=0.63150|269=H|272=20250307|1027=0.67000|269=H|272=20250308|1027=0.71110|269=H|272=20250309|1027=0.75220|269=H|272=20250310|1027=0.79330|269=H|272=20250311|1027=0.83430|269=H|272=20250312|1027=0.87540|269=H|272=20250313|1027=0.91640|269=H|272=20250314|1027=0.95750|269=H|272=20250315|1027=0.99460|269=H|272=20250316|1027=1.03180|269=H|272=20250317|1027=1.06900|269=H|272=20250318|1027=1.10610|269=H|272=20250319|1027=1.14330|269=H|272=20250320|1027=1.18040|269=H|272=20250321|1027=1.22100|269=H|272=20250322|1027=1.26150|269=H|272=20250323|1027=1.30210|269=H|272=20250324|1027=1.34260|269=H|272=20250325|1027=1.38320|269=H|272=20250326|1027=1.42370|269=H|272=20250327|1027=1.46420|269=H|272=20250328|1027=1.50470|269=H|272=20250329|1027=1.54520|269=H|272=20250330|1027=1.58570|269=H|272=20250331|1027=1.62620|269=H|272=20250401|1027=1.66670|269=H|272=20250402|1027=1.70710|269=H|272=20250403|1027=1.75140|269=H|272=20250404|1027=1.79560|269=H|272=20250405|1027=1.83980|269=H|272=20250406|1027=1.88400|269=H|272=20250407|1027=1.92820|269=H|272=20250408|1027=1.97240|269=H|272=20250409|1027=2.01660|269=H|272=20250410|1027=2.06080|269=H|272=20250411|1027=2.10490|269=H|272=20250412|1027=2.14910|269=H|272=20250413|1027=2.19320|269=H|272=20250414|1027=2.23740|269=H|272=20250415|1027=2.28220|269=H|272=20250416|1027=2.32710|269=H|272=20250417|1027=2.37200|269=H|272=20250418|1027=2.41680|269=H|272=20250419|1027=2.46170|269=H|272=20250420|1027=2.50650|269=H|272=20250421|1027=2.55130|269=H|272=20250422|1027=2.59610|269=H|272=20250423|1027=2.64100|269=H|272=20250424|1027=2.68570|269=H|272=20250425|1027=2.73050|269=H|272=20250426|1027=2.77530|269=H|272=20250427|1027=2.82010|269=H|272=20250428|1027=2.86480|269=H|272=20250429|1027=2.90960|269=H|272=20250430|1027=2.95430|269=H|272=20250501|1027=2.99900|269=H|272=20250502|1027=3.04370|269=H|272=20250503|1027=3.08840|269=H|272=20250504|1027=3.13310|269=H|272=20250505|1027=3.17780|269=H|272=20250506|1027=3.22250|269=H|272=20250507|1027=3.26710|269=H|272=20250508|1027=3.31180|269=H|272=20250509|1027=3.35430|269=H|272=20250510|1027=3.39680|269=H|272=20250511|1027=3.43930|269=H|272=20250512|1027=3.48180|269=H|272=20250513|1027=3.52430|269=H|272=20250514|1027=3.56680|269=H|272=20250515|1027=3.60920|269=H|272=20250516|1027=3.65170|269=H|272=20250517|1027=3.69410|269=H|272=20250518|1027=3.73660|269=H|272=20250519|1027=3.77900|269=H|272=20250520|1027=3.82140|269=H|272=20250521|1027=3.86380|269=H|272=20250522|1027=3.93120|269=H|272=20250523|1027=3.99850|269=H|272=20250524|1027=4.06580|269=H|272=20250525|1027=4.13310|269=H|272=20250526|1027=4.20040|269=H|272=20250527|1027=4.26770|269=H|272=20250528|1027=4.33490|269=H|272=20250529|1027=4.40210|269=H|272=20250530|1027=4.46940|269=H|272=20250531|1027=4.53660|269=H|272=20250601|1027=4.60380|269=H|272=20250602|1027=4.67100|269=H|272=20250603|1027=4.73810|269=H|272=20250604|1027=4.80530|269=H|272=20250605|1027=4.87240|269=H|272=20250606|1027=4.93950|269=H|272=20250607|1027=5.00670|269=H|272=20250608|1027=5.07380|269=H|272=20250609|1027=5.14080|269=H|272=20250610|1027=5.20790|269=H|272=20250611|1027=5.27500|269=H|272=20250612|1027=5.34200|269=H|272=20250613|1027=5.40900|269=H|272=20250614|1027=5.47600|269=H|272=20250615|1027=5.54300|269=H|272=20250616|1027=5.61000|269=H|272=20250617|1027=5.66900|269=H|272=20250618|1027=5.72800|269=H|272=20250619|1027=5.78700|269=H|272=20250620|1027=5.84500|269=H|272=20250621|1027=5.90290|269=H|272=20250622|1027=5.96090|269=H|272=20250623|1027=6.01880|269=H|272=20250624|1027=6.07670|269=H|272=20250625|1027=6.13460|269=H|272=20250626|1027=6.19250|269=H|272=20250627|1027=6.25030|269=H|272=20250628|1027=6.30820|269=H|272=20250629|1027=6.36600|269=H|272=20250630|1027=6.42380|269=H|272=20250701|1027=6.48170|269=H|272=20250702|1027=6.53950|269=H|272=20250703|1027=6.59730|269=H|272=20250704|1027=6.65500|269=H|272=20250705|1027=6.71280|269=H|272=20250706|1027=6.77060|269=H|272=20250707|1027=6.82830|269=H|272=20250708|1027=6.88600|269=H|272=20250709|1027=6.94370|269=H|272=20250710|1027=7.00700|269=H|272=20250711|1027=7.07030|269=H|272=20250712|1027=7.13350|269=H|272=20250713|1027=7.19680|269=H|272=20250714|1027=7.26000|269=H|272=20250715|1027=7.32240|269=H|272=20250716|1027=7.38480|269=H|272=20250717|1027=7.44710|269=H|272=20250718|1027=7.50950|269=H|272=20250719|1027=7.57180|269=H|272=20250720|1027=7.63410|269=H|272=20250721|1027=7.69640|269=H|272=20250722|1027=7.75870|269=H|272=20250723|1027=7.82100|269=H|272=20250724|1027=7.88320|269=H|272=20250725|1027=7.94550|269=H|272=20250726|1027=8.00770|269=H|272=20250727|1027=8.06990|269=H|272=20250728|1027=8.13220|269=H|272=20250729|1027=8.19440|269=H|272=20250730|1027=8.25650|269=H|272=20250731|1027=8.31870|269=H|272=20250801|1027=8.38240|269=H|272=20250802|1027=8.44600|269=H|272=20250803|1027=8.50970|269=H|272=20250804|1027=8.57330|269=H|272=20250805|1027=8.63690|269=H|272=20250806|1027=8.70050|269=H|272=20250807|1027=8.76410|269=H|272=20250808|1027=8.82760|269=H|272=20250809|1027=8.89120|269=H|272=20250810|1027=8.95470|269=H|272=20250811|1027=9.01830|269=H|272=20250812|1027=9.08180|269=H|272=20250813|1027=9.14530|269=H|272=20250814|1027=9.22240|269=H|272=20250815|1027=9.29940|269=H|272=20250816|1027=9.37640|269=H|272=20250817|1027=9.45350|269=H|272=20250818|1027=9.53050|269=H|272=20250819|1027=9.60750|269=H|272=20250820|1027=9.68440|269=H|272=20250821|1027=9.76140|269=H|272=20250822|1027=9.83830|269=H|272=20250823|1027=9.91520|269=H|272=20250824|1027=9.99210|269=H|272=20250825|1027=10.06900|269=H|272=20250826|1027=10.14590|269=H|272=20250827|1027=10.22280|269=H|272=20250828|1027=10.29960|269=H|272=20250829|1027=10.37640|269=H|272=20250830|1027=10.45320|269=H|272=20250831|1027=10.53000|269=H|272=20250901|1027=10.60680|269=H|272=20250902|1027=10.68360|269=H|272=20250903|1027=10.76030|269=H|272=20250904|1027=10.83710|269=H|272=20250905|1027=10.91380|269=H|272=20250906|1027=10.99050|269=H|272=20250907|1027=11.06710|269=H|272=20250908|1027=11.14380|269=H|272=20250909|1027=11.22050|269=H|272=20250910|1027=11.29710|269=H|272=20250911|1027=11.37370|269=H|272=20250912|1027=11.45030|269=H|272=20250913|1027=11.52690|269=H|272=20250914|1027=11.60340|269=H|272=20250915|1027=11.68000|269=H|272=20250916|1027=11.75650|269=H|272=20250917|1027=11.83310|269=H|272=20250918|1027=11.90960|269=H|272=20250919|1027=11.98050|269=H|272=20250920|1027=12.05140|269=H|272=20250921|1027=12.12230|269=H|272=20250922|1027=12.19320|269=H|272=20250923|1027=12.26410|269=H|272=20250924|1027=12.33500|269=H|272=20250925|1027=12.40590|269=H|272=20250926|1027=12.47670|269=H|272=20250927|1027=12.54750|269=H|272=20250928|1027=12.61830|269=H|272=20250929|1027=12.68910|269=H|272=20250930|1027=12.75990|269=H|272=20251001|1027=12.83070|269=H|272=20251002|1027=12.90840|269=H|272=20251003|1027=12.98610|269=H|272=20251004|1027=13.06380|269=H|272=20251005|1027=13.14150|269=H|272=20251006|1027=13.21920|269=H|272=20251007|1027=13.29690|269=H|272=20251008|1027=13.37450|269=H|272=20251009|1027=13.45210|269=H|272=20251010|1027=13.52970|269=H|272=20251011|1027=13.60730|269=H|272=20251012|1027=13.68490|269=H|272=20251013|1027=13.76250|269=H|272=20251014|1027=13.84000|269=H|272=20251015|1027=13.91790|269=H|272=20251016|1027=13.99580|269=H|272=20251017|1027=14.07370|269=H|272=20251018|1027=14.15160|269=H|272=20251019|1027=14.22950|269=H|272=20251020|1027=14.30730|269=H|272=20251021|1027=14.38510|269=H|272=20251022|1027=14.46300|269=H|272=20251023|1027=14.54080|269=H|272=20251024|1027=14.61850|269=H|272=20251025|1027=14.69630|269=H|272=20251026|1027=14.77400|269=H|272=20251027|1027=14.85180|269=H|272=20251028|1027=14.92950|269=H|272=20251029|1027=15.00720|269=H|272=20251030|1027=15.08490|269=H|272=20251031|1027=15.16110|269=H|272=20251101|1027=15.23730|269=H|272=20251102|1027=15.31350|269=H|272=20251103|1027=15.38970|269=H|272=20251104|1027=15.46590|269=H|272=20251105|1027=15.54210|269=H|272=20251106|1027=15.58970|269=H|272=20251107|1027=15.63720|269=H|272=20251108|1027=15.68480|269=H|272=20251109|1027=15.73240|269=H|272=20251110|1027=15.77990|269=H|272=20251111|1027=15.82740|269=H|272=20251112|1027=15.87500|269=H|272=20251113|1027=15.92250|269=H|272=20251114|1027=15.97000|269=H|272=20251115|1027=16.04440|269=H|272=20251116|1027=16.11880|269=H|272=20251117|1027=16.19320|269=H|272=20251118|1027=16.26760|269=H|272=20251119|1027=16.34190|269=H|272=20251120|1027=16.41630|269=H|272=20251121|1027=16.49060|269=H|272=20251122|1027=16.56490|269=H|272=20251123|1027=16.63920|269=H|272=20251124|1027=16.71340|269=H|272=20251125|1027=16.78770|269=H|272=20251126|1027=16.86200|269=H|272=20251127|1027=16.93620|269=H|272=20251128|1027=17.01040|269=H|272=20251129|1027=17.08460|269=H|272=20251130|1027=17.15880|269=H|272=20251201|1027=17.23290|269=H|272=20251202|1027=17.30710|269=H|272=20251203|1027=17.38120|269=H|272=20251204|1027=17.45540|269=H|272=20251205|1027=17.52950|269=H|272=20251206|1027=17.60360|269=H|272=20251207|1027=17.67760|269=H|272=20251208|1027=17.75170|269=H|272=20251209|1027=17.82570|269=H|272=20251210|1027=17.89980|269=H|272=20251211|1027=17.95750|269=H|272=20251212|1027=18.01810|269=H|272=20251213|1027=18.07880|269=H|272=20251214|1027=18.13940|269=H|272=20251215|1027=18.20000|269=H|272=20251216|1027=18.26060|269=H|272=20251217|1027=18.32120|269=H|272=20251218|1027=18.38180|269=H|272=20251219|1027=18.44230|269=H|272=20251220|1027=18.50290|269=H|272=20251221|1027=18.56340|269=H|272=20251222|1027=18.62390|269=H|272=20251223|1027=18.68440|269=H|272=20251224|1027=18.74490|269=H|272=20251225|1027=18.80540|269=H|272=20251226|1027=18.86590|269=H|272=20251227|1027=18.92630|269=H|272=20251228|1027=18.98680|269=H|272=20251229|1027=19.04720|269=H|272=20251230|1027=19.10760|269=H|272=20251231|1027=19.16810|269=H|272=20260101|1027=19.44750|269=H|272=20260102|1027=19.72690|269=H|272=20260103|1027=19.78720|269=H|272=20260104|1027=19.84760|269=H|272=20260105|1027=19.90790|269=H|272=20260106|1027=19.96810|269=H|272=20260107|1027=20.02840|269=H|272=20260108|1027=20.08870|269=H|272=20260109|1027=20.14890|269=H|272=20260110|1027=20.20920|269=H|272=20260111|1027=20.26940|269=H|272=20260112|1027=20.32960|269=H|272=20260113|1027=20.38980|269=H|272=20260114|1027=20.45000|269=H|272=20260115|1027=20.51020|269=H|272=20260116|1027=20.57030|269=H|272=20260117|1027=20.63050|269=H|272=20260118|1027=20.69060|269=H|272=20260119|1027=20.75070|269=H|272=20260120|1027=20.81090|269=H|272=20260121|1027=20.87100|269=H|272=20260122|1027=20.93100|269=H|272=20260123|1027=20.99110|269=H|272=20260124|1027=21.05120|269=H|272=20260125|1027=21.11120|269=H|272=20260126|1027=21.17130|269=H|272=20260127|1027=21.23130|269=H|272=20260128|1027=21.29130|269=H|272=20260129|1027=21.35130|269=H|272=20260130|1027=21.40130|269=H|272=20260131|1027=21.45130|269=H|272=20260201|1027=21.50130|269=H|272=20260202|1027=21.55130|269=H|272=20260203|1027=21.60130|269=H|272=20260204|1027=21.65130|269=H|272=20260205|1027=21.70130|269=H|272=20260206|1027=21.75120|269=H|272=20260207|1027=21.80120|269=H|272=20260208|1027=21.85110|269=H|272=20260209|1027=21.90100|269=H|272=20260210|1027=21.95090|269=H|272=20260211|1027=22.00080|269=H|272=20260212|1027=22.05070|269=H|272=20260213|1027=22.10060|269=H|272=20260214|1027=22.15050|269=H|272=20260215|1027=22.20030|269=H|272=20260216|1027=22.25020|269=H|272=20260217|1027=22.30000|768=1|769=20250212-16:47:42.375|770=4|10=057|\n\n</code></pre><p>Example with tenor decoration.</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>8=FIX.4.4|9=0012740|35=W|49=ncfx.forwardcurve|56=ncfx|34=2|52=20250814-15:14:47.810|262=#EURUSD#|55=EURUSD|48=EURUSD_D_O|22=999|461=JF|268=370|269=H|272=20250814|1027=-3.09320|6217=ON|269=H|272=20250815|1027=-2.31650|6217=TN|269=H|272=20250816|1027=-1.54430|269=H|272=20250817|1027=-0.77210|269=H|272=20250818|1027=0.00000|6217=SPT|269=H|272=20250819|1027=0.77030|6217=SN|269=H|272=20250820|1027=1.54080|269=H|272=20250821|1027=2.31110|269=H|272=20250822|1027=3.08140|269=H|272=20250823|1027=3.85160|269=H|272=20250824|1027=4.62160|269=H|272=20250825|1027=5.39170|6217=W1|269=H|272=20250826|1027=6.16740|269=H|272=20250827|1027=6.94310|269=H|272=20250828|1027=7.71860|269=H|272=20250829|1027=8.49410|269=H|272=20250830|1027=9.28570|269=H|272=20250831|1027=10.07720|269=H|272=20250901|1027=10.86870|269=H|272=20250902|1027=11.66000|6217=W2|269=H|272=20250903|1027=12.43410|269=H|272=20250904|1027=13.20810|269=H|272=20250905|1027=13.98200|269=H|272=20250906|1027=14.75590|269=H|272=20250907|1027=15.52960|269=H|272=20250908|1027=16.30330|6217=W3|269=H|272=20250909|1027=17.07720|269=H|272=20250910|1027=17.85110|269=H|272=20250911|1027=18.62490|269=H|272=20250912|1027=19.39850|269=H|272=20250913|1027=20.17210|269=H|272=20250914|1027=20.94570|269=H|272=20250915|1027=21.71910|269=H|272=20250916|1027=22.49240|269=H|272=20250917|1027=23.26570|269=H|272=20250918|1027=24.04150|6217=M1|269=H|272=20250919|1027=24.75730|269=H|272=20250920|1027=25.47300|269=H|272=20250921|1027=26.18860|269=H|272=20250922|1027=26.90420|269=H|272=20250923|1027=27.61970|269=H|272=20250924|1027=28.33510|269=H|272=20250925|1027=29.05040|269=H|272=20250926|1027=29.76560|269=H|272=20250927|1027=30.48080|269=H|272=20250928|1027=31.19590|269=H|272=20250929|1027=31.91090|269=H|272=20250930|1027=32.62580|269=H|272=20251001|1027=33.40550|269=H|272=20251002|1027=34.12020|269=H|272=20251003|1027=34.83490|269=H|272=20251004|1027=35.54960|269=H|272=20251005|1027=36.26410|269=H|272=20251006|1027=36.97860|269=H|272=20251007|1027=37.69300|269=H|272=20251008|1027=38.40730|269=H|272=20251009|1027=39.12150|269=H|272=20251010|1027=39.83570|269=H|272=20251011|1027=40.54980|269=H|272=20251012|1027=41.26380|269=H|272=20251013|1027=41.97770|269=H|272=20251014|1027=42.69160|269=H|272=20251015|1027=43.40530|269=H|272=20251016|1027=44.11900|269=H|272=20251017|1027=44.83260|269=H|272=20251018|1027=45.54620|269=H|272=20251019|1027=46.25960|269=H|272=20251020|1027=46.97300|6217=M2|269=H|272=20251021|1027=47.69390|269=H|272=20251022|1027=48.41470|269=H|272=20251023|1027=49.13540|269=H|272=20251024|1027=49.85600|269=H|272=20251025|1027=50.57660|269=H|272=20251026|1027=51.29710|269=H|272=20251027|1027=52.01750|269=H|272=20251028|1027=52.73780|269=H|272=20251029|1027=53.45800|269=H|272=20251030|1027=54.17820|269=H|272=20251031|1027=54.85110|269=H|272=20251101|1027=55.54020|269=H|272=20251102|1027=56.22910|269=H|272=20251103|1027=56.91810|269=H|272=20251104|1027=57.59070|269=H|272=20251105|1027=58.26320|269=H|272=20251106|1027=58.93650|269=H|272=20251107|1027=59.60970|269=H|272=20251108|1027=60.28280|269=H|272=20251109|1027=60.95580|269=H|272=20251110|1027=61.62880|269=H|272=20251111|1027=62.30170|269=H|272=20251112|1027=62.97450|269=H|272=20251113|1027=63.64730|269=H|272=20251114|1027=64.32000|269=H|272=20251115|1027=64.99260|269=H|272=20251116|1027=65.66510|269=H|272=20251117|1027=66.33760|269=H|272=20251118|1027=67.01000|6217=M3|269=H|272=20251119|1027=67.68740|269=H|272=20251120|1027=68.36470|269=H|272=20251121|1027=69.04200|269=H|272=20251122|1027=69.71920|269=H|272=20251123|1027=70.39630|269=H|272=20251124|1027=71.07340|269=H|272=20251125|1027=71.75040|269=H|272=20251126|1027=72.42730|269=H|272=20251127|1027=73.10410|269=H|272=20251128|1027=73.78080|269=H|272=20251129|1027=74.47370|269=H|272=20251130|1027=75.16660|269=H|272=20251201|1027=75.85930|269=H|272=20251202|1027=76.53580|269=H|272=20251203|1027=77.21220|269=H|272=20251204|1027=77.88850|269=H|272=20251205|1027=78.56470|269=H|272=20251206|1027=79.24090|269=H|272=20251207|1027=79.91700|269=H|272=20251208|1027=80.59310|269=H|272=20251209|1027=81.26900|269=H|272=20251210|1027=81.94490|269=H|272=20251211|1027=82.62080|269=H|272=20251212|1027=83.24330|269=H|272=20251213|1027=83.86570|269=H|272=20251214|1027=84.48810|269=H|272=20251215|1027=85.11040|269=H|272=20251216|1027=85.73270|269=H|272=20251217|1027=86.35480|269=H|272=20251218|1027=86.97700|6217=M4|269=H|272=20251219|1027=87.59900|269=H|272=20251220|1027=88.22100|269=H|272=20251221|1027=88.84290|269=H|272=20251222|1027=89.46480|269=H|272=20251223|1027=90.08650|269=H|272=20251224|1027=90.70830|269=H|272=20251225|1027=91.36350|269=H|272=20251226|1027=92.01860|269=H|272=20251227|1027=92.67370|269=H|272=20251228|1027=93.32870|269=H|272=20251229|1027=93.98370|269=H|272=20251230|1027=94.63860|269=H|272=20251231|1027=95.29340|269=H|272=20260101|1027=96.68380|269=H|272=20260102|1027=98.07420|269=H|272=20260103|1027=98.72890|269=H|272=20260104|1027=99.38340|269=H|272=20260105|1027=100.03790|269=H|272=20260106|1027=100.69240|269=H|272=20260107|1027=101.34670|269=H|272=20260108|1027=102.00100|269=H|272=20260109|1027=102.65530|269=H|272=20260110|1027=103.30940|269=H|272=20260111|1027=103.96350|269=H|272=20260112|1027=104.61760|269=H|272=20260113|1027=105.27160|269=H|272=20260114|1027=105.92550|269=H|272=20260115|1027=106.57930|269=H|272=20260116|1027=107.23310|269=H|272=20260117|1027=107.88680|269=H|272=20260118|1027=108.54040|269=H|272=20260119|1027=109.19400|269=H|272=20260120|1027=109.84750|6217=M5|269=H|272=20260121|1027=110.50100|269=H|272=20260122|1027=111.15440|269=H|272=20260123|1027=111.80770|269=H|272=20260124|1027=112.46090|269=H|272=20260125|1027=113.11410|269=H|272=20260126|1027=113.76720|269=H|272=20260127|1027=114.42030|269=H|272=20260128|1027=115.07330|269=H|272=20260129|1027=115.72620|269=H|272=20260130|1027=116.33880|269=H|272=20260131|1027=116.95140|269=H|272=20260201|1027=117.56390|269=H|272=20260202|1027=118.17630|269=H|272=20260203|1027=118.78870|269=H|272=20260204|1027=119.40100|269=H|272=20260205|1027=120.01330|269=H|272=20260206|1027=120.62550|269=H|272=20260207|1027=121.23760|269=H|272=20260208|1027=121.84970|269=H|272=20260209|1027=122.46170|269=H|272=20260210|1027=123.07370|269=H|272=20260211|1027=123.68550|269=H|272=20260212|1027=124.29860|269=H|272=20260213|1027=124.91170|269=H|272=20260214|1027=125.52470|269=H|272=20260215|1027=126.13760|269=H|272=20260216|1027=126.75040|269=H|272=20260217|1027=127.36320|269=H|272=20260218|1027=127.97590|6217=M6|269=H|272=20260219|1027=128.59110|269=H|272=20260220|1027=129.20620|269=H|272=20260221|1027=129.82120|269=H|272=20260222|1027=130.43610|269=H|272=20260223|1027=131.05100|269=H|272=20260224|1027=131.66590|269=H|272=20260225|1027=132.28060|269=H|272=20260226|1027=132.89540|269=H|272=20260227|1027=133.51000|269=H|272=20260228|1027=134.12460|269=H|272=20260301|1027=134.73910|269=H|272=20260302|1027=135.35360|269=H|272=20260303|1027=135.96800|269=H|272=20260304|1027=136.58230|269=H|272=20260305|1027=137.19660|269=H|272=20260306|1027=137.81080|269=H|272=20260307|1027=138.42500|269=H|272=20260308|1027=139.03910|269=H|272=20260309|1027=139.65310|269=H|272=20260310|1027=140.26710|269=H|272=20260311|1027=140.88100|269=H|272=20260312|1027=141.49490|269=H|272=20260313|1027=142.10870|269=H|272=20260314|1027=142.72240|269=H|272=20260315|1027=143.33610|269=H|272=20260316|1027=143.94970|269=H|272=20260317|1027=144.56320|269=H|272=20260318|1027=145.17670|6217=M7|269=H|272=20260319|1027=145.79010|269=H|272=20260320|1027=146.36830|269=H|272=20260321|1027=146.94630|269=H|272=20260322|1027=147.52440|269=H|272=20260323|1027=148.10230|269=H|272=20260324|1027=148.68020|269=H|272=20260325|1027=149.25810|269=H|272=20260326|1027=149.85550|269=H|272=20260327|1027=150.45290|269=H|272=20260328|1027=151.05020|269=H|272=20260329|1027=151.64750|269=H|272=20260330|1027=152.24470|269=H|272=20260331|1027=152.84180|269=H|272=20260401|1027=153.43890|269=H|272=20260402|1027=154.03590|269=H|272=20260403|1027=154.63290|269=H|272=20260404|1027=155.22980|269=H|272=20260405|1027=155.82660|269=H|272=20260406|1027=156.42340|269=H|272=20260407|1027=157.02020|269=H|272=20260408|1027=157.61680|269=H|272=20260409|1027=158.21340|269=H|272=20260410|1027=158.81000|269=H|272=20260411|1027=159.40650|269=H|272=20260412|1027=160.00300|269=H|272=20260413|1027=160.59930|269=H|272=20260414|1027=161.19570|269=H|272=20260415|1027=161.79200|269=H|272=20260416|1027=162.38820|269=H|272=20260417|1027=162.98430|269=H|272=20260418|1027=163.58040|269=H|272=20260419|1027=164.17650|269=H|272=20260420|1027=164.77240|6217=M8|269=H|272=20260421|1027=165.37300|269=H|272=20260422|1027=165.97350|269=H|272=20260423|1027=166.57390|269=H|272=20260424|1027=167.17430|269=H|272=20260425|1027=167.77470|269=H|272=20260426|1027=168.37490|269=H|272=20260427|1027=168.97510|269=H|272=20260428|1027=169.57530|269=H|272=20260429|1027=170.17540|269=H|272=20260430|1027=170.77540|269=H|272=20260501|1027=171.36680|269=H|272=20260502|1027=171.95810|269=H|272=20260503|1027=172.54930|269=H|272=20260504|1027=173.14050|269=H|272=20260505|1027=173.73160|269=H|272=20260506|1027=174.32260|269=H|272=20260507|1027=174.88490|269=H|272=20260508|1027=175.44710|269=H|272=20260509|1027=176.00930|269=H|272=20260510|1027=176.57140|269=H|272=20260511|1027=177.13350|269=H|272=20260512|1027=177.69540|269=H|272=20260513|1027=178.25740|269=H|272=20260514|1027=178.81930|269=H|272=20260515|1027=179.38110|269=H|272=20260516|1027=179.94290|269=H|272=20260517|1027=180.50460|269=H|272=20260518|1027=181.06630|6217=M9|269=H|272=20260519|1027=181.62790|269=H|272=20260520|1027=182.18940|269=H|272=20260521|1027=182.75090|269=H|272=20260522|1027=183.31240|269=H|272=20260523|1027=183.87370|269=H|272=20260524|1027=184.43510|269=H|272=20260525|1027=184.99630|269=H|272=20260526|1027=185.55760|269=H|272=20260527|1027=186.11870|269=H|272=20260528|1027=186.67980|269=H|272=20260529|1027=187.24090|269=H|272=20260530|1027=187.80190|269=H|272=20260531|1027=188.36280|269=H|272=20260601|1027=188.92370|269=H|272=20260602|1027=189.48450|269=H|272=20260603|1027=190.04530|269=H|272=20260604|1027=190.60600|269=H|272=20260605|1027=191.16670|269=H|272=20260606|1027=191.72730|269=H|272=20260607|1027=192.28790|269=H|272=20260608|1027=192.84840|269=H|272=20260609|1027=193.40880|269=H|272=20260610|1027=193.96920|269=H|272=20260611|1027=194.52950|269=H|272=20260612|1027=195.08980|269=H|272=20260613|1027=195.65000|269=H|272=20260614|1027=196.21020|269=H|272=20260615|1027=196.77030|269=H|272=20260616|1027=197.33040|269=H|272=20260617|1027=197.89040|269=H|272=20260618|1027=198.46410|6217=M10|269=H|272=20260619|1027=198.99440|269=H|272=20260620|1027=199.52460|269=H|272=20260621|1027=200.05480|269=H|272=20260622|1027=200.58490|269=H|272=20260623|1027=201.11500|269=H|272=20260624|1027=201.64500|269=H|272=20260625|1027=202.17490|269=H|272=20260626|1027=202.70480|269=H|272=20260627|1027=203.23470|269=H|272=20260628|1027=203.76450|269=H|272=20260629|1027=204.29420|269=H|272=20260630|1027=204.82390|269=H|272=20260701|1027=205.35360|269=H|272=20260702|1027=205.88320|269=H|272=20260703|1027=206.41280|269=H|272=20260704|1027=206.94230|269=H|272=20260705|1027=207.47170|269=H|272=20260706|1027=208.00110|269=H|272=20260707|1027=208.53040|269=H|272=20260708|1027=209.05970|269=H|272=20260709|1027=209.58900|269=H|272=20260710|1027=210.11820|269=H|272=20260711|1027=210.64730|269=H|272=20260712|1027=211.17640|269=H|272=20260713|1027=211.70540|269=H|272=20260714|1027=212.23440|269=H|272=20260715|1027=212.76340|269=H|272=20260716|1027=213.29230|269=H|272=20260717|1027=213.82110|269=H|272=20260718|1027=214.34990|269=H|272=20260719|1027=214.87860|269=H|272=20260720|1027=215.40730|6217=M11|269=H|272=20260721|1027=215.93590|269=H|272=20260722|1027=216.46450|269=H|272=20260723|1027=216.99300|269=H|272=20260724|1027=217.52150|269=H|272=20260725|1027=218.05000|269=H|272=20260726|1027=218.57830|269=H|272=20260727|1027=219.10670|269=H|272=20260728|1027=219.63490|269=H|272=20260729|1027=220.16320|269=H|272=20260730|1027=220.68320|269=H|272=20260731|1027=221.18370|269=H|272=20260801|1027=221.68420|269=H|272=20260802|1027=222.18470|269=H|272=20260803|1027=222.68510|269=H|272=20260804|1027=223.18540|269=H|272=20260805|1027=223.68570|269=H|272=20260806|1027=224.18600|269=H|272=20260807|1027=224.68620|269=H|272=20260808|1027=225.18630|269=H|272=20260809|1027=225.68650|269=H|272=20260810|1027=226.18650|269=H|272=20260811|1027=226.68650|269=H|272=20260812|1027=227.18650|269=H|272=20260813|1027=227.68640|269=H|272=20260814|1027=228.18630|269=H|272=20260815|1027=228.68610|269=H|272=20260816|1027=229.18590|269=H|272=20260817|1027=229.68560|269=H|272=20260818|1027=230.18520|6217=M12|768=1|769=20250814-14:14:46.803|770=4|10=155|\n\n</code></pre>","_postman_id":"f4af0c10-41ed-4ae2-b7b9-e43202ae73f9","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"de998acf-a68b-4a64-bbdc-067b91154736","id":"de998acf-a68b-4a64-bbdc-067b91154736","name":"FIX (Financial Information eXchange)","type":"folder"}}},{"name":"Midrate Data Messages","item":[],"id":"0c215c33-0674-46b1-823f-5a97ee4ad4ff","description":"<p>The NCFX Midrate fix session will provide midrates for requested currency pairs and tenors, including spot and forward tenors. In general, separate FIX servers will be provided for spot and forwards data. A market data request message (V) is required to request the subscription for each currency pair and its corresponding tenor.</p>\n<p>Individual market data full refresh messages (W) will be sent for each rate.</p>\n<p>Please ensure that TargetCompID &lt;56&gt; in the MessageHeader is set to ncfx.midrate to connect to this service.</p>\n<p>This service supports both <strong>strict</strong> and <strong>permissive</strong> definitions of the requested instrument according to the SecurityID &lt;48&gt;.</p>\n<p>If a strict SecurityID &lt;48&gt; definition is used, the currency pair must be specified in the SecurityID &lt;48&gt; to include the type and route (see the introduction to this documentation for further information), e.g. 48=GBPUSD_D_O, where GBPUSD is the currency pair, <strong>type</strong> is <strong>D</strong> or <strong>N</strong>, and the <strong>route</strong> is <strong>O</strong> or <strong>C</strong>. In this case, the SecurityIDSource &lt;22&gt; is compulsory and should be set to 999 (this informs a strict definition is being used). Please note that the Symbol &lt;55&gt; should be included as normal (mandatory in the FIX specification) in the market data request message (V). For example, 55=GBPUSD (Symbol &lt;55&gt; should match the currency pair symbol in the SecurityID &lt;48&gt;, i.e. GBPUSD should correspond to GBPUSD_D_O).</p>\n<p>If a permissive SecurityID &lt;48&gt; definition is used, NCFX will deduce the relevant SecurityID &lt;48&gt; using the currency pair defined in Symbol &lt;55&gt; (e.g. 55 = GBPUSD). In this case, the SecurityID &lt;48&gt; and SecurityIDSource &lt;22&gt; should not be included in the market data request message (V).</p>\n<p>When sending Market Data Request messages to unsubscribe from instruments, ensure that the SubscriptionRequestType &lt;263&gt; is set to 2, where 2 indicates a request to unsubscribe market data.</p>\n<p>By default, rates are sent to market convention. It is possible to request that rates are sent in true decimal if preferred (please note that each instrument can only be requested in one or the other - not both simultaneously). Tag &lt;6218&gt; is used to control this in the W message. When set to 'Y' data is sent in convention, when 'N' to true decimal. If ommitted it is set to 'Y' by default. The W message will report the value of this tag.</p>\n<p>A list of available tenors can be found here:</p>\n<p><a href=\"https://docs.newchangefx.com/#632c8007-9f49-4520-b9de-e5ad0e1a6491\">NCFX data services (newchangefx.com)</a></p>\n<h4 id=\"market-data-requests-v\">Market Data Requests (V)</h4>\n<p>The market data request message (V) is sent to subscribe to midrates.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Standard Header</strong></th>\n<th><strong>Required</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>MsgType (Tag 35) = V</td>\n<td>Yes</td>\n</tr>\n</tbody>\n</table>\n</div><div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Tag</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description/  <br />Value</th>\n<th>Required</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>262</td>\n<td>MDReqID</td>\n<td>String</td>\n<td>Unique identifier for Market Data Request</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>263</td>\n<td>SubscriptionRequestType</td>\n<td>Char</td>\n<td>Subscription Request Type Valid values:  <br />1 = subscribe  <br />2= unsubscribe</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>264</td>\n<td>MarketDepth</td>\n<td>Int</td>\n<td>Value: 0</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>146</td>\n<td>NoRelatedSym</td>\n<td>NuminGroup</td>\n<td>Specifies the number of repeating Symbols  <br />  <br />Value: 1</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>55</td>\n<td>Symbol</td>\n<td>String</td>\n<td>Market Data Entry Currency symbol:  <br />  <br />e.g. EURUSD</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>48</td>\n<td>SecurityID</td>\n<td>String</td>\n<td>Strict definition of instrument  <br />e.g. EURUSD_D_O</td>\n<td>No</td>\n</tr>\n<tr>\n<td>22</td>\n<td>SecurityIDSource</td>\n<td>int</td>\n<td>999</td>\n<td>Conditional (Required if tag 48 is populated)</td>\n</tr>\n<tr>\n<td>6217</td>\n<td>Tenor</td>\n<td>String</td>\n<td>Required tenor (e.g. SPT, W1, M12)</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>6218</td>\n<td>ForwardPointConvention</td>\n<td>Char (Boolean)</td>\n<td>Value: Y  <br />data to convention.  <br />Value: N  <br />data to true decimal.</td>\n<td>No</td>\n</tr>\n</tbody>\n</table>\n</div><div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Standard Trailer</strong></th>\n<th><strong>Required</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td></td>\n<td>Yes</td>\n</tr>\n</tbody>\n</table>\n</div><h4 id=\"example\">Example</h4>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>8=FIX.4.4|9=0000127|35=V|49=ncfx|56=ncfx.midrate.fwd|34=2|52=20240515-16:09:49.596|262=#GBPUSD#M1#false|263=1|264=1|146=1|6218=N|6217=M1|55=GBPUSD|10=230|\n\n</code></pre><h4 id=\"market-data-snapshot-full-refresh-w\">Market Data Snapshot Full Refresh (W)</h4>\n<p>After making a successful market data request (V), the subscriber will receive responses in the form of market data snapshot full refresh (W).</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Standard Header</strong></th>\n<th><strong>Required</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>MsgType (Tag 35) = W</td>\n<td>Yes</td>\n</tr>\n</tbody>\n</table>\n</div><div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Tag</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description/  <br />Value</th>\n<th>Required</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>262</td>\n<td>MDReqID</td>\n<td>String</td>\n<td>Unique identifier for Market Data Request</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>55</td>\n<td>Symbol</td>\n<td>String</td>\n<td>Currency pair</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>48</td>\n<td>SecurityID</td>\n<td>String</td>\n<td>Strict currency pair (includes type and route), e.g. EURUSD_D_O</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>22</td>\n<td>SecurityIDSource</td>\n<td>Int</td>\n<td>999</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>6217</td>\n<td>Tenor</td>\n<td>String</td>\n<td>Tenor (e.g. SPT, W1, M12)</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>6218</td>\n<td>ForwardPointConvention</td>\n<td>Char (Boolean)</td>\n<td>Value: Y  <br />data to convention.  <br />Value: N  <br />data to true decimal.</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>6220</td>\n<td>IsBenchmark</td>\n<td>Char (Boolean)</td>\n<td>Value : Y  <br />Instrument data is Benchmark  <br />Value: N  <br />Instrument data is not currently Benchmark</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>461</td>\n<td>CFICode</td>\n<td>String</td>\n<td>Value: JF (for forwards)  <br />Value: IF (for spot)</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>268</td>\n<td>NoMDEntries</td>\n<td>NuminGroup</td>\n<td>Specifies the number of repeating Symbols</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>269</td>\n<td>MDEntryType</td>\n<td>Char</td>\n<td>Value: H</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>270</td>\n<td>MDEntryPx</td>\n<td>Price</td>\n<td>Price of the market data entry</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>768</td>\n<td>NoTrdRegTimestamps</td>\n<td>NuminGroup</td>\n<td>Specifies the number of repeating entries  <br />  <br />Value: 1</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>769</td>\n<td>TrdRegTimestamp</td>\n<td>Date</td>\n<td>Timestamp in UTC</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>770</td>\n<td>TrdRegTimestampType</td>\n<td>Int</td>\n<td>Value: 2  <br />  <br />Benchmark time for benchmark data or rate calculation time</td>\n<td>Yes</td>\n</tr>\n</tbody>\n</table>\n</div><div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Standard Trailer</strong></th>\n<th><strong>Required</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td></td>\n<td>Yes</td>\n</tr>\n</tbody>\n</table>\n</div><h4 id=\"example-1\">Example</h4>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>8=FIX.4.4|9=0000213|35=W|49=ncfx.midrate.fwd|56=ncfx|34=1267|52=20240628-13:48:02.603|262=#USDSGD#Y2#undefined|6220=Y|6218=Y|6217=Y2|55=USDSGD|48=USDSGD_D_O|22=999|461=JF|268=1|269=H|270=-395.72|768=1|769=20240626-19:59:02.148|770=2|10=183|\n\n</code></pre>","_postman_id":"0c215c33-0674-46b1-823f-5a97ee4ad4ff","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"de998acf-a68b-4a64-bbdc-067b91154736","id":"de998acf-a68b-4a64-bbdc-067b91154736","name":"FIX (Financial Information eXchange)","type":"folder"}}},{"name":"Bank 365 Data Messages","item":[],"id":"359c9f62-023a-4754-a2ec-effd54d8c1c8","_postman_id":"359c9f62-023a-4754-a2ec-effd54d8c1c8","description":"","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"de998acf-a68b-4a64-bbdc-067b91154736","id":"de998acf-a68b-4a64-bbdc-067b91154736","name":"FIX (Financial Information eXchange)","type":"folder"}}}],"id":"de998acf-a68b-4a64-bbdc-067b91154736","description":"<p><strong>Version control:</strong></p>\n<p>version 1.1.1 - 01 April 2026</p>\n<h2 id=\"introduction\">Introduction</h2>\n<p>NCFX provide a range of data services over FIX. These services are also available over WebSocket and RESTful API.</p>\n<p>This document outlines the FIX specification for connecting to NCFX data services. The service is delivered using FIXT 4.4 over TLS 1.2.</p>\n<p>NCFX uses a small subset of the FIX protocol for Market Data exchange.</p>\n<p>For more information about the FIX Protocol please visit: <a href=\"http://www.fixprotocol.org/\">http://www.fixprotocol.org</a></p>\n<h2 id=\"connection-and-availability\">Connection and availability</h2>\n<p>In the unlikely event of a critical hardware failure NCFX FIX servers are automatically replaced within 2 minutes. Customers may request dual production connections (active/active) for higher availability, in this case the second server will be delivered in a physically separate location.</p>\n<p>Each data service (e.g. Optioncut, forward curve etc.) requires a separate fix session, within which all relevant instruments may be subscribed to. Each data service has a specific TargetCompID (please see message header table below).</p>\n<p>Customers will be provided with Hostname and specific port numbers for their services.</p>\n<p>NCFX use a standard Heartbeat Interval of 60 seconds.</p>\n","auth":{"type":"noauth","isInherited":false},"event":[{"listen":"prerequest","script":{"type":"text/javascript","exec":[""],"id":"316af6ac-0c57-433b-b4f1-53fb55fdfbe9"}},{"listen":"test","script":{"type":"text/javascript","exec":[""],"id":"5309da89-6e6a-409b-9d39-8972e566d5a2"}}],"_postman_id":"de998acf-a68b-4a64-bbdc-067b91154736"},{"name":"WEBSOCKET","item":[{"name":"CRYPTO","item":[{"name":"Crypto assets","item":[{"name":"V1","item":[],"id":"2fce67f0-04b9-4af3-8227-82b2f0dfb59a","description":"<h2 id=\"release-notes\">Release notes</h2>\n<p>Version 1:</p>\n<ul>\n<li>Initial release</li>\n</ul>\n<h2 id=\"requirements\">Requirements</h2>\n<ul>\n<li><p><strong>Endpoint:</strong> <strong>{{CRYPTO_WS_ENDPOINT}}</strong></p>\n</li>\n<li><p><strong>Username:</strong></p>\n</li>\n<li><p><strong>Password:</strong></p>\n</li>\n</ul>\n<h2 id=\"authentication\">Authentication</h2>\n<p>After connecting to the websocket, an authentication message must be sent in the following format:</p>\n<h4 id=\"message\">Message</h4>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\"request\":\"login\", \"username\":\"&lt;USERNAME&gt;\",\"password\":\"&lt;PASSWORD&gt;\"}\n\n</code></pre>\n<h4 id=\"response\">Response</h4>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\"Type\":\"Info\",\"Message\":\"Successfully Authenticated\"}\n\n</code></pre>\n<h2 id=\"streaming\">Streaming</h2>\n<h3 id=\"subscribe-to-currency-pairs\">Subscribe to currency pairs</h3>\n<p>Once you have successfully authenticated, data can be requested through <strong>“subscribe”</strong> requests (note that the separaration character between base and quote tokens is '/'):</p>\n<h4 id=\"message-1\">Message</h4>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\"request\": \"subscribe\", \"ccy\":\"BTC/USD\"}\n\n</code></pre>\n<h4 id=\"response-1\">Response</h4>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\"Type\":\"Info\",\"Message\":\"Subscribed to currency pair(s) BTC/USD\"}\n{\n \"timestamp\": \"2023-03-31 12:33:38.500\",\n \"currencyPair\": \"BTC/USD\",\n \"bid\": 28133.527,\n \"offer\": 28135.557,\n \"mid\": 28134.542\n }\n\n</code></pre>\n<h3 id=\"unsubscribe-from-currency-pairs\">Unsubscribe from currency pairs</h3>\n<p>To unsubscribe from <strong>a currency pair</strong>, send through an unsubscribe request:</p>\n<h4 id=\"message-2\">Message</h4>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\"request\": \"unsubscribe\", \"ccy\":\"BTC/USD\"}\n\n</code></pre>\n<h4 id=\"response-2\">Response</h4>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\"Type\":\"Info\",\"Message\":\"Unsubscribed to currency pair(s) BTC/USD\"}\n\n</code></pre>\n<h2 id=\"data-stream\">Data Stream</h2>\n<p>Once connected and subscribed to a pair you will begin receiving price updates for the asset at least four times per second. Exact intervals can vary slightly.</p>\n<p><strong>NOTE:</strong> Timestamps provided are in UTC. Rates are provided to eight significant figures.</p>\n<h3 id=\"quote-currencies-and-tokens-supported\">Quote currencies and tokens supported:</h3>\n<p>Every asset is provided with USD as the quote currency. Additionally the following quote tokens can be provided on request.</p>\n<ul>\n<li><p>-BNB</p>\n</li>\n<li><p>-BTC</p>\n</li>\n<li><p>-ETH</p>\n</li>\n<li><p>-USDC</p>\n</li>\n<li><p>-USDT</p>\n</li>\n</ul>\n","_postman_id":"2fce67f0-04b9-4af3-8227-82b2f0dfb59a"},{"name":"V2","item":[],"id":"53717eaa-64c7-485c-b42b-e482ddb88597","description":"<p><strong>Version control:</strong></p>\n<p>version: 2.0.0 - 25 April 2023</p>\n<h2 id=\"release-notes\">Release notes</h2>\n<p>Version 2:</p>\n<ul>\n<li><p>adds information regarding the amount of the base token that is availble at the top of book (bidQty and askQty)</p>\n</li>\n<li><p>replaces '/' with '-' inside currency pair (including for subscription requests). e.g. BTC/USD becomes BTC-USD.</p>\n</li>\n</ul>\n<h2 id=\"requirements\">Requirements</h2>\n<ul>\n<li><p><strong>Endpoint:</strong> <strong>{{CRYPTO_WS_ENDPOINT}}/v2/rates</strong></p>\n</li>\n<li><p><strong>Username:</strong></p>\n</li>\n<li><p><strong>Password:</strong></p>\n</li>\n</ul>\n<h2 id=\"authentication\">Authentication</h2>\n<p>After connecting to the websocket, an authentication message must be sent in the following format:</p>\n<h4 id=\"message\">Message</h4>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\"request\":\"login\", \"username\":\"&lt;USERNAME&gt;\",\"password\":\"&lt;PASSWORD&gt;\"}\n\n</code></pre>\n<h4 id=\"response\">Response</h4>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\"Type\":\"Info\",\"Message\":\"Successfully Authenticated\"}\n\n</code></pre>\n<h2 id=\"streaming\">Streaming</h2>\n<h3 id=\"subscribe-to-currency-pairs\">Subscribe to currency pairs</h3>\n<p>Once you have successfully authenticated, data can be requested through <strong>“subscribe”</strong> requests:</p>\n<h4 id=\"message-1\">Message</h4>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\"request\": \"subscribe\", \"ccy\":\"BTC-USD\"}\n\n</code></pre>\n<h4 id=\"response-1\">Response</h4>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\"Type\":\"Info\",\"Message\":\"Subscribed to currency pair(s) BTC-USD\"}\n{\n \"timestamp\": \"2023-03-31 12:33:38.500\",\n \"currencyPair\": \"BTC-USD\",\n \"mid\": 28134.542,\n \"bid\": 28133.527,\n \"ask\": 28135.557,\n \"bidQty\": 0.005341,\n \"askQty\": 0.002846\n }\n\n</code></pre>\n<h3 id=\"unsubscribe-from-currency-pairs\">Unsubscribe from currency pairs</h3>\n<p>To unsubscribe from <strong>a currency pair</strong>, send through an unsubscribe request:</p>\n<h4 id=\"message-2\">Message</h4>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\"request\": \"unsubscribe\", \"ccy\":\"BTC-USD\"}\n\n</code></pre>\n<h4 id=\"response-2\">Response</h4>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\"Type\":\"Info\",\"Message\":\"Unsubscribed to currency pair(s) BTC-USD\"}\n\n</code></pre>\n<h2 id=\"data-stream\">Data Stream</h2>\n<p>Once connected and subscribed to a pair you will begin receiving price updates for the asset at least four times per second. Exact intervals can vary slightly.</p>\n<p><strong>NOTE:</strong> Timestamps provided are in UTC. Rates are provided to eight significant figures. Quantities are provided to 4 significant figures.</p>\n<h3 id=\"quote-currencies-and-tokens-supported\">Quote currencies and tokens supported:</h3>\n<p>Every asset is provided with USD as the quote currency. Additionally the following quote tokens can be provided on request.</p>\n<ul>\n<li><p>-BNB</p>\n</li>\n<li><p>-BTC</p>\n</li>\n<li><p>-ETH</p>\n</li>\n<li><p>-USDC</p>\n</li>\n<li><p>-USDT</p>\n</li>\n</ul>\n","_postman_id":"53717eaa-64c7-485c-b42b-e482ddb88597"}],"id":"b465cee4-1fc4-40cb-9df2-5b9855679099","description":"<p>Data in this section provides data on crypto asset prices derived directly from crypto marketplaces.</p>\n<p>Crypto asset data is typically priced in USD (as the quote), however additional quote tokens are available for many tokens, and live pricing in additional quote tokens is available on request.</p>\n","_postman_id":"b465cee4-1fc4-40cb-9df2-5b9855679099"},{"name":"Fiat data","item":[{"name":"V1","item":[],"id":"d510874e-54ec-443a-8841-093f9bce7935","description":"<h2 id=\"release-notes\">Release notes</h2>\n<p>Version 1:</p>\n<ul>\n<li>Initial release.</li>\n</ul>\n<h2 id=\"requirements\">Requirements</h2>\n<ul>\n<li><p><strong>Endpoint:</strong> <strong>{{CRYPTO_WS_ENDPOINT}}/fiat_v1</strong></p>\n</li>\n<li><p><strong>Username:</strong></p>\n</li>\n<li><p><strong>Password:</strong></p>\n</li>\n</ul>\n<h2 id=\"authentication\">Authentication</h2>\n<p>After connecting to the websocket, an authentication message must be sent in the following format:</p>\n<h4 id=\"message\">Message</h4>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\"request\":\"login\", \"username\":\"&lt;USERNAME&gt;\",\"password\":\"&lt;PASSWORD&gt;\"}\n\n</code></pre>\n<h4 id=\"response\">Response</h4>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\"Type\":\"Info\",\"Message\":\"Successfully Authenticated\"}\n\n</code></pre>\n<h2 id=\"streaming\">Streaming</h2>\n<h3 id=\"subscribe-to-currency-pairs\">Subscribe to currency pairs</h3>\n<p>Once you have successfully authenticated, data can be requested through <strong>“subscribe”</strong> requests.</p>\n<p>The service will respond to requests with the currencies in either order, e.g.</p>\n<ul>\n<li><p>USDMXN (in convention)</p>\n</li>\n<li><p>MXNUSD (with USD in the quote)</p>\n</li>\n</ul>\n<p>Currencies can be concatenated or separated by '-'. e.g.</p>\n<ul>\n<li><p>USDMXN (concatenated)</p>\n</li>\n<li><p>USD-MXN (separated)</p>\n</li>\n</ul>\n<p>The format of the response will be determined by the format of the request.</p>\n<h4 id=\"message-1\">Message</h4>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\"request\": \"subscribe\", \"ccy\":\"USDGBP\"}\n\n</code></pre>\n<h4 id=\"response-1\">Response</h4>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\"Type\":\"Info\",\"Message\":\"Subscribed to currency pair(s) USDGBP\"}\n{\n \"timestamp\": \"2026-02-05 13:17:09.499\",\n \"currencyPair\": \"USDGBP\",\n \"mid\": 0.73587308,\n \"bid\": 0.73581893,\n \"ask\": 0.73600848\n }\n\n</code></pre>\n<h3 id=\"unsubscribe-from-currency-pairs\">Unsubscribe from currency pairs</h3>\n<p>To unsubscribe from <strong>a currency pair</strong>, send through an unsubscribe request:</p>\n<h4 id=\"message-2\">Message</h4>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\"request\": \"unsubscribe\", \"ccy\":\"USDGBP\"}\n\n</code></pre>\n<h4 id=\"response-2\">Response</h4>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\"Type\":\"Info\",\"Message\":\"Unsubscribed to currency pair(s) USDGBP\"}\n\n</code></pre>\n<h2 id=\"data-structure-of-streamed-data\">Data Structure of Streamed Data</h2>\n<p>Once connected and subscribed to a pair you will begin receiving price updates for the asset at least four times per second. Exact intervals can vary slightly.</p>\n<p><strong>NOTE:</strong> Timestamps provided are in UTC.</p>\n","_postman_id":"d510874e-54ec-443a-8841-093f9bce7935"}],"id":"f7a838d4-f6a5-4b69-8f37-35e0c793a62a","description":"<p>Data in this section provides data on the relative value of fiat currencies in crypto markets (FX prices). This data is directly from crypto marketplaces.</p>\n","_postman_id":"f7a838d4-f6a5-4b69-8f37-35e0c793a62a"}],"id":"b3e21064-9025-4273-97d7-884174844f15","description":"<h1 id=\"ncc-cryptofeed-websocket\">NCC Cryptofeed Websocket</h1>\n<p>This section provides information on Newchange Crypto websocket services. All data in this section is derived from Crypto markets.</p>\n","event":[{"listen":"prerequest","script":{"type":"text/javascript","exec":[""],"id":"a94097ac-6d44-4adb-9ddd-7627c74638ac"}},{"listen":"test","script":{"type":"text/javascript","exec":["pm.sendRequest(\"https://postman-echo.com/get\", function (err, response) {","    console.log(response.json());","});"],"id":"9acca06b-2032-465b-924d-128ec54ace96"}}],"_postman_id":"b3e21064-9025-4273-97d7-884174844f15"},{"name":"FIAT","item":[],"id":"7fa17f0e-2a2f-4875-8360-76e3f64f4ff1","description":"<h1 id=\"overview\">Overview</h1>\n<p>Fiat data is available over websockets. If you require data via this channel, please speak to your account manager to enable this.</p>\n<p>A single websocket may request up to 255 instruments of the same type ( e.g.midrates or optioncuts or forward curves). Authentication and subscription are passed to the socket in the header at the time that the connection is opened. It is not possible to add or remove subscriptions to/from an existing websocket.</p>\n<p>On connection the latest rate will be delivered, subsequently new data will be delivered as it becomes available.</p>\n<h1 id=\"base-url\">Base URL</h1>\n<p>Fiat websockets are requested at:</p>\n<p>wss://fiat.ws.newchangefx.com/live/</p>\n<p>After this the URL must define the instrument type and instrument to be requested. The definition of instruments follows the same convention as REST requests (see Introduction for an overview of this) - however websocket connections do not support permissive requests - the instrument must be fully described.</p>\n<h3 id=\"option-cut-url\">Option cut URL</h3>\n<p>The option cut websocket URLs follow the convention:</p>\n<p>wss://fiat.ws.newchangefx.com/live/optioncut/v1/rates/</p>\n<p>For example the complete URL to connect to the Tokyo3pm option cut websocket is:</p>\n<p>wss://fiat.ws.newchangefx.com/live/optioncut/v1/rates/Tokyo3pm</p>\n<h3 id=\"midrate-url\">Midrate URL</h3>\n<p>The midrate websocket URLs follow the convention:</p>\n<p><em>baseURL</em>/live/midrate/v1/rates/<em>currencypair/tenor/type/route</em></p>\n<p>For example the complete URL to connect to the midrate websocket for Observed, Deliverable, GBPUSD Spot rates is:</p>\n<p>wss://fiat.ws.newchangefx.com/live/midrate/v1/rates/GBPUSD/SPT/D/O</p>\n<p>For explanations of type and route please see the Introduction. Available tenors are defined in the API documentation.</p>\n<h3 id=\"forward-curve-url\">Forward curve URL</h3>\n<p>The Forward curve websocket URLs follow the convention:</p>\n<p><em>baseURL</em>/live/fwdcurve/v1/rates/<em>currencypair/type/route</em></p>\n<p>For example the complete URL to connect to the midrate websocket for Observed, Deliverable, GBPUSD Forward curve rates is:</p>\n<p>wss://fiat.ws.newchangefx.com/live/fwdcurve/v1/rates/GBPUSD/D/O</p>\n<p>For explanations of type and route please see the Introduction. Forward curve data is delivered once every 10 seconds for each subscribed pair.</p>\n<h3 id=\"requesting-multiple-instruments-in-a-single-websocket\">Requesting multiple instruments in a single websocket</h3>\n<p>to request multiple instruments, create a comma separated string of the required instruments with '-' separating their parts. For example:</p>\n<p>Midrates:</p>\n<p>wss://fiat.ws.newchangefx.com/live/midrate/v1/rates/GBPUSD-SPT-D-O,EURUSD-SPT-D-O</p>\n<p>Forward curves:</p>\n<p>wss://fiat.ws.newchangefx.com/live/fwdcurve/v1/rates/GBPUSD-D-O,EURUSD-D-O</p>\n<h1 id=\"authentication\">Authentication</h1>\n<p>The fiat websockets support APIkey or Access Token authentication. Please see the introduction for a discussion of these alternatives. Please see the Authentication folders for documentation and examples for calling the Auth endpoint to get an Access Token. APIkeys are available on request from your account manager. The Access Token (also known as Bearer Token) or the APIKey must be presented in the Header of your websocket request.</p>\n<p>Example request (using WSCAT) for a midrate websocket for Observed, Deliverable, GBPUSD Spot rates with an APIkey:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-powershell\">wscat -c wss://fiat.ws.newchangefx.com/live/midrate/v1/rates/GBPUSD/SPT/D/O -H \"x-api-key: &lt;your APIkey&gt;\"\n\n</code></pre>\n<p>With an Access Token:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-powershell\">wscat -c wss://fiat.ws.newchangefx.com/live/midrate/v1/rates/GBPUSD/SPT/D/O -H \"Authorization: Bearer &lt;your access token&gt;\"\n\n</code></pre>\n<h1 id=\"heartbeat\">Heartbeat</h1>\n<p>Some midrate instruments are illiquid and therefore there can be large periods of time between updates. Option cut websockets are designed to deliver a single message once per day. In these situations the websocket connection will time-out unless it is kept alive by heartbeat PING/PONG messages.</p>\n<p>A heartbeat message must be initiated by the client, with the string:</p>\n<p>PING</p>\n<p>a response of</p>\n<p>PONG</p>\n<p>will be returned.</p>\n<p>The time-out on the websocket is 60 seconds in the absence of data being delivered, or a PING/PONG exchange.</p>\n","_postman_id":"7fa17f0e-2a2f-4875-8360-76e3f64f4ff1"}],"id":"6378f04e-8fe5-45ab-9865-1dfdea75c43f","_postman_id":"6378f04e-8fe5-45ab-9865-1dfdea75c43f","description":""},{"name":"List of HTTP status codes","item":[],"id":"9d1f2728-efec-4d94-80d9-b255c19e3029","description":"<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Code</th>\n<th><strong>Meaning</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>200</td>\n<td>OK - Standard response for successful HTTP requests.</td>\n</tr>\n<tr>\n<td>401</td>\n<td>Unauthorized – Invalid API Key</td>\n</tr>\n<tr>\n<td>403</td>\n<td>Forbidden or Too Many Requests – The request is forbidden or Access limit breached</td>\n</tr>\n<tr>\n<td>404</td>\n<td>Not Found – The specified resource could not be found</td>\n</tr>\n<tr>\n<td>405</td>\n<td>Method not accepted</td>\n</tr>\n<tr>\n<td>429</td>\n<td>Too many requests</td>\n</tr>\n<tr>\n<td>50X</td>\n<td>Service Unavailable</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"401-unauthorized\">401 Unauthorized</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"error\": {\n        \"code\": 401,\n        \"message\": \"Unauthorized\",\n        \"errors\": [\n            {\n                \"reason\": \"The 401 (Unauthorized) status code indicates that the request has not been applied because it lacks valid authentication credentials for the target resource. The server generating a 401 response MUST send a WWW-Authenticate header field (Section 4.1) containing at least one challenge applicable to the target resource.\"\n            }\n        ]\n    }\n}\n\n</code></pre>\n<h2 id=\"403-forbidden\">403 Forbidden</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"error\": {\n        \"code\": 403,\n        \"message\": \"Forbidden\",\n        \"errors\": [{\n            \"reason\": \"The 403 (Forbidden) status code indicates that the server understood the request but refuses to authorize it. A server that wishes to make public why the request has been forbidden can describe that reason in the response payload (if any).\"\n        }]\n    }\n}\n\n</code></pre>\n<h2 id=\"404-not-found\">404 Not Found</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"error\": {\n        \"code\": 404,\n        \"message\": \"Not Found\",\n        \"errors\": [\n            {\n                \"reason\": \"The 404 (Not Found) status code indicates that the origin server did not find a current representation for the target resource or is not willing to disclose that one exists. A 404 status code does not indicate whether this lack of representation is temporary or permanent; the 410 (Gone) status code is preferred over 404 if the origin server knows, presumably through some configurable means, that the condition is likely to be permanent.\"\n            }\n        ]\n    }\n}\n\n</code></pre>\n<h2 id=\"405-method-not-allowed\">405 Method Not Allowed</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"error\": {\n        \"code\": 405,\n        \"message\": \"Method Not Allowed\",\n        \"errors\": [{\n            \"reason\": \"The 405 (Method Not Allowed) status code indicates that the method received in the request-line is known by the origin server but not supported by the target resource. The origin server MUST generate an Allow header field in a 405 response containing a list of the target resource's currently supported methods.\"\n        }]\n    }\n}\n\n</code></pre>\n<h2 id=\"429-too-many-requests\">429 Too Many Requests</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"error\": {\n        \"code\": 429,\n        \"message\": \"Too Many Requests\",\n        \"errors\": [{\n            \"reason\": \"The 429 status code indicates that the user has sent too many requests in a given amount of time (\"rate limiting\").\"\n        }]\n    }\n}\n\n</code></pre>\n<h2 id=\"500-internal-server-error\">500 Internal Server Error</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"error\": {\n        \"code\": 500,\n        \"message\": \"Internal Server Error\",\n        \"errors\": [{\n            \"reason\": \"The 500 (Internal Server Error) status code indicates that the server encountered an unexpected condition that prevented it from fulfilling the request.\"\n        }]\n    }\n}\n\n</code></pre>\n<h2 id=\"504-gateway-timeout\">504 Gateway Timeout</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"error\": {\n        \"code\": 504,\n        \"message\": \"Gateway Timeout\",\n        \"errors\": [{\n            \"reason\": \"The 504 (Gateway Timeout) status code indicates that the server, while acting as a gateway or proxy, did not receive a timely response from an upstream server it needed to access in order to complete the request.\"\n        }]\n    }\n}\n\n</code></pre>\n","_postman_id":"9d1f2728-efec-4d94-80d9-b255c19e3029"}],"event":[{"listen":"prerequest","script":{"type":"text/javascript","exec":[""],"id":"07005555-eb1d-46be-ba36-a03812111127"}},{"listen":"test","script":{"type":"text/javascript","exec":[""],"id":"46c904cb-5ef5-4754-b383-9567ca538293"}}]}