Documentation Index
Fetch the complete documentation index at: https://uncoded.ch/docs/llms.txt
Use this file to discover all available pages before exploring further.
EURUSDT * LongTimeLong
EURUSDT | 3LongTimeLong.json | 2024-04-24 - 2026-02-25 | +0.09% | 1,723 closed trades | 100.0% closed WR | 17 open orders
Headline Performance
GET /backtests/{id} + /equity + /trades * Fields used: return_pct, final_value, total_profit, win_rate, fulfilled_trades, active_orders, unrealized_pnl_exit_net, max_profit, min_profitfinal_value - start_balance.Return
Final Value
Portfolio PnL
Realized Profit
Unrealized PnL
Win Rate (closed)
Closed Trades
Open Orders
Best Closed Trade
Worst Closed Trade
TL;DR
Performance KPI Metrics
GET /backtests/{id} + /equity + /trades * Fields used: server aggregates from /daily-stats and /extras (Total Fees, Gross Profit/Loss, fill-type counts) plus <AnalyticsCharts> KPI strip * Transform: bt.* + dailyStats.totals + extras.deep_dive.fill_type_breakdownMax Drawdown
Profit Factor
Sharpe Ratio
Total Fees
Avg Hold Time
TP / SL / TSL
Trade Economics
| Metric | Value | Interpretation |
|---|---|---|
| Profit Factor | inf (no losing trades) | Sum of winning trades / sum of losing trades. >1 = profitable edge, >2 = strong, inf = no losses. |
| Gross Profit | 22.13 USDT | Sum of all winning trades before fees. |
| Gross Loss | 0.00 USDT | Absolute sum of all losing trades. |
| Total Fees | 13.06 USDT | Buy + sell fees across all trades. |
| Fee Drag | 59.0% of gross profit | What share of edge the exchange consumed. |
| Avg Hold Time | 110.7 h | Mean duration a position is open. |
Exit Mix (Fill Types)
| Exit Type | Count | Share | What It Means |
|---|---|---|---|
| TP (Take Profit) | 1,723 | 100.0% | Position closed by hitting the profit target - the desired outcome. |
| SL (Stop Loss) | 0 | 0.0% | Position closed by hitting the stop - capital preservation in action. |
| TSL (Trailing Stop) | 0 | 0.0% | Trailing stop locked in profit during a trend. |
Verdict
For EURUSDT, the strategy’s profit factor of inf (no losing trades) indicates gross winners materially exceeded gross losers in this window, exits are TP-dominant (100.0%), so most profit comes from hitting take-profit targets, fees ate 59.0% of gross profit - over-trading risk.Chunking & Headings Guide
Chunk markers
Every section is delimited by paired JSX comments - invisible to readers, trivial for splitters. (Earlier versions of this exporter used HTML comments; we switched to JSX comments in v2.4.0 because MDX 3 - the parser Mintlify uses - forbids HTML comments at the document level.) The example below uses uppercaseRAG-CHUNK so it doesn’t accidentally match a splitter that scans this very page; real markers use lowercase rag-chunk:
{/* RAG-CHUNK:start id="tldr" type="summary" title="TL;DR" tokens~="120" backtest_id="99bdb498-e08b-42f5-8024-b35ceee3c0b1" */}
...section markdown...
{/* RAG-CHUNK:end id="tldr" */}
\{/\*\s*rag-chunk:(start|end)\b[^*]*\*/\} and treat everything between a matching start/end pair (same id) as one indivisible chunk. Never split inside a chunk. (For backwards compatibility with v2.3.x exports, splitters can OR-match the legacy regex <!--rag-chunk:(start|end)\b[^>]*-->.)
Heading convention
# Title- appears exactly once (the document title in the intro chunk).## Section- opens every top-level chunk. Heading text matches the chunk’stitleattribute.### Sub-section- purely visual; never introduces a new chunk.####and deeper - reserved for inline detail (e.g. per-chart sub-blocks inside the catalogue).
Chunk type taxonomy
| Type | Purpose | Best for retrieval of… |
|---|---|---|
meta | Frontmatter & document intro | document-identity questions |
summary | TL;DR-style condensed prose | ”give me the headline” |
kpis | Headline numbers, card grids | numeric lookups |
overview | Tabular meta (period, balance, …) | “what was tested” |
comparison | Strategy vs benchmark | ”did it beat buy & hold” |
claims | Assertion -> evidence -> source | citation-grade answers |
config | Reproduction parameters | ”how do I rerun this” |
chart | Single visualization w/ embedded data | chart-specific questions |
catalogue | Multi-chart bundle | exploratory chart questions |
risk / allocation / trade-stats / monthly / top-trades | Domain-specific analytics | targeted KPI questions |
validation | Data-quality report | trust / sanity questions |
facts | Machine-readable JSON + key-value | deterministic lookups |
qa | Pre-answered FAQ | direct Q&A retrieval |
glossary | Term definitions | disambiguation |
narrative | Human-oriented prose | ”explain like I’m…” |
structured | JSON-LD / schema.org | search-engine indexing |
provenance | Metric -> API field -> formula lookup | ”where does this number come from” |
integrity | SHA-256 fingerprints of raw API payloads | tamper-evidence checks |
attachments | Verbatim API responses + trade-sample CSV (full ledger via /trades pagination) | byte-level reproduction |
footer | Disclaimers, links | compliance lookups |
Recommended ingestion pipeline
- Split on
{/* rag-chunk:start ... */}/{/* rag-chunk:end ... */}boundaries. - Use the
idattribute as the vector-store primary key - stable across re-exports. - Store
type,title,tokens~, andbacktest_idas filterable metadata. - Do not further chunk the
facts,claims,qa, orstructuredsections - they’re designed to be retrieved whole. - The
cataloguechunk is large; if your context budget is tight, split it on its###sub-headings instead of dropping it.
Performance Analysis
GET /backtests/{id} + /equity + /trades * Fields used: same prose rendered on the live page by <BacktestInterpretation> - pure, deterministic, no LLM * Transform: buildBacktestInterpretation(bt)Methodology & data
This backtest was executed on historical Binance Spot 1-minute candles for EURUSDT, with intrabar fill simulation in “OLHC” mode and a synthetic order latency of 2s applied to each fill to approximate real-world routing delay. The simulator processes every minute sequentially, evaluates the LongTimeLong rule set, and books fills against the next available bar - a standard event-driven backtesting approach that avoids look-ahead bias. Equity is marked-to-market on every closed trade and aggregated into the equity curve shown above. Configured backtest window: approximately 22.1 months (673 days fromconfig.from to config.to) of EURUSDT 1-minute price action - a sample size that is large enough to span multiple short-term regimes. Note: the equity series may cover fewer days if the engine omits leading or trailing flat periods (e.g. dates before the asset began trading); see the Overview section for the exact equity-coverage span.
Live trading considerations
Translating this result to live trading: EURUSDT is a deeply-liquid USDT-quoted pair on Binance, so the simulated fills here translate well to live execution at retail size. Lower trade frequency keeps slippage drag minimal, so live results should track the backtest more closely than a high-frequency configuration would. Without a hard stop-loss, the live system depends on the take-profit ladder firing during recovery legs; a prolonged downtrend without recovery will hold positions open longer than backtest aggregates suggest. Additionally, exchange downtime, API rate limits, and funding-rate changes (on perp variants) are not modelled here and should be accounted for in production deployment.Frequently asked questions
Is a 0.09% return on EURUSDT a good backtest result?
Is a 0.09% return on EURUSDT a good backtest result?
What does the 100.0% win rate mean here?
What does the 100.0% win rate mean here?
What is the annualised return for this EURUSDT backtest?
What is the annualised return for this EURUSDT backtest?
Can I run this exact LongTimeLong configuration live?
Can I run this exact LongTimeLong configuration live?
How is this backtest different from others on EURUSDT?
How is this backtest different from others on EURUSDT?
Overview
GET /backtests/{id} * Fields used: symbol, mode_name, config.from, config.to, start_balance, final_value, avg_profit, status, created_at, started_at, completed_at, elapsed_sec, is_duplicate, data_file, id, summary_text| Field | Value |
|---|---|
| Trading Pair | EURUSDT |
| Strategy | LongTimeLong |
| Period | 2024-04-24 -> 2026-02-25 |
| Configured window (inclusive elapsed) | 673.0 days (1.84 years) - (config.to - config.from) / 86 400 000 ms |
| Configured window (calendar days) | 673 days - Math.round of the elapsed value above; this is what the narrative paragraph quotes |
| Equity-stat duration | 672.0 days (1.84 years) - first -> last equity sample timestamp; used for CAGR / Sharpe / Sortino |
| Coverage gap | configured window is 673.0 days but equity samples span only 672.0 days - the engine omitted leading/trailing flat periods (e.g. dates before the asset began trading on the venue) |
| Start Balance | 10,000.00 USDT |
| Final Value | 10,008.88 USDT |
| Avg Profit / Trade | +0.0053 USDT |
| Trades / Month | 77.9 |
| Status | completed |
| Created | 2026-05-08 13:39:05 UTC |
| Started | 2026-05-09 22:18:46 UTC |
| Completed | 2026-05-09 22:22:35 UTC |
| Compute Time | 2m 9s |
| Backtest ID | 99bdb498-e08b-42f5-8024-b35ceee3c0b1 |
| Engine summary: |
Backtest EURUSDT (Mode: 3LongTimeLong.json)
Period: 2024-04-24 00:00:01 to 2026-02-25 23:59:59
Starting balance: 10,000.00 USDT
Final value: 10,008.88 USDT
P&L: +8.88 USDT (+0.09%)
Result: PROFIT
Completed trades: 1723
Open orders at end: 17
Win rate: 100.0%
Avg. profit/trade: 0.005267 USDT
Best trade: 0.005575 USDT
Worst trade: 0.005033 USDT
Total profit (trades only): 9.075603 USDT
Max drawdown: -0.04%
Profit factor: inf (no losing trades)
Sharpe ratio: 0.79
Total fees: 13.06 USDT
Avg hold time: 110.7h
TP / SL / TSL: 1723 / 0 / 0
Strategy parameters:
Buy trigger: -0.1% from last buy
Buy splits: 9
Sell targets: [0.25, 0.35, 0.5, 0.75, 1.0, 2.5, 5.0, 10.0, 15.0]
Investment per buy: 25.0 USDT
Fees: maker 7.5 bps / taker 7.5 bps
Elapsed: 129.4s
Verifiable Claims
| Claim | Evidence | Source |
|---|---|---|
| Strategy returned +0.09% over the tested window | return_pct = 0.0888 | GET /backtests/{id} -> return_pct |
| Capital grew from 10,000.00 to 10,008.88 USDT | final_value - start_balance = +8.88 USDT | GET /backtests/{id} -> start_balance, final_value |
| Roughly 1723 of 1723 trades were profitable | win_rate = 100% | GET /backtests/{id} -> win_rate, fulfilled_trades |
| Worst peak-to-trough loss was 0.04% | max_drawdown_pct = 0.0396 | derived client-side from /equity series |
| Risk-adjusted return (Sharpe, annualized, rf=0) = 0.79 | sharpe_annualized = 0.7871 | derived from daily-resampled equity returns |
Strategy Configuration
GET /backtests/{id} * Fields used: mode_name, config (full JSON payload)- Highlights
- Full JSON
| Parameter | Value |
|---|---|
canBuy | true |
canSell | true |
canBuyUp | true |
startBal | 10000 |
stepSize | 0.1 |
stopLoss | false |
tickSize | 0.0001 |
buySplits | 9 |
{
"to": "2026-02-25 23:59:59",
"from": "2024-04-24 00:00:01",
"canBuy": true,
"symbol": "EURUSDT",
"canSell": true,
"canBuyUp": true,
"startBal": 10000,
"stepSize": 0.1,
"stopLoss": false,
"tickSize": 0.0001,
"buySplits": 9,
"buyVolumes": [
20,
15,
10,
10,
10,
10,
5,
5,
5
],
"canBuyDown": false,
"minNotional": 5,
"buyPercentage": 0.1,
"fees_in_quote": true,
"intrabar_mode": "OLHC",
"maker_fee_bps": 7.5,
"taker_fee_bps": 7.5,
"sellPercentages": [
0.25,
0.35,
0.5,
0.75,
1,
2.5,
5,
10,
15
],
"triggerCoolDown": 1,
"investmentPerBuy": 25,
"assumed_spread_bps": 0,
"stopLossPercentage": 5,
"investmentPercentMode": false,
"minInvestmentPerQuote": 25,
"order_latency_seconds": 2,
"trailingStopLossPercentages": [
0,
0,
0,
0,
0,
0,
0,
0,
0
],
"sellCancelDistancePercentage": 1,
"dontBuyBelowQuoteAssetBalance": 1,
"investmentPerFreeQuotePercent": 0.01,
"sellActivateDistancePercentage": 0.1
}
Full Mode Configuration
POST /backtests to reproduce the run.- Engine Parameters
- YAML
| Parameter | Value | Meaning |
|---|---|---|
assumed_spread_bps | 0 | Spread (basis points) added to taker fills on top of the candle price. |
buyPercentage | 0.1 | Buy-trigger threshold as a fraction (e.g. 0.1 = -0.1% from last reference price). |
buySplits | 9 | Number of price levels in the buy-ladder (DCA depth). |
buyVolumes | [20,15,10,10,10,10,5,5,5] | Per-split sizing weights (sum ~ 100). Distributes investmentPerBuy x buySplits across the ladder. |
canBuy | true | Master switch - disables all buy-side logic when false. |
canBuyDown | false | Allow re-entries below the last buy price. |
canBuyUp | true | Allow re-entries above the last buy price (true) or only below (false). |
canSell | true | Master switch - disables all sell-side logic when false. |
dontBuyBelowQuoteAssetBalance | 1 | Refuse to open new buys if free quote drops below this absolute USDT amount. |
fees_in_quote | true | If true, fees are deducted from the quote (USDT) leg of every fill. |
intrabar_mode | OLHC | Intra-bar fill model (OLHC, OHLC, …) - see ENGINE.md Section 4. |
investmentPerBuy | 25 | Notional invested per buy event, in quote (USDT). |
investmentPerFreeQuotePercent | 0.01 | When investmentPercentMode = true: fraction of free quote balance to commit per buy. |
investmentPercentMode | false | If true, sizing is taken as a fraction of free quote balance instead of fixed USDT. |
maker_fee_bps | 7.5 | Maker fee in basis points (e.g. 7.5 = 0.075%). |
minInvestmentPerQuote | 25 | Hard floor on per-buy notional, regardless of percent-mode math. |
minNotional | 5 | Exchange minimum notional per order (USDT). |
order_latency_seconds | 2 | Latency injected between signal time and order placement. |
sellActivateDistancePercentage | 0.1 | Distance from buy price (%) at which a TSL becomes armed. |
sellCancelDistancePercentage | 1 | Distance (%) at which an unfilled sell order is cancelled and re-priced. |
sellPercentages | [0.25,0.35,0.5,0.75,1,2.5,5,10,15] | Take-profit ladder, each value is the per-tier profit target as a fraction. |
startBal | 10000 | Initial portfolio value in the quote currency (USDT). |
stepSize | 0.1 | Exchange size step (base asset). |
stopLoss | false | Hard stop-loss enabled flag. |
stopLossPercentage | 5 | Hard stop-loss distance from entry as a percent (5.0 = -5%). |
taker_fee_bps | 7.5 | Taker fee in basis points. |
tickSize | 0.0001 | Exchange price tick (quote currency). |
trailingStopLossPercentages | [0,0,0,0,0,0,0,0,0] | Per-tier trailing-SL distances. Zero entries disable TSL on that tier. |
triggerCoolDown | 1 | Minimum bars/ticks between two consecutive buys on the same level. |
to: "2026-02-25 23:59:59"
from: "2024-04-24 00:00:01"
canBuy: true
symbol: EURUSDT
canSell: true
canBuyUp: true
startBal: 10000
stepSize: 0.1
stopLoss: false
tickSize: 0.0001
buySplits: 9
buyVolumes:
- 20
- 15
- 10
- 10
- 10
- 10
- 5
- 5
- 5
canBuyDown: false
minNotional: 5
buyPercentage: 0.1
fees_in_quote: true
intrabar_mode: OLHC
maker_fee_bps: 7.5
taker_fee_bps: 7.5
sellPercentages:
- 0.25
- 0.35
- 0.5
- 0.75
- 1
- 2.5
- 5
- 10
- 15
triggerCoolDown: 1
investmentPerBuy: 25
assumed_spread_bps: 0
stopLossPercentage: 5
investmentPercentMode: false
minInvestmentPerQuote: 25
order_latency_seconds: 2
trailingStopLossPercentages:
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
sellCancelDistancePercentage: 1
dontBuyBelowQuoteAssetBalance: 1
investmentPerFreeQuotePercent: 0.01
sellActivateDistancePercentage: 0.1
Strategy Logic
strategyLogic object to buildVerifiableMdx (or wire up getModes() so the exporter can derive a sketch) to remove this notice.GET /modes and select the entry whose filename == "3LongTimeLong.json" to inspect the public rule fields, or consult the engine source for the executable logic.
Engine Specification
engine_version field in this document’s frontmatter (see also the Data Source Metadata section).Engine Specification
uncoded.ch/docs/engine; this report only pins which revision applied (engine_version in the frontmatter).
Data Source Metadata
buildVerifiableMdx({ dataSource: ... }) to fill it in. The engine spec describes deterministic execution semantics (segment order, fill rules, fee classification) that cannot be reverse-engineered from trades alone.| Field | Value | Source |
|---|---|---|
| Market-data provider | Binance Spot | caller DataSourceInput.provider |
| Exchange / venue | binance | caller DataSourceInput.exchange |
| Symbol | EURUSDT | GET /backtests/{id} -> $.symbol |
| Candle interval | 1m | platform invariant - all backtests run on 1-minute OHLCV candles |
| First candle (UTC) | 2024-04-24 00:00:01 | GET /backtests/{id} -> $.config.from |
| Last candle (UTC) | 2026-02-25 23:59:59 | GET /backtests/{id} -> $.config.to |
| Timezone | UTC | default assumption (UTC) |
| Engine version | uncoded-engine (FastAPI backend) | caller DataSourceInput.engineVersion |
| Engine spec version | 1.1 | caller DataSourceInput.engineSpecVersion |
| Engine spec document | https://uncoded.ch/docs/engine | caller DataSourceInput.engineSpecPath |
Equity Curve
GET /backtests/{id}/equity * Fields used: timestamp, total_value_exit_net, total_value_mid, total_value 10,010 | # ##
| ## ##### # ##:##::#
| ##::##:::::#:###::::::::
| #### #::::::::::::::::::::::::
| ##::::#:::::::::::::::::::::::::
| ::::::::::::::::::::::::::::::::
| ::::::::::::::::::::::::::::::::
| # ########## # # ##::::::::::::::::::::::::::::::::
|#### #:#::::::::::#:## :#::::::::::::::::::::::::::::::::::
9,998 |::::##:::::::::::::::::#::::::::::::::::::::::::::::::::::::
+------------------------------------------------------------
start end
Risk & Quality Metrics
GET /backtests/{id}/equity * Fields used: timestamp, total_value_exit_net, total_value_mid, total_value, base_asset_bal (for time-in-market)Max Drawdown
CAGR
Volatility (ann.)
Sharpe Ratio
Sortino Ratio
Time in Market
Drawdown Detail
| Field | Value |
|---|---|
| Peak | 10,001.24 USDT @ 2024-09-26 23:59:00 UTC |
| Trough | 9,997.28 USDT @ 2025-01-10 23:59:00 UTC |
| Drawdown Duration | 106.0 days |
| Recovery | 2025-02-17 23:59:00 UTC (38.0 days to recover) |
| All-time Peak | 10,010.29 USDT |
Final Portfolio Allocation
GET /backtests/{id}/equity * Fields used: total_value_exit_net, quote_asset_bal, base_asset_bal, base_value_exit_net, base_value_mid, unrealized_pnl_exit_net| Asset | Quantity | Value (USDT) | Allocation |
|---|---|---|---|
| USDT (Cash) | 9,895.46 | 9,895.46 | 98.9% |
| EUR | 96.10000000 | 0.00 | 0.0% |
| Other (open positions, fee reserves, …) | - | 113.42 | 1.1% |
| Total | - | 10,008.88 | 100.0% |
Trade Analytics
GET /backtests/{id}/trades * Fields used: profit, profit_percentage, fill_type, buy_time, sell_time, buy_price, sell_price, buy_quantity, buy_fee_in_quote, sell_fee_in_quoteWins
Losses
Breakeven
Profit Factor
Payoff Ratio
Expectancy / Trade
Avg Win
Avg Loss
Median Trade
Max Win Streak
Max Loss Streak
Avg Holding
Median Holding
Total Volume
Total Fees
Gross Performance
| Metric | Value | Source |
|---|---|---|
| Gross Profit (winners only) | +0.51 USDT | Sum profit where profit > 0 (client-side from /trades) |
| Gross Loss (losers only) | -0.00 USDT | Sum -profit where profit < 0 (client-side from /trades) |
| Net Profit | +0.51 USDT | Gross Profit - Gross Loss |
| Closed-trade buy fees | 0.37 USDT | Sum buy_fee_in_quote over matched-pair rows of /trades |
| Closed-trade sell fees | 0.37 USDT | Sum sell_fee_in_quote over matched-pair rows of /trades |
| Closed-trade fees subtotal | 0.74 USDT | buy + sell on matched pairs |
| Open-position buy fees | 12.31 USDT | bt.total_fees - closed-trade subtotal - buy-side fees on the 17 orders still open at end of window (no matching sell row yet) |
| Total Fees Paid (authoritative) | 13.06 USDT | bt.total_fees - engine-tracked sum of every fee actually paid (closed + open buy fills). reconciles to closed-fees + open-position buy fees |
| Fees as % of Gross Profit | 2539.04% | Total Fees / Gross Profit |
bt.total_fees is the engine-tracked total of every fee actually paid. Per-trade rows in /trades only emit on matched buy+sell pairs, so positions still open at end-of-window contribute their buy-fee to bt.total_fees but not to the per-trade sum. The identity is exact:
bt.total_fees = Sum closed-trade (buy_fee + sell_fee) + Sum open-position buy_fees
Citation rules: use Total Fees Paid for the headline (the authoritative number every consumer should quote), use Closed-trade fees subtotal when reasoning specifically about realized round-trip economics, and use Open-position buy fees when sizing the unrealized exposure of the still-open ladder.Advanced - mechanical breakdown from API field mapping
Advanced - mechanical breakdown from API field mapping
| Line item | Formula | API field(s) | Endpoint |
|---|---|---|---|
| Closed-trade buy fees | Sum row.buy_fee_in_quote | buy_fee_in_quote per row | GET /backtests/99bdb498-e08b-42f5-8024-b35ceee3c0b1/trades |
| Closed-trade sell fees | Sum row.sell_fee_in_quote | sell_fee_in_quote per row | GET /backtests/99bdb498-e08b-42f5-8024-b35ceee3c0b1/trades |
| (A) Closed-trade subtotal | Sum (buy_fee_in_quote + sell_fee_in_quote) | both fee fields, matched-pair rows only | GET /backtests/99bdb498-e08b-42f5-8024-b35ceee3c0b1/trades |
| (B) Total Fees Paid (engine) | direct read | total_fees (scalar) | GET /backtests/99bdb498-e08b-42f5-8024-b35ceee3c0b1 |
| (C) = (B) - (A) Open-position buy fees | bt.total_fees - closed_subtotal | derived | - |
| Open orders count | direct read | active_orders | GET /backtests/99bdb498-e08b-42f5-8024-b35ceee3c0b1 |
| Numerical walk-through for this run: |
(A) Closed-trade subtotal = 0.371898 + 0.371155
= 0.743053 USDT
(B) bt.total_fees = 13.057264 USDT <- authoritative
(C) Open-position buy fees = (B) - (A)
= 13.057264 - 0.743053
= 12.314211 USDT
Identity check: (A) + (C) ?= (B)
0.743053 + 12.314211 = 13.057264 USDT
vs bt.total_fees = 13.057264 USDT -> matches within 0.01
/trades rows emit only on matched buy+sell pairs. A buy fill that hasn’t found its sell yet (still sitting in the DCA ladder at end-of-window) has already paid its fee - that fee is included in bt.total_fees (B) but not in any per-trade row, so it is not part of (A). The remainder (C) is therefore the buy-side fee paid on the 17 open orders.Holding Period Distribution
| Min | Median | Avg | Max |
|---|---|---|---|
| 0.0h | 19.1h | 95.4h | 4103.8h |
Trade Timeline
| First Trade | Last Trade |
|---|---|
| 2024-04-24 14:11:00 UTC | 2026-02-25 17:10:00 UTC |
Breakdown by Exit Type
| Type | Count | Cumulative Profit | Avg Return |
|---|---|---|---|
TP | 98 | +0.51 USDT | +0.10% |
Monthly Performance
GET /backtests/{id}/trades * Fields used: sell_time (bucket key), profit| Month | Trades | Wins | Win Rate | Net P&L (USDT) |
|---|---|---|---|---|
| 2024-04 | 4 | 4 | 100.0% | +0.02 |
| 2024-05 | 21 | 21 | 100.0% | +0.11 |
| 2024-07 | 1 | 1 | 100.0% | +0.01 |
| 2024-08 | 5 | 5 | 100.0% | +0.03 |
| 2024-09 | 5 | 5 | 100.0% | +0.03 |
| 2024-10 | 1 | 1 | 100.0% | +0.01 |
| 2024-11 | 2 | 2 | 100.0% | +0.01 |
| 2024-12 | 7 | 7 | 100.0% | +0.04 |
| 2025-01 | 6 | 6 | 100.0% | +0.03 |
| 2025-02 | 1 | 1 | 100.0% | +0.01 |
| 2025-03 | 5 | 5 | 100.0% | +0.03 |
| 2025-04 | 5 | 5 | 100.0% | +0.03 |
| 2025-05 | 6 | 6 | 100.0% | +0.03 |
| 2025-10 | 1 | 1 | 100.0% | +0.01 |
| 2026-01 | 9 | 9 | 100.0% | +0.05 |
| 2026-02 | 19 | 19 | 100.0% | +0.10 |
Top Trades
GET /backtests/{id}/trades * Fields used: fill_type, buy_time, sell_time, buy_price, sell_price, profit, profit_percentageTop 10 Winners
Top 10 Winners
| # | Type | Period | Buy | Sell | Profit | % |
|---|---|---|---|---|---|---|
| 1 | TP | 2024-12-31 -> 2024-12-31 | 1.040100 | 1.042800 | +0.0056 | +0.11% |
| 2 | TP | 2025-01-21 -> 2025-01-21 | 1.040400 | 1.043100 | +0.0056 | +0.11% |
| 3 | TP | 2024-12-23 -> 2024-12-24 | 1.040500 | 1.043200 | +0.0056 | +0.11% |
| 4 | TP | 2024-12-18 -> 2024-12-22 | 1.040600 | 1.043300 | +0.0056 | +0.11% |
| 5 | TP | 2025-01-23 -> 2025-01-24 | 1.040600 | 1.043300 | +0.0056 | +0.11% |
| 6 | TP | 2024-12-31 -> 2024-12-31 | 1.040700 | 1.043400 | +0.0056 | +0.11% |
| 7 | TP | 2024-12-24 -> 2024-12-27 | 1.041000 | 1.043700 | +0.0056 | +0.11% |
| 8 | TP | 2025-01-29 -> 2025-01-30 | 1.041000 | 1.043700 | +0.0056 | +0.11% |
| 9 | TP | 2025-01-20 -> 2025-01-20 | 1.041100 | 1.043800 | +0.0056 | +0.11% |
| 10 | TP | 2025-01-21 -> 2025-01-22 | 1.041100 | 1.043800 | +0.0056 | +0.11% |
Top 10 Losers
Top 10 Losers
Charts Catalogue
GET /backtests/{id} + /equity + /trades * Fields used: every chart from the live <AnalyticsCharts> UI, with the exact transform + API fields it consumesX-API-Key.- Equity & Balance
- Trade Analysis
- Risk & Recovery
- Deep Dive
- Advanced
Drawdown
GET /backtests/{id}/equity * Fields used: timestamp, total_value_exit_net * Transform: computeDrawdown(equity)drawdown).| Stat | Value |
|---|---|
| Shallowest DD | 0.00% @ 2024-04-24 23:59:00 UTC |
| Deepest DD | -0.04% @ 2025-01-10 23:59:00 UTC |
| Mean | -0.01% |
| Std Dev | 0.01% |
| Last | -0.01% |
| Points | 673 |
| Across 673 points the series ranged from -0.04% (2025-01-10 23:59:00 UTC) to 0.00% (2024-04-24 23:59:00 UTC), averaging -0.01%. 0% of points were positive, 88% negative. The most recent value is -0.01%. | |
| Showing 60 of 673 points (down-sampled for readability). |
[{"timestamp":"2024-04-24T23:59:00+00:00","drawdown":0},{"timestamp":"2024-05-05T23:59:00+00:00","drawdown":0},{"timestamp":"2024-05-17T23:59:00+00:00","drawdown":-0.00005351245353073659},{"timestamp":"2024-05-28T23:59:00+00:00","drawdown":-0.004943636516870456},{"timestamp":"2024-06-09T23:59:00+00:00","drawdown":-0.010988100105065412},{"timestamp":"2024-06-20T23:59:00+00:00","drawdown":-0.015473996695312082},{"timestamp":"2024-07-01T23:59:00+00:00","drawdown":-0.012552315671265624},{"timestamp":"2024-07-13T23:59:00+00:00","drawdown":0},{"timestamp":"2024-07-24T23:59:00+00:00","drawdown":-0.004463494992312874},{"timestamp":"2024-08-05T23:59:00+00:00","drawdown":0},{"timestamp":"2024-08-16T23:59:00+00:00","drawdown":0},{"timestamp":"2024-08-27T23:59:00+00:00","drawdown":-0.00038928623244469877},{"timestamp":"2024-09-08T23:59:00+00:00","drawdown":-0.0010413767900314598},{"timestamp":"2024-09-19T23:59:00+00:00","drawdown":0},{"timestamp":"2024-09-30T23:59:00+00:00","drawdown":-0.0005299683142393778},{"timestamp":"2024-10-12T23:59:00+00:00","drawdown":-0.003039983623856431},{"timestamp":"2024-10-23T23:59:00+00:00","drawdown":-0.007901467831157177},{"timestamp":"2024-11-04T23:59:00+00:00","drawdown":-0.0035196485846895106},{"timestamp":"2024-11-15T23:59:00+00:00","drawdown":-0.011109540032001762},{"timestamp":"2024-11-26T23:59:00+00:00","drawdown":-0.01551301588919879},{"timestamp":"2024-12-08T23:59:00+00:00","drawdown":-0.005933111559053225},{"timestamp":"2024-12-19T23:59:00+00:00","drawdown":-0.029442228952921718},{"timestamp":"2024-12-31T23:59:00+00:00","drawdown":-0.02160273537586793},{"timestamp":"2025-01-11T23:59:00+00:00","drawdown":-0.036992567961811676},{"timestamp":"2025-01-22T23:59:00+00:00","drawdown":-0.011347849339065835},{"timestamp":"2025-02-03T23:59:00+00:00","drawdown":-0.02418839221742908},{"timestamp":"2025-02-14T23:59:00+00:00","drawdown":-6.101992275026169e-7},{"timestamp":"2025-02-26T23:59:00+00:00","drawdown":-0.0018761815770354953},{"timestamp":"2025-03-09T23:59:00+00:00","drawdown":0},{"timestamp":"2025-03-20T23:59:00+00:00","drawdown":-0.0016881304209217139},{"timestamp":"2025-04-01T23:59:00+00:00","drawdown":-0.0006536244358938794},{"timestamp":"2025-04-12T23:59:00+00:00","drawdown":-0.0005392661942400309},{"timestamp":"2025-04-23T23:59:00+00:00","drawdown":-0.007016910530258073},{"timestamp":"2025-05-05T23:59:00+00:00","drawdown":-0.00765004422827919},{"timestamp":"2025-05-16T23:59:00+00:00","drawdown":-0.019748411796447207},{"timestamp":"2025-05-28T23:59:00+00:00","drawdown":-0.011331275333040557},{"timestamp":"2025-06-08T23:59:00+00:00","drawdown":-0.0019475213416693493},{"timestamp":"2025-06-19T23:59:00+00:00","drawdown":-0.0020428257064455434},{"timestamp":"2025-07-01T23:59:00+00:00","drawdown":0},{"timestamp":"2025-07-12T23:59:00+00:00","drawdown":-0.0010654405960583977},{"timestamp":"2025-07-24T23:59:00+00:00","drawdown":-0.0006002674884040579},{"timestamp":"2025-08-04T23:59:00+00:00","drawdown":-0.007281087527451796},{"timestamp":"2025-08-15T23:59:00+00:00","drawdown":-0.0035221454753849675},{"timestamp":"2025-08-27T23:59:00+00:00","drawdown":-0.005795040774374603},{"timestamp":"2025-09-07T23:59:00+00:00","drawdown":-0.0018001468017250957},{"timestamp":"2025-09-19T23:59:00+00:00","drawdown":-0.007365723491057554},{"timestamp":"2025-09-30T23:59:00+00:00","drawdown":-0.006735097428916978},{"timestamp":"2025-10-11T23:59:00+00:00","drawdown":-0.02816799144339156},{"timestamp":"2025-10-23T23:59:00+00:00","drawdown":-0.011380393408992114},{"timestamp":"2025-11-03T23:59:00+00:00","drawdown":-0.01976585773913178},{"timestamp":"2025-11-14T23:59:00+00:00","drawdown":-0.00906629004461684},{"timestamp":"2025-11-26T23:59:00+00:00","drawdown":-0.010515697804040996},{"timestamp":"2025-12-07T23:59:00+00:00","drawdown":-0.007334501213571089},{"timestamp":"2025-12-19T23:59:00+00:00","drawdown":-0.0021454664289769824},{"timestamp":"2025-12-30T23:59:00+00:00","drawdown":-0.002332174563812905},{"timestamp":"2026-01-10T23:59:00+00:00","drawdown":-0.010891610649062414},{"timestamp":"2026-01-22T23:59:00+00:00","drawdown":-0.0009212147289530315},{"timestamp":"2026-02-02T23:59:00+00:00","drawdown":-0.015769583993118383},{"timestamp":"2026-02-14T23:59:00+00:00","drawdown":-0.011067706417607098},{"timestamp":"2026-02-25T23:59:00+00:00","drawdown":-0.01406414777135223}]
Unrealized PnL
GET /backtests/{id}/equity * Fields used: timestamp, unrealized_pnl_exit_net * Transform: equity.map(p => ({ pnl: p.unrealized_pnl_exit_net }))pnl).| Stat | Value |
|---|---|
| Best Unrealized | 27.46 USDT @ 2026-02-22 23:59:00 UTC |
| Worst Unrealized | -6.69 USDT @ 2025-02-02 23:59:00 UTC |
| Mean | 5.39 USDT |
| Std Dev | 9.87 USDT |
| Last | 27.38 USDT |
| Points | 673 |
| Sum | 3,628.80 USDT |
| Across 673 points the series ranged from -6.69 USDT (2025-02-02 23:59:00 UTC) to 27.46 USDT (2026-02-22 23:59:00 UTC), averaging 5.39 USDT. 44% of points were positive, 56% negative. The most recent value is 27.38 USDT. | |
| Showing 60 of 673 points (down-sampled for readability). |
[{"timestamp":"2024-04-24T23:59:00+00:00","pnl":-0.0070653925},{"timestamp":"2024-05-05T23:59:00+00:00","pnl":-0.017995125},{"timestamp":"2024-05-17T23:59:00+00:00","pnl":-0.01741091},{"timestamp":"2024-05-28T23:59:00+00:00","pnl":-0.566921135},{"timestamp":"2024-06-09T23:59:00+00:00","pnl":-1.22570147},{"timestamp":"2024-06-20T23:59:00+00:00","pnl":-1.7259206575},{"timestamp":"2024-07-01T23:59:00+00:00","pnl":-1.4748209225},{"timestamp":"2024-07-13T23:59:00+00:00","pnl":-0.2193339425},{"timestamp":"2024-07-24T23:59:00+00:00","pnl":-0.5742875375},{"timestamp":"2024-08-05T23:59:00+00:00","pnl":-0.32243062},{"timestamp":"2024-08-16T23:59:00+00:00","pnl":-0.106567895},{"timestamp":"2024-08-27T23:59:00+00:00","pnl":-0.0389325375},{"timestamp":"2024-09-08T23:59:00+00:00","pnl":-0.17158702},{"timestamp":"2024-09-19T23:59:00+00:00","pnl":-0.0481563},{"timestamp":"2024-09-30T23:59:00+00:00","pnl":-0.0791377875},{"timestamp":"2024-10-12T23:59:00+00:00","pnl":-0.4574023475},{"timestamp":"2024-10-23T23:59:00+00:00","pnl":-1.1747094475},{"timestamp":"2024-11-04T23:59:00+00:00","pnl":-0.8614621575},{"timestamp":"2024-11-15T23:59:00+00:00","pnl":-2.477648025},{"timestamp":"2024-11-26T23:59:00+00:00","pnl":-3.289038565},{"timestamp":"2024-12-08T23:59:00+00:00","pnl":-2.54544237},{"timestamp":"2024-12-19T23:59:00+00:00","pnl":-5.0947293975},{"timestamp":"2024-12-31T23:59:00+00:00","pnl":-4.5103113825},{"timestamp":"2025-01-11T23:59:00+00:00","pnl":-6.234319875},{"timestamp":"2025-01-22T23:59:00+00:00","pnl":-4.114229255},{"timestamp":"2025-02-03T23:59:00+00:00","pnl":-5.57280462},{"timestamp":"2025-02-14T23:59:00+00:00","pnl":-3.324543385},{"timestamp":"2025-02-26T23:59:00+00:00","pnl":-3.14388132},{"timestamp":"2025-03-09T23:59:00+00:00","pnl":-0.7052363725},{"timestamp":"2025-03-20T23:59:00+00:00","pnl":0.0025507425},{"timestamp":"2025-04-01T23:59:00+00:00","pnl":0.0576239875},{"timestamp":"2025-04-12T23:59:00+00:00","pnl":0.25411358},{"timestamp":"2025-04-23T23:59:00+00:00","pnl":-0.348985455},{"timestamp":"2025-05-05T23:59:00+00:00","pnl":-0.53028917},{"timestamp":"2025-05-16T23:59:00+00:00","pnl":-1.9007085025},{"timestamp":"2025-05-28T23:59:00+00:00","pnl":-1.197596965},{"timestamp":"2025-06-08T23:59:00+00:00","pnl":0.0552697175},{"timestamp":"2025-06-19T23:59:00+00:00","pnl":0.353958715},{"timestamp":"2025-07-01T23:59:00+00:00","pnl":2.8591911175},{"timestamp":"2025-07-12T23:59:00+00:00","pnl":6.21173897},{"timestamp":"2025-07-24T23:59:00+00:00","pnl":8.840061695},{"timestamp":"2025-08-04T23:59:00+00:00","pnl":8.3180162225},{"timestamp":"2025-08-15T23:59:00+00:00","pnl":11.846322555},{"timestamp":"2025-08-27T23:59:00+00:00","pnl":12.8580944175},{"timestamp":"2025-09-07T23:59:00+00:00","pnl":14.4741923675},{"timestamp":"2025-09-19T23:59:00+00:00","pnl":16.68338756},{"timestamp":"2025-09-30T23:59:00+00:00","pnl":17.754447535},{"timestamp":"2025-10-11T23:59:00+00:00","pnl":16.7258317875},{"timestamp":"2025-10-23T23:59:00+00:00","pnl":18.869454175},{"timestamp":"2025-11-03T23:59:00+00:00","pnl":18.109790685},{"timestamp":"2025-11-14T23:59:00+00:00","pnl":19.23967805},{"timestamp":"2025-11-26T23:59:00+00:00","pnl":19.1329185525},{"timestamp":"2025-12-07T23:59:00+00:00","pnl":19.6418126775},{"timestamp":"2025-12-19T23:59:00+00:00","pnl":21.5329663625},{"timestamp":"2025-12-30T23:59:00+00:00","pnl":22.25929869},{"timestamp":"2026-01-10T23:59:00+00:00","pnl":21.96387722},{"timestamp":"2026-01-22T23:59:00+00:00","pnl":24.4023667175},{"timestamp":"2026-02-02T23:59:00+00:00","pnl":25.2858156575},{"timestamp":"2026-02-14T23:59:00+00:00","pnl":27.001525495},{"timestamp":"2026-02-25T23:59:00+00:00","pnl":27.37893084}]
Balance Composition (Cash vs. Coin)
GET /backtests/{id}/equity * Fields used: quote_asset_bal, base_value_exit_net, total_value_exit_net * Transform: stack(quote, base, total)total).| Stat | Value |
|---|---|
| Peak Total Equity | 10,010.29 USDT @ 2026-01-27 23:59:00 UTC |
| Trough Total Equity | 9,997.28 USDT @ 2025-01-10 23:59:00 UTC |
| Mean | 10,003.95 USDT |
| Std Dev | 3.83 USDT |
| Last | 10,008.88 USDT |
| Points | 673 |
| Sum | 6,732,659.77 USDT |
| Across 673 points the series ranged from 9,997.28 USDT (2025-01-10 23:59:00 UTC) to 10,010.29 USDT (2026-01-27 23:59:00 UTC), averaging 10,003.95 USDT. 100% of points were positive, 0% negative. The most recent value is 10,008.88 USDT. | |
| Showing 60 of 673 points (down-sampled for readability). |
[{"timestamp":"2024-04-24T23:59:00+00:00","quote":9994.97287248,"base":5.020062127499841,"total":9999.9929346075},{"timestamp":"2024-05-05T23:59:00+00:00","quote":9989.9307913225,"base":10.107753494999997,"total":10000.0385448175},{"timestamp":"2024-05-17T23:59:00+00:00","quote":9989.982192845,"base":10.105235384999105,"total":10000.08742823},{"timestamp":"2024-05-28T23:59:00+00:00","quote":9954.71950998,"base":44.93081659500058,"total":9999.650326575},{"timestamp":"2024-06-09T23:59:00+00:00","quote":9924.337324935,"base":74.70854653499919,"total":9999.04587147},{"timestamp":"2024-06-20T23:59:00+00:00","quote":9909.25253417,"base":89.34474115000012,"total":9998.59727532},{"timestamp":"2024-07-01T23:59:00+00:00","quote":9919.3657352,"base":79.52371245000177,"total":9998.88944765},{"timestamp":"2024-07-13T23:59:00+00:00","quote":9954.9685182575,"base":45.319684725000116,"total":10000.2882029825},{"timestamp":"2024-07-24T23:59:00+00:00","quote":9950.1528892625,"base":49.89806836000025,"total":10000.0509576225},{"timestamp":"2024-08-05T23:59:00+00:00","quote":9965.537266675,"base":34.96596584249892,"total":10000.5032325175},{"timestamp":"2024-08-16T23:59:00+00:00","quote":9980.649648055,"base":20.138674657500815,"total":10000.7883227125},{"timestamp":"2024-08-27T23:59:00+00:00","quote":9990.930995265,"base":10.035567675000493,"total":10000.96656294},{"timestamp":"2024-09-08T23:59:00+00:00","quote":9970.6224135725,"base":30.278933755000253,"total":10000.9013473275},{"timestamp":"2024-09-19T23:59:00+00:00","quote":9981.0274286825,"base":20.080128599998716,"total":10001.1075572825},{"timestamp":"2024-09-30T23:59:00+00:00","quote":9981.1698088675,"base":20.018974499998876,"total":10001.1887833675},{"timestamp":"2024-10-12T23:59:00+00:00","quote":9966.1047350375,"base":34.83301562999986,"total":10000.9377506675},{"timestamp":"2024-10-23T23:59:00+00:00","quote":9950.98551924,"base":49.46602263750174,"total":10000.4515418775},{"timestamp":"2024-11-04T23:59:00+00:00","quote":9956.35210654,"base":44.53767167499973,"total":10000.889778215},{"timestamp":"2024-11-15T23:59:00+00:00","quote":9906.60329302,"base":93.5274018,"total":10000.13069482},{"timestamp":"2024-11-26T23:59:00+00:00","quote":9876.5479386375,"base":123.14235391500006,"total":9999.6902925525},{"timestamp":"2024-12-08T23:59:00+00:00","quote":9901.9986447975,"base":98.64975714999855,"total":10000.6484019475},{"timestamp":"2024-12-19T23:59:00+00:00","quote":9866.896462795,"base":131.40073547999964,"total":9998.297198275},{"timestamp":"2024-12-31T23:59:00+00:00","quote":9887.240518485,"base":111.84072649750124,"total":9999.0812449825},{"timestamp":"2025-01-11T23:59:00+00:00","quote":9841.843732015,"base":155.69833859999926,"total":9997.542070615},{"timestamp":"2025-01-22T23:59:00+00:00","quote":9893.036324105,"base":107.07053682500009,"total":10000.10686093},{"timestamp":"2025-02-03T23:59:00+00:00","quote":9852.64396349,"base":146.17868369999997,"total":9998.82264719},{"timestamp":"2025-02-14T23:59:00+00:00","quote":9893.3272223775,"base":107.91450337499919,"total":10001.2417257525},{"timestamp":"2025-02-26T23:59:00+00:00","quote":9893.3880204975,"base":108.11005660000046,"total":10001.4980770975},{"timestamp":"2025-03-09T23:59:00+00:00","quote":9954.24577429,"base":49.918533000000025,"total":10004.16430729},{"timestamp":"2025-03-20T23:59:00+00:00","quote":9969.693301045,"base":35.36075952500141,"total":10005.05406057},{"timestamp":"2025-04-01T23:59:00+00:00","quote":9979.7608951625,"base":25.45945107999978,"total":10005.2203462425},{"timestamp":"2025-04-12T23:59:00+00:00","quote":9975.4320971325,"base":30.611224350001066,"total":10006.0433214825},{"timestamp":"2025-04-23T23:59:00+00:00","quote":9940.13456421,"base":65.52257118749912,"total":10005.6571353975},{"timestamp":"2025-05-05T23:59:00+00:00","quote":9930.225990035,"base":75.36779172999923,"total":10005.593781765},{"timestamp":"2025-05-16T23:59:00+00:00","quote":9884.88054988,"base":119.50262576000023,"total":10004.38317564},{"timestamp":"2025-05-28T23:59:00+00:00","quote":9910.21251772,"base":95.01290683499974,"total":10005.225424555},{"timestamp":"2025-06-08T23:59:00+00:00","quote":9940.83419562,"base":65.73443217249951,"total":10006.5686277925},{"timestamp":"2025-06-19T23:59:00+00:00","quote":9950.73072842,"base":56.27100507000068,"total":10007.00173349},{"timestamp":"2025-07-01T23:59:00+00:00","quote":9964.5011590175,"base":43.38775476000046,"total":10007.8889137775},{"timestamp":"2025-07-12T23:59:00+00:00","quote":9961.0791892875,"base":46.79753550500027,"total":10007.8767247925},{"timestamp":"2025-07-24T23:59:00+00:00","quote":9968.74764179,"base":39.21556625000085,"total":10007.96320804},{"timestamp":"2025-08-04T23:59:00+00:00","quote":9938.329552615,"base":68.96503740000117,"total":10007.294590015},{"timestamp":"2025-08-15T23:59:00+00:00","quote":9950.6298606,"base":57.33031998750084,"total":10007.9601805875},{"timestamp":"2025-08-27T23:59:00+00:00","quote":9939.4758360175,"base":68.4212455500001,"total":10007.8970815675},{"timestamp":"2025-09-07T23:59:00+00:00","quote":9953.4135130575,"base":54.88339655749951,"total":10008.296909615},{"timestamp":"2025-09-19T23:59:00+00:00","quote":9930.6514938475,"base":77.49035861000084,"total":10008.1418524575},{"timestamp":"2025-09-30T23:59:00+00:00","quote":9929.6461344075,"base":78.55883664999965,"total":10008.2049710575},{"timestamp":"2025-10-11T23:59:00+00:00","quote":9888.1177215475,"base":117.94205706499997,"total":10006.0597786125},{"timestamp":"2025-10-23T23:59:00+00:00","quote":9897.72188454,"base":110.01814446000026,"total":10007.740029},{"timestamp":"2025-11-03T23:59:00+00:00","quote":9887.486485925,"base":119.41425209000045,"total":10006.900738015},{"timestamp":"2025-11-14T23:59:00+00:00","quote":9912.9177687225,"base":95.0538760849995,"total":10007.9716448075},{"timestamp":"2025-11-26T23:59:00+00:00","quote":9907.6863768575,"base":100.14019847999953,"total":10007.8265753375},{"timestamp":"2025-12-07T23:59:00+00:00","quote":9912.69326997,"base":95.45170748750024,"total":10008.1449774575},{"timestamp":"2025-12-19T23:59:00+00:00","quote":9931.525327555,"base":77.28079590000016,"total":10008.806123455},{"timestamp":"2025-12-30T23:59:00+00:00","quote":9946.2142126825,"base":62.868812999999136,"total":10009.0830256825},{"timestamp":"2026-01-10T23:59:00+00:00","quote":9910.4241113225,"base":97.80217331499989,"total":10008.2262846375},{"timestamp":"2026-01-22T23:59:00+00:00","quote":9939.1633981975,"base":70.06085492000057,"total":10009.2242531175},{"timestamp":"2026-02-02T23:59:00+00:00","quote":9902.45050978,"base":106.25626798500161,"total":10008.706777765},{"timestamp":"2026-02-14T23:59:00+00:00","quote":9916.4771865075,"base":92.7002626199992,"total":10009.1774491275},{"timestamp":"2026-02-25T23:59:00+00:00","quote":9895.4589145799,"base":113.41858221750044,"total":10008.8774967974}]
Base Exposure (% of Portfolio)
GET /backtests/{id}/equity * Fields used: base_value_exit_net, quote_asset_bal, total_value_exit_net * Transform: baseExposure(equity)exposure).| Stat | Value |
|---|---|
| Peak Exposure | 1.61% @ 2025-01-13 23:59:00 UTC |
| Min Exposure | 0.00% @ 2024-08-25 23:59:00 UTC |
| Mean | 0.70% |
| Std Dev | 0.36% |
| Last | 1.13% |
| Points | 673 |
| Across 673 points the series ranged from 0.00% (2024-08-25 23:59:00 UTC) to 1.61% (2025-01-13 23:59:00 UTC), averaging 0.70%. 100% of points were positive, 0% negative. The most recent value is 1.13%. | |
| Showing 60 of 673 points (down-sampled for readability). |
[{"timestamp":"2024-04-24T23:59:00+00:00","exposure":0.05020065674373277},{"timestamp":"2024-05-05T23:59:00+00:00","exposure":0.10107714534998788},{"timestamp":"2024-05-17T23:59:00+00:00","exposure":0.10105147037487168},{"timestamp":"2024-05-28T23:59:00+00:00","exposure":0.44932387761192766},{"timestamp":"2024-06-09T23:59:00+00:00","exposure":0.7471567537075013},{"timestamp":"2024-06-20T23:59:00+00:00","exposure":0.8935727551557044},{"timestamp":"2024-07-01T23:59:00+00:00","exposure":0.7953254495547193},{"timestamp":"2024-07-13T23:59:00+00:00","exposure":0.4531837863581163},{"timestamp":"2024-07-24T23:59:00+00:00","exposure":0.49897814092602844},{"timestamp":"2024-08-05T23:59:00+00:00","exposure":0.3496420632994154},{"timestamp":"2024-08-16T23:59:00+00:00","exposure":0.2013708720518007},{"timestamp":"2024-08-27T23:59:00+00:00","exposure":0.1003459776796846},{"timestamp":"2024-09-08T23:59:00+00:00","exposure":0.3027620481737035},{"timestamp":"2024-09-19T23:59:00+00:00","exposure":0.20077904857024542},{"timestamp":"2024-09-30T23:59:00+00:00","exposure":0.20016594960482578},{"timestamp":"2024-10-12T23:59:00+00:00","exposure":0.34829749467918625},{"timestamp":"2024-10-23T23:59:00+00:00","exposure":0.4946378914028006},{"timestamp":"2024-11-04T23:59:00+00:00","exposure":0.44533709162575136},{"timestamp":"2024-11-15T23:59:00+00:00","exposure":0.9352617946128102},{"timestamp":"2024-11-26T23:59:00+00:00","exposure":1.231461678435313},{"timestamp":"2024-12-08T23:59:00+00:00","exposure":0.9864336109525436},{"timestamp":"2024-12-19T23:59:00+00:00","exposure":1.314231142305613},{"timestamp":"2024-12-31T23:59:00+00:00","exposure":1.1185100286451064},{"timestamp":"2025-01-11T23:59:00+00:00","exposure":1.557366175608616},{"timestamp":"2025-01-22T23:59:00+00:00","exposure":1.0706939267151254},{"timestamp":"2025-02-03T23:59:00+00:00","exposure":1.461958961149101},{"timestamp":"2025-02-14T23:59:00+00:00","exposure":1.0790110501691692},{"timestamp":"2025-02-26T23:59:00+00:00","exposure":1.0809386330590058},{"timestamp":"2025-03-09T23:59:00+00:00","exposure":0.4989775404190888},{"timestamp":"2025-03-20T23:59:00+00:00","exposure":0.3534289701078024},{"timestamp":"2025-04-01T23:59:00+00:00","exposure":0.25446167299614925},{"timestamp":"2025-04-12T23:59:00+00:00","exposure":0.3059273617602696},{"timestamp":"2025-04-23T23:59:00+00:00","exposure":0.6548552513927021},{"timestamp":"2025-05-05T23:59:00+00:00","exposure":0.7532565620178941},{"timestamp":"2025-05-16T23:59:00+00:00","exposure":1.1945026860924428},{"timestamp":"2025-05-28T23:59:00+00:00","exposure":0.949632844871415},{"timestamp":"2025-06-08T23:59:00+00:00","exposure":0.6569128201442302},{"timestamp":"2025-06-19T23:59:00+00:00","exposure":0.5623163317907794},{"timestamp":"2025-07-01T23:59:00+00:00","exposure":0.43353553515437304},{"timestamp":"2025-07-12T23:59:00+00:00","exposure":0.46760703385832875},{"timestamp":"2025-07-24T23:59:00+00:00","exposure":0.391843629266109},{"timestamp":"2025-08-04T23:59:00+00:00","exposure":0.6891476690294753},{"timestamp":"2025-08-15T23:59:00+00:00","exposure":0.5728472031563915},{"timestamp":"2025-08-27T23:59:00+00:00","exposure":0.6836725537077918},{"timestamp":"2025-09-07T23:59:00+00:00","exposure":0.5483789804914048},{"timestamp":"2025-09-19T23:59:00+00:00","exposure":0.7742731842971737},{"timestamp":"2025-09-30T23:59:00+00:00","exposure":0.784944321955657},{"timestamp":"2025-10-11T23:59:00+00:00","exposure":1.1787063007268435},{"timestamp":"2025-10-23T23:59:00+00:00","exposure":1.0993305595588454},{"timestamp":"2025-11-03T23:59:00+00:00","exposure":1.1933190426918119},{"timestamp":"2025-11-14T23:59:00+00:00","exposure":0.9497816286711496},{"timestamp":"2025-11-26T23:59:00+00:00","exposure":1.0006188429241685},{"timestamp":"2025-12-07T23:59:00+00:00","exposure":0.953740255586796},{"timestamp":"2025-12-19T23:59:00+00:00","exposure":0.7721280135389726},{"timestamp":"2025-12-30T23:59:00+00:00","exposure":0.6281176091624261},{"timestamp":"2026-01-10T23:59:00+00:00","exposure":0.9772178459346486},{"timestamp":"2026-01-22T23:59:00+00:00","exposure":0.6999628857169348},{"timestamp":"2026-02-02T23:59:00+00:00","exposure":1.0616383349450988},{"timestamp":"2026-02-14T23:59:00+00:00","exposure":0.9261526543130663},{"timestamp":"2026-02-25T23:59:00+00:00","exposure":1.133179842133063}]
Daily Change
GET /backtests/{id}/equity * Fields used: timestamp, total_value_exit_net * Transform: dailyDelta(equity)total_value_exit_net between consecutive equity samples (typically daily).How to read it. Green bars are gain days, red bars are loss days. A long stretch of red bars indicates a sustained drawdown, not just a single bad day.Why it matters. Shows whether returns are consistent or driven by a few jackpot days - important for compounding and for sizing live capital.Insights (auto-derived from delta).| Stat | Value |
|---|---|
| Best Day | 1.62 USDT @ 2025-01-20 23:59:00 UTC |
| Worst Day | -1.71 USDT @ 2024-12-18 23:59:00 UTC |
| Mean | 0.0132 USDT |
| Std Dev | 0.3210 USDT |
| Last | 0.3984 USDT |
| Points | 672 |
| Sum | 8.88 USDT |
| Across 672 points the series ranged from -1.71 USDT (2024-12-18 23:59:00 UTC) to 1.62 USDT (2025-01-20 23:59:00 UTC), averaging 0.0132 USDT. 51% of points were positive, 47% negative. The most recent value is 0.3984 USDT. | |
| Showing 60 of 672 points (down-sampled for readability). |
[{"timestamp":"2024-04-25T23:59:00+00:00","delta":0.01305707000028633},{"timestamp":"2024-05-06T23:59:00+00:00","delta":0},{"timestamp":"2024-05-18T23:59:00+00:00","delta":-0.006505117498818436},{"timestamp":"2024-05-29T23:59:00+00:00","delta":-0.2605464899988874},{"timestamp":"2024-06-09T23:59:00+00:00","delta":-0.09540470250067301},{"timestamp":"2024-06-21T23:59:00+00:00","delta":-0.19203655999990588},{"timestamp":"2024-07-02T23:59:00+00:00","delta":0.0938507649989333},{"timestamp":"2024-07-14T23:59:00+00:00","delta":-0.041092347499215975},{"timestamp":"2024-07-25T23:59:00+00:00","delta":0.05527851000078954},{"timestamp":"2024-08-05T23:59:00+00:00","delta":0.16053339499922004},{"timestamp":"2024-08-17T23:59:00+00:00","delta":-0.021943530000498868},{"timestamp":"2024-08-28T23:59:00+00:00","delta":-0.06627892500000598},{"timestamp":"2024-09-08T23:59:00+00:00","delta":0.024641505000545294},{"timestamp":"2024-09-20T23:59:00+00:00","delta":-0.002126249999491847},{"timestamp":"2024-10-01T23:59:00+00:00","delta":-0.15916586499952246},{"timestamp":"2024-10-13T23:59:00+00:00","delta":0.0003673450009955559},{"timestamp":"2024-10-24T23:59:00+00:00","delta":0.2016000849998818},{"timestamp":"2024-11-04T23:59:00+00:00","delta":0.11333653749898076},{"timestamp":"2024-11-16T23:59:00+00:00","delta":0.16452400500020303},{"timestamp":"2024-11-27T23:59:00+00:00","delta":0.6665798900012305},{"timestamp":"2024-12-08T23:59:00+00:00","delta":-0.08362459000090894},{"timestamp":"2024-12-20T23:59:00+00:00","delta":0.6519381349989999},{"timestamp":"2024-12-31T23:59:00+00:00","delta":-0.526968135000061},{"timestamp":"2025-01-12T23:59:00+00:00","delta":-0.1670745999999781},{"timestamp":"2025-01-23T23:59:00+00:00","delta":0.01506777500071621},{"timestamp":"2025-02-03T23:59:00+00:00","delta":1.173898407500019},{"timestamp":"2025-02-15T23:59:00+00:00","delta":-0.08233819999986736},{"timestamp":"2025-02-26T23:59:00+00:00","delta":-0.18764978500075813},{"timestamp":"2025-03-09T23:59:00+00:00","delta":0.15628269999979238},{"timestamp":"2025-03-21T23:59:00+00:00","delta":-0.13144869250027114},{"timestamp":"2025-04-01T23:59:00+00:00","delta":-0.0653969924987905},{"timestamp":"2025-04-13T23:59:00+00:00","delta":-0.02158380000037141},{"timestamp":"2025-04-24T23:59:00+00:00","delta":0.23589150750012777},{"timestamp":"2025-05-05T23:59:00+00:00","delta":-0.01592395500119892},{"timestamp":"2025-05-17T23:59:00+00:00","delta":-0.05355979999876581},{"timestamp":"2025-05-28T23:59:00+00:00","delta":-0.8378510649999953},{"timestamp":"2025-06-08T23:59:00+00:00","delta":0.05765672499910579},{"timestamp":"2025-06-20T23:59:00+00:00","delta":-0.01661752750078449},{"timestamp":"2025-07-01T23:59:00+00:00","delta":0.040932120000434224},{"timestamp":"2025-07-13T23:59:00+00:00","delta":-0.11151935500129184},{"timestamp":"2025-07-24T23:59:00+00:00","delta":-0.060074909999457304},{"timestamp":"2025-08-04T23:59:00+00:00","delta":0.02977765000105137},{"timestamp":"2025-08-16T23:59:00+00:00","delta":-0.02943790500103205},{"timestamp":"2025-08-27T23:59:00+00:00","delta":0.07708194999941043},{"timestamp":"2025-09-07T23:59:00+00:00","delta":0.01330010749916255},{"timestamp":"2025-09-19T23:59:00+00:00","delta":-0.3470690249996551},{"timestamp":"2025-09-30T23:59:00+00:00","delta":0.06694974999845726},{"timestamp":"2025-10-12T23:59:00+00:00","delta":1.3847559975001786},{"timestamp":"2025-10-23T23:59:00+00:00","delta":0.08525601000110328},{"timestamp":"2025-11-03T23:59:00+00:00","delta":-0.1167539175003185},{"timestamp":"2025-11-15T23:59:00+00:00","delta":-0.07394143999954395},{"timestamp":"2025-11-26T23:59:00+00:00","delta":0.291444180000326},{"timestamp":"2025-12-07T23:59:00+00:00","delta":0.05742689749968122},{"timestamp":"2025-12-19T23:59:00+00:00","delta":-0.07623785249961657},{"timestamp":"2025-12-30T23:59:00+00:00","delta":-0.12830370000119729},{"timestamp":"2026-01-11T23:59:00+00:00","delta":0},{"timestamp":"2026-01-22T23:59:00+00:00","delta":0.5797975975001464},{"timestamp":"2026-02-02T23:59:00+00:00","delta":-0.4500437124988821},{"timestamp":"2026-02-14T23:59:00+00:00","delta":-0.16430667750137218},{"timestamp":"2026-02-25T23:59:00+00:00","delta":0.3983809900000779}]
Monthly Returns
GET /backtests/{id}/equity * Fields used: timestamp, total_value_exit_net * Transform: monthlyReturns(equity)returnPct).| Stat | Value |
|---|---|
| Best Month | 0.06% @ 2025-03 |
| Worst Month | -0.02% @ 2025-07 |
| Mean | 0.00% |
| Std Dev | 0.01% |
| Last | -0.00% |
| Points | 23 |
| Across 23 points the series ranged from -0.02% (2025-07) to 0.06% (2025-03), averaging 0.00%. 57% of points were positive, 43% negative. The most recent value is -0.00%. | |
| Full series - 23 points. |
[{"month":"2024-04","returnPct":-0.0009509751719117732},{"month":"2024-05","returnPct":-0.0035866871670181184},{"month":"2024-06","returnPct":-0.007175958424276437},{"month":"2024-07","returnPct":0.011248537934013297},{"month":"2024-08","returnPct":0.008590819513653071},{"month":"2024-09","returnPct":0.005130640655486158},{"month":"2024-10","returnPct":-0.0008938936381394984},{"month":"2024-11","returnPct":0.0001677002148135906},{"month":"2024-12","returnPct":-0.013369920795586928},{"month":"2025-01","returnPct":0.002448700250560027},{"month":"2025-02","returnPct":0.008810086575800104},{"month":"2025-03","returnPct":0.05583714856006362},{"month":"2025-04","returnPct":0.004038191274334711},{"month":"2025-05","returnPct":0.00594128204839855},{"month":"2025-06","returnPct":0.017015104469207256},{"month":"2025-07","returnPct":-0.018987834985710512},{"month":"2025-08","returnPct":0.008358514470661375},{"month":"2025-09","returnPct":-0.0005304961628483757},{"month":"2025-10","returnPct":-0.010430846032814124},{"month":"2025-11","returnPct":0.0056853334247409},{"month":"2025-12","returnPct":0.013804013638999026},{"month":"2026-01","returnPct":-0.0026477550200782645},{"month":"2026-02","returnPct":-0.0027906914146847684}]
Cumulative Trade Profit
GET /backtests/{id}/trades * Fields used: sell_time, profit * Transform: cumulativeProfit(trades)cumProfit).| Stat | Value |
|---|---|
| Peak Cum. | 9.08 USDT @ 2026-02-25 |
| Trough Cum. | 0.0154 USDT @ 2024-04-25 |
| Mean | 4.81 USDT |
| Std Dev | 3.11 USDT |
| Last | 9.08 USDT |
| Points | 672 |
| Sum | 3,235.36 USDT |
| Across 672 points the series ranged from 0.0154 USDT (2024-04-25) to 9.08 USDT (2026-02-25), averaging 4.81 USDT. 100% of points were positive, 0% negative. The most recent value is 9.08 USDT. | |
| Showing 60 of 672 points (down-sampled for readability). |
[{"timestamp":"2024-04-25","cumProfit":0.015429},{"timestamp":"2024-05-06","cumProfit":0.05653999999999999},{"timestamp":"2024-05-18","cumProfit":0.10483899999999999},{"timestamp":"2024-05-29","cumProfit":0.21724699999999997},{"timestamp":"2024-06-09","cumProfit":0.27157299999999995},{"timestamp":"2024-06-21","cumProfit":0.323196},{"timestamp":"2024-07-02","cumProfit":0.364268},{"timestamp":"2024-07-14","cumProfit":0.555404},{"timestamp":"2024-07-25","cumProfit":0.6252439999999999},{"timestamp":"2024-08-05","cumProfit":0.8256629999999998},{"timestamp":"2024-08-17","cumProfit":0.8948899999999999},{"timestamp":"2024-08-28","cumProfit":1.0054949999999998},{"timestamp":"2024-09-08","cumProfit":1.0729349999999998},{"timestamp":"2024-09-20","cumProfit":1.1607829999999997},{"timestamp":"2024-10-01","cumProfit":1.2679219999999998},{"timestamp":"2024-10-13","cumProfit":1.4163719999999997},{"timestamp":"2024-10-24","cumProfit":1.6368639999999997},{"timestamp":"2024-11-04","cumProfit":1.7512439999999998},{"timestamp":"2024-11-16","cumProfit":2.6136899999999996},{"timestamp":"2024-11-27","cumProfit":3.0116219999999996},{"timestamp":"2024-12-08","cumProfit":3.193846},{"timestamp":"2024-12-20","cumProfit":3.4123499999999996},{"timestamp":"2024-12-31","cumProfit":3.5915579999999996},{"timestamp":"2025-01-12","cumProfit":3.776392},{"timestamp":"2025-01-23","cumProfit":4.2261869999999995},{"timestamp":"2025-02-03","cumProfit":4.3954509999999996},{"timestamp":"2025-02-15","cumProfit":4.566268},{"timestamp":"2025-02-26","cumProfit":4.641957},{"timestamp":"2025-03-09","cumProfit":4.869543},{"timestamp":"2025-03-21","cumProfit":5.05151},{"timestamp":"2025-04-01","cumProfit":5.162721000000001},{"timestamp":"2025-04-13","cumProfit":5.789206000000001},{"timestamp":"2025-04-24","cumProfit":6.022289000000001},{"timestamp":"2025-05-05","cumProfit":6.1240689999999995},{"timestamp":"2025-05-17","cumProfit":6.283880999999999},{"timestamp":"2025-05-28","cumProfit":6.423019},{"timestamp":"2025-06-08","cumProfit":6.513355000000001},{"timestamp":"2025-06-20","cumProfit":6.658092},{"timestamp":"2025-07-01","cumProfit":6.7880959999999995},{"timestamp":"2025-07-13","cumProfit":6.954519999999999},{"timestamp":"2025-07-24","cumProfit":7.101243999999999},{"timestamp":"2025-08-04","cumProfit":7.189238},{"timestamp":"2025-08-16","cumProfit":7.367682},{"timestamp":"2025-08-27","cumProfit":7.4628380000000005},{"timestamp":"2025-09-07","cumProfit":7.531482000000001},{"timestamp":"2025-09-19","cumProfit":7.640203000000001},{"timestamp":"2025-09-30","cumProfit":7.687113000000002},{"timestamp":"2025-10-12","cumProfit":8.373658},{"timestamp":"2025-10-23","cumProfit":8.451953},{"timestamp":"2025-11-03","cumProfit":8.488714},{"timestamp":"2025-11-15","cumProfit":8.546130999999999},{"timestamp":"2025-11-26","cumProfit":8.624338999999999},{"timestamp":"2025-12-07","cumProfit":8.666761999999999},{"timestamp":"2025-12-19","cumProfit":8.724208999999998},{"timestamp":"2025-12-30","cumProfit":8.744970999999998},{"timestamp":"2026-01-11","cumProfit":8.770951999999998},{"timestamp":"2026-01-22","cumProfit":8.850019999999995},{"timestamp":"2026-02-02","cumProfit":8.988099999999996},{"timestamp":"2026-02-14","cumProfit":9.044656999999997},{"timestamp":"2026-02-25","cumProfit":9.075609999999998}]
Daily Trade Profit
GET /backtests/{id}/trades * Fields used: sell_time, profit * Transform: dailyTradeProfit(trades)profit).| Stat | Value |
|---|---|
| Best Day | 0.4888 USDT @ 2025-10-10 |
| Worst Day | 0.0000 USDT @ 2024-04-26 |
| Mean | 0.0135 USDT |
| Std Dev | 0.0296 USDT |
| Last | 0.0052 USDT |
| Points | 672 |
| Sum | 9.08 USDT |
| Across 672 points the series ranged from 0.0000 USDT (2024-04-26) to 0.4888 USDT (2025-10-10), averaging 0.0135 USDT. 58% of points were positive, 0% negative. The most recent value is 0.0052 USDT. | |
| Showing 60 of 672 points (down-sampled for readability). |
[{"day":"2024-04-25","profit":0.015429},{"day":"2024-05-06","profit":0},{"day":"2024-05-18","profit":0},{"day":"2024-05-29","profit":0},{"day":"2024-06-09","profit":0},{"day":"2024-06-21","profit":0},{"day":"2024-07-02","profit":0},{"day":"2024-07-14","profit":0.047868},{"day":"2024-07-25","profit":0},{"day":"2024-08-05","profit":0.135021},{"day":"2024-08-17","profit":0},{"day":"2024-08-28","profit":0},{"day":"2024-09-08","profit":0},{"day":"2024-09-20","profit":0.005068},{"day":"2024-10-01","profit":0},{"day":"2024-10-13","profit":0.021217},{"day":"2024-10-24","profit":0.01061},{"day":"2024-11-04","profit":0.010989},{"day":"2024-11-16","profit":0.005343},{"day":"2024-11-27","profit":0.032288},{"day":"2024-12-08","profit":0.010666},{"day":"2024-12-20","profit":0.020421},{"day":"2024-12-31","profit":0.070679},{"day":"2025-01-12","profit":0},{"day":"2025-01-23","profit":0.005096},{"day":"2025-02-03","profit":0.057234},{"day":"2025-02-15","profit":0},{"day":"2025-02-26","profit":0.005392},{"day":"2025-03-09","profit":0},{"day":"2025-03-21","profit":0},{"day":"2025-04-01","profit":0},{"day":"2025-04-13","profit":0},{"day":"2025-04-24","profit":0.01617},{"day":"2025-05-05","profit":0.010826},{"day":"2025-05-17","profit":0},{"day":"2025-05-28","profit":0},{"day":"2025-06-08","profit":0},{"day":"2025-06-20","profit":0.010321},{"day":"2025-07-01","profit":0.015521},{"day":"2025-07-13","profit":0.010351},{"day":"2025-07-24","profit":0},{"day":"2025-08-04","profit":0},{"day":"2025-08-16","profit":0},{"day":"2025-08-27","profit":0.015726},{"day":"2025-09-07","profit":0},{"day":"2025-09-19","profit":0},{"day":"2025-09-30","profit":0},{"day":"2025-10-12","profit":0.04145},{"day":"2025-10-23","profit":0},{"day":"2025-11-03","profit":0},{"day":"2025-11-15","profit":0},{"day":"2025-11-26","profit":0.010234},{"day":"2025-12-07","profit":0},{"day":"2025-12-19","profit":0},{"day":"2025-12-30","profit":0},{"day":"2026-01-11","profit":0},{"day":"2026-01-22","profit":0.020854},{"day":"2026-02-02","profit":0.00513},{"day":"2026-02-14","profit":0},{"day":"2026-02-25","profit":0.005172}]
Trades per Day
GET /backtests/{id}/trades * Fields used: sell_time * Transform: tradesPerDay(trades)count).| Stat | Value |
|---|---|
| Busiest Day | 93 trades @ 2025-10-10 |
| Quietest Day | 0 trades @ 2024-04-26 |
| Mean | 3 trades |
| Std Dev | 6 trades |
| Last | 1 trades |
| Points | 672 |
| Sum | 1723 trades |
| Across 672 points the series ranged from 0 trades (2024-04-26) to 93 trades (2025-10-10), averaging 3 trades. The most recent value is 1 trades. | |
| Showing 60 of 672 points (down-sampled for readability). |
[{"day":"2024-04-25","count":3},{"day":"2024-05-06","count":0},{"day":"2024-05-18","count":0},{"day":"2024-05-29","count":0},{"day":"2024-06-09","count":0},{"day":"2024-06-21","count":0},{"day":"2024-07-02","count":0},{"day":"2024-07-14","count":9},{"day":"2024-07-25","count":0},{"day":"2024-08-05","count":25},{"day":"2024-08-17","count":0},{"day":"2024-08-28","count":0},{"day":"2024-09-08","count":0},{"day":"2024-09-20","count":1},{"day":"2024-10-01","count":0},{"day":"2024-10-13","count":4},{"day":"2024-10-24","count":2},{"day":"2024-11-04","count":2},{"day":"2024-11-16","count":1},{"day":"2024-11-27","count":6},{"day":"2024-12-08","count":2},{"day":"2024-12-20","count":4},{"day":"2024-12-31","count":13},{"day":"2025-01-12","count":0},{"day":"2025-01-23","count":1},{"day":"2025-02-03","count":11},{"day":"2025-02-15","count":0},{"day":"2025-02-26","count":1},{"day":"2025-03-09","count":0},{"day":"2025-03-21","count":0},{"day":"2025-04-01","count":0},{"day":"2025-04-13","count":0},{"day":"2025-04-24","count":3},{"day":"2025-05-05","count":2},{"day":"2025-05-17","count":0},{"day":"2025-05-28","count":0},{"day":"2025-06-08","count":0},{"day":"2025-06-20","count":2},{"day":"2025-07-01","count":3},{"day":"2025-07-13","count":2},{"day":"2025-07-24","count":0},{"day":"2025-08-04","count":0},{"day":"2025-08-16","count":0},{"day":"2025-08-27","count":3},{"day":"2025-09-07","count":0},{"day":"2025-09-19","count":0},{"day":"2025-09-30","count":0},{"day":"2025-10-12","count":8},{"day":"2025-10-23","count":0},{"day":"2025-11-03","count":0},{"day":"2025-11-15","count":0},{"day":"2025-11-26","count":2},{"day":"2025-12-07","count":0},{"day":"2025-12-19","count":0},{"day":"2025-12-30","count":0},{"day":"2026-01-11","count":0},{"day":"2026-01-22","count":4},{"day":"2026-02-02","count":1},{"day":"2026-02-14","count":0},{"day":"2026-02-25","count":1}]
Cumulative Fees
GET /backtests/{id}/trades * Fields used: sell_time, buy_fee_in_quote, sell_fee_in_quote * Transform: cumulativeFees(trades)cumFees).| Stat | Value |
|---|---|
| Final Fees | 13.06 USDT @ 2026-02-25 |
| Start | 0.0226 USDT @ 2024-04-25 |
| Mean | 6.92 USDT |
| Std Dev | 4.47 USDT |
| Last | 13.06 USDT |
| Points | 672 |
| Sum | 4,648.89 USDT |
| Across 672 points the series ranged from 0.0226 USDT (2024-04-25) to 13.06 USDT (2026-02-25), averaging 6.92 USDT. 100% of points were positive, 0% negative. The most recent value is 13.06 USDT. | |
| Showing 60 of 672 points (down-sampled for readability). |
[{"index":0,"timestamp":"2024-04-25","cumFees":0.022641},{"index":11,"timestamp":"2024-05-06","cumFees":0.08305},{"index":23,"timestamp":"2024-05-18","cumFees":0.151781},{"index":34,"timestamp":"2024-05-29","cumFees":0.310973},{"index":45,"timestamp":"2024-06-09","cumFees":0.38684699999999994},{"index":57,"timestamp":"2024-06-21","cumFees":0.46259399999999995},{"index":68,"timestamp":"2024-07-02","cumFees":0.523042},{"index":80,"timestamp":"2024-07-14","cumFees":0.796316},{"index":91,"timestamp":"2024-07-25","cumFees":0.8944759999999999},{"index":102,"timestamp":"2024-08-05","cumFees":1.1756469999999999},{"index":114,"timestamp":"2024-08-17","cumFees":1.2738599999999998},{"index":125,"timestamp":"2024-08-28","cumFees":1.4331339999999995},{"index":136,"timestamp":"2024-09-08","cumFees":1.5322939999999996},{"index":148,"timestamp":"2024-09-20","cumFees":1.6614459999999998},{"index":159,"timestamp":"2024-10-01","cumFees":1.8199169999999996},{"index":171,"timestamp":"2024-10-13","cumFees":2.0321069999999994},{"index":182,"timestamp":"2024-10-24","cumFees":2.3428649999999993},{"index":193,"timestamp":"2024-11-04","cumFees":2.5030649999999994},{"index":205,"timestamp":"2024-11-16","cumFees":3.7616089999999995},{"index":216,"timestamp":"2024-11-27","cumFees":4.322447},{"index":227,"timestamp":"2024-12-08","cumFees":4.580862999999999},{"index":239,"timestamp":"2024-12-20","cumFees":4.892179},{"index":250,"timestamp":"2024-12-31","cumFees":5.142100999999999},{"index":262,"timestamp":"2025-01-12","cumFees":5.415907},{"index":273,"timestamp":"2025-01-23","cumFees":6.077412},{"index":284,"timestamp":"2025-02-03","cumFees":6.319448000000001},{"index":296,"timestamp":"2025-02-15","cumFees":6.5704210000000005},{"index":307,"timestamp":"2025-02-26","cumFees":6.676172000000001},{"index":318,"timestamp":"2025-03-09","cumFees":7.003026000000001},{"index":330,"timestamp":"2025-03-21","cumFees":7.260659000000001},{"index":341,"timestamp":"2025-04-01","cumFees":7.420457000000002},{"index":353,"timestamp":"2025-04-13","cumFees":8.317481000000003},{"index":364,"timestamp":"2025-04-24","cumFees":8.651928000000002},{"index":375,"timestamp":"2025-05-05","cumFees":8.796648000000001},{"index":387,"timestamp":"2025-05-17","cumFees":9.024846},{"index":398,"timestamp":"2025-05-28","cumFees":9.222918000000002},{"index":409,"timestamp":"2025-06-08","cumFees":9.351822000000002},{"index":421,"timestamp":"2025-06-20","cumFees":9.564365000000002},{"index":432,"timestamp":"2025-07-01","cumFees":9.752718000000003},{"index":444,"timestamp":"2025-07-13","cumFees":9.992311},{"index":455,"timestamp":"2025-07-24","cumFees":10.203114},{"index":466,"timestamp":"2025-08-04","cumFees":10.331896},{"index":478,"timestamp":"2025-08-16","cumFees":10.587170000000002},{"index":489,"timestamp":"2025-08-27","cumFees":10.723172000000003},{"index":500,"timestamp":"2025-09-07","cumFees":10.820491000000006},{"index":512,"timestamp":"2025-09-19","cumFees":10.978223000000007},{"index":523,"timestamp":"2025-09-30","cumFees":11.045504000000006},{"index":535,"timestamp":"2025-10-12","cumFees":12.037521000000003},{"index":546,"timestamp":"2025-10-23","cumFees":12.151142000000004},{"index":557,"timestamp":"2025-11-03","cumFees":12.204509000000005},{"index":569,"timestamp":"2025-11-15","cumFees":12.288259000000007},{"index":580,"timestamp":"2025-11-26","cumFees":12.402698000000008},{"index":591,"timestamp":"2025-12-07","cumFees":12.463529000000008},{"index":603,"timestamp":"2025-12-19","cumFees":12.545647000000008},{"index":614,"timestamp":"2025-12-30","cumFees":12.575637000000008},{"index":626,"timestamp":"2026-01-11","cumFees":12.613096000000008},{"index":637,"timestamp":"2026-01-22","cumFees":12.725367000000007},{"index":648,"timestamp":"2026-02-02","cumFees":12.929061000000008},{"index":660,"timestamp":"2026-02-14","cumFees":13.012079000000007},{"index":671,"timestamp":"2026-02-25","cumFees":13.057257000000009}]
Profit Distribution (%)
GET /backtests/{id}/trades * Fields used: profit_percentage * Transform: profitDistribution(trades, 30)count).| Stat | Value |
|---|---|
| Most Populated Bin | 131 trades @ 0.11% |
| Least Populated Bin | 29 trades @ 0.11% |
| Mean | 86 trades |
| Std Dev | 25 trades |
| Last | 29 trades |
| Points | 20 |
| Sum | 1723 trades |
| Across 20 points the series ranged from 29 trades (0.11%) to 131 trades (0.11%), averaging 86 trades. The most recent value is 29 trades. | |
| Full series - 20 points. |
[
{
"bin": "0.10%",
"count": 92,
"from": 0.099812
},
{
"bin": "0.10%",
"count": 90,
"from": 0.100292
},
{
"bin": "0.10%",
"count": 89,
"from": 0.100771
},
{
"bin": "0.10%",
"count": 84,
"from": 0.10125
},
{
"bin": "0.10%",
"count": 96,
"from": 0.101729
},
{
"bin": "0.10%",
"count": 78,
"from": 0.102208
},
{
"bin": "0.10%",
"count": 50,
"from": 0.102687
},
{
"bin": "0.10%",
"count": 68,
"from": 0.103167
},
{
"bin": "0.10%",
"count": 62,
"from": 0.103646
},
{
"bin": "0.10%",
"count": 68,
"from": 0.104125
},
{
"bin": "0.10%",
"count": 101,
"from": 0.104604
},
{
"bin": "0.11%",
"count": 104,
"from": 0.105083
},
{
"bin": "0.11%",
"count": 131,
"from": 0.105562
},
{
"bin": "0.11%",
"count": 121,
"from": 0.106042
},
{
"bin": "0.11%",
"count": 118,
"from": 0.106521
},
{
"bin": "0.11%",
"count": 107,
"from": 0.107
},
{
"bin": "0.11%",
"count": 103,
"from": 0.107479
},
{
"bin": "0.11%",
"count": 79,
"from": 0.107958
},
{
"bin": "0.11%",
"count": 53,
"from": 0.108437
},
{
"bin": "0.11%",
"count": 29,
"from": 0.108917
}
]
Rolling Win Rate (50 Trades)
GET /backtests/{id}/trades * Fields used: profit * Transform: rollingWinRate(trades, 50)winRate).| Stat | Value |
|---|---|
| Hottest Window | 100.00% @ 50 |
| Coldest Window | 100.00% @ 50 |
| Mean | 100.00% |
| Std Dev | 0.00% |
| Last | 100.00% |
| Points | 1000 |
| Across 1000 points the series ranged from 100.00% (50) to 100.00% (50), averaging 100.00%. 100% of points were positive, 0% negative. The most recent value is 100.00%. | |
| Showing 60 of 1000 points (down-sampled for readability). |
[{"index":50,"winRate":100},{"index":78,"winRate":100},{"index":107,"winRate":100},{"index":135,"winRate":100},{"index":164,"winRate":100},{"index":192,"winRate":100},{"index":221,"winRate":100},{"index":249,"winRate":100},{"index":276,"winRate":100},{"index":305,"winRate":100},{"index":333,"winRate":100},{"index":361,"winRate":100},{"index":390,"winRate":100},{"index":418,"winRate":100},{"index":447,"winRate":100},{"index":475,"winRate":100},{"index":504,"winRate":100},{"index":532,"winRate":100},{"index":561,"winRate":100},{"index":589,"winRate":100},{"index":618,"winRate":100},{"index":646,"winRate":100},{"index":675,"winRate":100},{"index":701,"winRate":100},{"index":730,"winRate":100},{"index":758,"winRate":100},{"index":787,"winRate":100},{"index":815,"winRate":100},{"index":844,"winRate":100},{"index":872,"winRate":100},{"index":901,"winRate":100},{"index":929,"winRate":100},{"index":958,"winRate":100},{"index":986,"winRate":100},{"index":1015,"winRate":100},{"index":1043,"winRate":100},{"index":1072,"winRate":100},{"index":1098,"winRate":100},{"index":1127,"winRate":100},{"index":1155,"winRate":100},{"index":1184,"winRate":100},{"index":1212,"winRate":100},{"index":1241,"winRate":100},{"index":1269,"winRate":100},{"index":1298,"winRate":100},{"index":1326,"winRate":100},{"index":1355,"winRate":100},{"index":1383,"winRate":100},{"index":1412,"winRate":100},{"index":1440,"winRate":100},{"index":1468,"winRate":100},{"index":1497,"winRate":100},{"index":1524,"winRate":100},{"index":1552,"winRate":100},{"index":1581,"winRate":100},{"index":1609,"winRate":100},{"index":1638,"winRate":100},{"index":1666,"winRate":100},{"index":1695,"winRate":100},{"index":1723,"winRate":100}]
Gross vs. Net PnL (Fee Impact)
GET /backtests/{id}/trades * Fields used: sell_time, profit, buy_fee_in_quote, sell_fee_in_quote * Transform: grossVsNetPnL(trades)net).| Stat | Value |
|---|---|
| Peak Net | 0.5143 USDT @ 2026-02-25 17:10:00 UTC |
| Trough Net | 0.0051 USDT @ 2024-04-25 08:47:00 UTC |
| Mean | 0.2612 USDT |
| Std Dev | 0.1494 USDT |
| Last | 0.5143 USDT |
| Points | 98 |
| Sum | 25.60 USDT |
| Across 98 points the series ranged from 0.0051 USDT (2024-04-25 08:47:00 UTC) to 0.5143 USDT (2026-02-25 17:10:00 UTC), averaging 0.2612 USDT. 100% of points were positive, 0% negative. The most recent value is 0.5143 USDT. | |
| Showing 60 of 98 points (down-sampled for readability). |
[{"timestamp":"2024-04-25T08:47:00Z","net":0.0051454425,"gross":0.01269},{"timestamp":"2024-04-25T17:33:00Z","net":0.0154285725,"gross":0.03807},{"timestamp":"2024-04-29T04:15:00Z","net":0.020574719999999998,"gross":0.05076},{"timestamp":"2024-05-01T18:55:00Z","net":0.030886049999999998,"gross":0.07614000000000001},{"timestamp":"2024-05-03T03:38:00Z","net":0.041173409999999994,"gross":0.10152000000000003},{"timestamp":"2024-05-03T12:21:00Z","net":0.046304047499999994,"gross":0.11421000000000003},{"timestamp":"2024-05-03T12:30:00Z","net":0.056539942499999996,"gross":0.13959000000000005},{"timestamp":"2024-05-14T12:45:00Z","net":0.06672366749999999,"gross":0.16497000000000006},{"timestamp":"2024-05-14T13:15:00Z","net":0.07179790499999998,"gross":0.17766000000000007},{"timestamp":"2024-05-15T12:30:00Z","net":0.08285958999999998,"gross":0.20398000000000008},{"timestamp":"2024-05-15T18:12:00Z","net":0.08836117499999999,"gross":0.21714000000000008},{"timestamp":"2024-05-16T16:45:00Z","net":0.099343195,"gross":0.2434600000000001},{"timestamp":"2024-05-20T19:29:00Z","net":0.11032733,"gross":0.2697800000000001},{"timestamp":"2024-05-20T19:32:00Z","net":0.11568702,"gross":0.2826600000000001},{"timestamp":"2024-05-20T20:22:00Z","net":0.12634085,"gross":0.3084200000000001},{"timestamp":"2024-07-07T09:21:00Z","net":0.137149025,"gross":0.3344600000000001},{"timestamp":"2024-08-02T11:18:00Z","net":0.14268445000000002,"gross":0.3476200000000001},{"timestamp":"2024-08-23T18:04:00Z","net":0.15279887500000003,"gross":0.3728200000000001},{"timestamp":"2024-08-25T07:58:00Z","net":0.162878875,"gross":0.3980200000000001},{"timestamp":"2024-09-05T09:41:00Z","net":0.16793507500000002,"gross":0.4106200000000001},{"timestamp":"2024-09-25T02:52:00Z","net":0.17804545000000002,"gross":0.4358200000000001},{"timestamp":"2024-09-30T08:59:00Z","net":0.18814097500000002,"gross":0.4610200000000001},{"timestamp":"2024-10-24T19:34:00Z","net":0.19367640000000003,"gross":0.4741800000000001},{"timestamp":"2024-11-10T06:17:00Z","net":0.20474513500000002,"gross":0.5005000000000001},{"timestamp":"2024-12-22T22:38:00Z","net":0.2103168025,"gross":0.51373},{"timestamp":"2024-12-27T11:27:00Z","net":0.2214579325,"gross":0.54019},{"timestamp":"2024-12-31T18:08:00Z","net":0.2325975925,"gross":0.5666499999999999},{"timestamp":"2024-12-31T21:30:00Z","net":0.23816485,"gross":0.5798799999999998},{"timestamp":"2025-01-18T19:13:00Z","net":0.2493001,"gross":0.6063399999999998},{"timestamp":"2025-01-21T16:43:00Z","net":0.26044122999999997,"gross":0.6327999999999997},{"timestamp":"2025-01-22T09:57:00Z","net":0.2660092225,"gross":0.6460299999999997},{"timestamp":"2025-01-30T13:56:00Z","net":0.27714961749999995,"gross":0.6724899999999996},{"timestamp":"2025-03-03T10:01:00Z","net":0.28828119249999995,"gross":0.6989499999999995},{"timestamp":"2025-03-07T07:44:00Z","net":0.29381591249999994,"gross":0.7121099999999995},{"timestamp":"2025-03-25T09:08:00Z","net":0.30438655249999996,"gross":0.7378699999999995},{"timestamp":"2025-04-10T15:27:00Z","net":0.3149802025,"gross":0.7636299999999994},{"timestamp":"2025-04-10T15:38:00Z","net":0.3200289775,"gross":0.7762299999999993},{"timestamp":"2025-04-10T20:00:00Z","net":0.3301157275,"gross":0.8014299999999992},{"timestamp":"2025-04-10T22:16:00Z","net":0.3351564025,"gross":0.8140299999999991},{"timestamp":"2025-05-14T08:04:00Z","net":0.3452424775,"gross":0.839229999999999},{"timestamp":"2025-05-16T05:11:00Z","net":0.35533125249999997,"gross":0.8644299999999989},{"timestamp":"2025-05-19T07:08:00Z","net":0.3603753025,"gross":0.8770299999999989},{"timestamp":"2025-10-15T15:43:00Z","net":0.3709440175,"gross":0.9028299999999988},{"timestamp":"2026-01-28T01:23:00Z","net":0.3810340975,"gross":0.9280299999999988},{"timestamp":"2026-01-28T02:16:00Z","net":0.3860791375,"gross":0.9406299999999987},{"timestamp":"2026-01-28T22:34:00Z","net":0.3962183575,"gross":0.9658299999999986},{"timestamp":"2026-01-29T16:50:00Z","net":0.4063456075,"gross":0.9910299999999985},{"timestamp":"2026-01-29T18:40:00Z","net":0.41140828749999997,"gross":1.0036299999999985},{"timestamp":"2026-02-01T22:09:00Z","net":0.4216205875,"gross":1.0289187249999985},{"timestamp":"2026-02-03T17:16:00Z","net":0.43190722749999994,"gross":1.0542960399999985},{"timestamp":"2026-02-05T13:56:00Z","net":0.43705936749999996,"gross":1.0669845924999986},{"timestamp":"2026-02-08T23:05:00Z","net":0.44740648749999995,"gross":1.0923611874999986},{"timestamp":"2026-02-09T03:48:00Z","net":0.45256618749999994,"gross":1.1050496499999987},{"timestamp":"2026-02-09T07:32:00Z","net":0.46285723749999996,"gross":1.1304269124999986},{"timestamp":"2026-02-09T13:25:00Z","net":0.47309095749999996,"gross":1.1558048574999986},{"timestamp":"2026-02-09T15:01:00Z","net":0.47818639749999997,"gross":1.1684940849999985},{"timestamp":"2026-02-17T18:25:00Z","net":0.4884333475,"gross":1.1938718724999986},{"timestamp":"2026-02-20T15:14:00Z","net":0.4987571575,"gross":1.2192487449999987},{"timestamp":"2026-02-22T23:16:00Z","net":0.5039294575,"gross":1.2319370574999986},{"timestamp":"2026-02-25T17:10:00Z","net":0.5142608275,"gross":1.2573138399999986}]
Rolling Sharpe Ratio (30d / 90d)
GET /backtests/{id}/equity * Fields used: timestamp, total_value_exit_net * Transform: rollingSharpe(equity, 30) + rollingSharpe(equity, 90)sharpe30).| Stat | Value |
|---|---|
| Peak Sharpe (30d) | 9.45 @ 2024-07-21 23:59:00 UTC |
| Worst Sharpe (30d) | -5.43 @ 2024-06-11 23:59:00 UTC |
| Mean | 1.06 |
| Std Dev | 2.89 |
| Last | -1.96 |
| Points | 643 |
| Across 643 points the series ranged from -5.43 (2024-06-11 23:59:00 UTC) to 9.45 (2024-07-21 23:59:00 UTC), averaging 1.06. The most recent value is -1.96. | |
| Showing 60 of 643 points (down-sampled for readability). |
[{"timestamp":"2024-05-24T23:59:00+00:00","sharpe30":-3.168636609591514,"sharpe90":0.22364408296562993},{"timestamp":"2024-06-04T23:59:00+00:00","sharpe30":-1.3548125027566595,"sharpe90":0.23078024086234994},{"timestamp":"2024-06-15T23:59:00+00:00","sharpe30":-4.604420593021282,"sharpe90":0.8111087318577347},{"timestamp":"2024-06-26T23:59:00+00:00","sharpe30":-3.824119053588926,"sharpe90":1.6249064636747617},{"timestamp":"2024-07-07T23:59:00+00:00","sharpe30":0.9952363163643037,"sharpe90":2.5875365803394317},{"timestamp":"2024-07-17T23:59:00+00:00","sharpe30":6.672803482719409,"sharpe90":3.8037554818259913},{"timestamp":"2024-07-28T23:59:00+00:00","sharpe30":7.3170363802763765,"sharpe90":4.968933212410506},{"timestamp":"2024-08-08T23:59:00+00:00","sharpe30":5.077976411275412,"sharpe90":2.4667633419010486},{"timestamp":"2024-08-19T23:59:00+00:00","sharpe30":3.3512715986432746,"sharpe90":0.7404758462531507},{"timestamp":"2024-08-30T23:59:00+00:00","sharpe30":4.596320653068014,"sharpe90":1.3453036620427028},{"timestamp":"2024-09-10T23:59:00+00:00","sharpe30":2.039737072744189,"sharpe90":-0.019332789511767944},{"timestamp":"2024-09-21T23:59:00+00:00","sharpe30":1.848658543307511,"sharpe90":-1.0639576796975885},{"timestamp":"2024-10-02T23:59:00+00:00","sharpe30":1.4610877032854912,"sharpe90":-0.3666569903220236},{"timestamp":"2024-10-12T23:59:00+00:00","sharpe30":-0.06121366838824864,"sharpe90":-0.5421877057527416},{"timestamp":"2024-10-23T23:59:00+00:00","sharpe30":-3.1151958946702702,"sharpe90":-1.112127616094125},{"timestamp":"2024-11-03T23:59:00+00:00","sharpe30":0.6060094478211681,"sharpe90":-1.6869099980255489},{"timestamp":"2024-11-14T23:59:00+00:00","sharpe30":-2.4468291076674142,"sharpe90":-1.5270564845653716},{"timestamp":"2024-11-25T23:59:00+00:00","sharpe30":-2.773728398578632,"sharpe90":0.2461812695815148},{"timestamp":"2024-12-06T23:59:00+00:00","sharpe30":-0.18461997025185173,"sharpe90":-0.5050380339456295},{"timestamp":"2024-12-17T23:59:00+00:00","sharpe30":-0.16450223840987185,"sharpe90":0.3694547277702375},{"timestamp":"2024-12-28T23:59:00+00:00","sharpe30":-0.8556825019360976,"sharpe90":0.4527051396495888},{"timestamp":"2025-01-08T23:59:00+00:00","sharpe30":-2.411640504901589,"sharpe90":1.3646670311386693},{"timestamp":"2025-01-18T23:59:00+00:00","sharpe30":1.8318880772401753,"sharpe90":2.5910126861150786},{"timestamp":"2025-01-29T23:59:00+00:00","sharpe30":0.8125109183465771,"sharpe90":2.1422101372513245},{"timestamp":"2025-02-09T23:59:00+00:00","sharpe30":1.6392087743869614,"sharpe90":3.549456508192412},{"timestamp":"2025-02-20T23:59:00+00:00","sharpe30":1.5455918958865718,"sharpe90":2.8927710659523553},{"timestamp":"2025-03-03T23:59:00+00:00","sharpe30":2.4439409490918735,"sharpe90":3.115806414621558},{"timestamp":"2025-03-14T23:59:00+00:00","sharpe30":4.833366223915667,"sharpe90":2.3226883364785436},{"timestamp":"2025-03-25T23:59:00+00:00","sharpe30":4.676073307670212,"sharpe90":2.48904937526791},{"timestamp":"2025-04-05T23:59:00+00:00","sharpe30":3.8199997955872704,"sharpe90":1.7574665735387958},{"timestamp":"2025-04-15T23:59:00+00:00","sharpe30":3.9845880838014036,"sharpe90":1.7710580800099842},{"timestamp":"2025-04-26T23:59:00+00:00","sharpe30":1.6532371884368853,"sharpe90":1.511281785770227},{"timestamp":"2025-05-07T23:59:00+00:00","sharpe30":1.8243573542891915,"sharpe90":1.9095713838477801},{"timestamp":"2025-05-18T23:59:00+00:00","sharpe30":-2.585910567450679,"sharpe90":0.7543100713519137},{"timestamp":"2025-05-29T23:59:00+00:00","sharpe30":0.4813748034778091,"sharpe90":0.8847020721037449},{"timestamp":"2025-06-09T23:59:00+00:00","sharpe30":1.797974205787368,"sharpe90":1.4144411728020498},{"timestamp":"2025-06-20T23:59:00+00:00","sharpe30":1.922546567260759,"sharpe90":1.2343519587934066},{"timestamp":"2025-07-01T23:59:00+00:00","sharpe30":5.947429996725649,"sharpe90":1.4573733108719176},{"timestamp":"2025-07-11T23:59:00+00:00","sharpe30":3.5422865870209823,"sharpe90":0.9373521010037289},{"timestamp":"2025-07-22T23:59:00+00:00","sharpe30":4.12149747416181,"sharpe90":0.9191192103175562},{"timestamp":"2025-08-02T23:59:00+00:00","sharpe30":-0.8850803155067076,"sharpe90":0.3307922523468163},{"timestamp":"2025-08-13T23:59:00+00:00","sharpe30":1.2323133217025404,"sharpe90":-0.1189188701512907},{"timestamp":"2025-08-24T23:59:00+00:00","sharpe30":0.4533724960078815,"sharpe90":-0.13053003703334407},{"timestamp":"2025-09-04T23:59:00+00:00","sharpe30":1.5384271553073547,"sharpe90":-0.26440760103414135},{"timestamp":"2025-09-15T23:59:00+00:00","sharpe30":1.4586841700195097,"sharpe90":0.028236446250569765},{"timestamp":"2025-09-26T23:59:00+00:00","sharpe30":-0.13132654271949418,"sharpe90":-0.2662705736833386},{"timestamp":"2025-10-07T23:59:00+00:00","sharpe30":-1.6363136260535556,"sharpe90":-0.15422022922028816},{"timestamp":"2025-10-17T23:59:00+00:00","sharpe30":-1.121924931190256,"sharpe90":0.2625825760073522},{"timestamp":"2025-10-28T23:59:00+00:00","sharpe30":0.21294853376623002,"sharpe90":1.0088322806859362},{"timestamp":"2025-11-08T23:59:00+00:00","sharpe30":0.8235473820148407,"sharpe90":1.3713230362578788},{"timestamp":"2025-11-19T23:59:00+00:00","sharpe30":-1.7867241867972383,"sharpe90":0.1707745941595742},{"timestamp":"2025-11-30T23:59:00+00:00","sharpe30":1.788896795261577,"sharpe90":2.7927416993996705},{"timestamp":"2025-12-11T23:59:00+00:00","sharpe30":4.3552432749639065,"sharpe90":1.7876368616440785},{"timestamp":"2025-12-22T23:59:00+00:00","sharpe30":7.819458798022989,"sharpe90":1.3627775097020927},{"timestamp":"2026-01-02T23:59:00+00:00","sharpe30":1.8969209732168788,"sharpe90":null},{"timestamp":"2026-01-12T23:59:00+00:00","sharpe30":-1.306064450697896,"sharpe90":null},{"timestamp":"2026-01-23T23:59:00+00:00","sharpe30":1.0710908367879994,"sharpe90":null},{"timestamp":"2026-02-03T23:59:00+00:00","sharpe30":0.35833628351340846,"sharpe90":null},{"timestamp":"2026-02-14T23:59:00+00:00","sharpe30":2.1389177336711764,"sharpe90":null},{"timestamp":"2026-02-25T23:59:00+00:00","sharpe30":-1.9561497566653663,"sharpe90":null}]
Drawdown Recovery Episodes
GET /backtests/{id}/equity * Fields used: timestamp, total_value_exit_net * Transform: drawdownRecoveryEpisodes(equity)Consecutive Win/Loss Streaks
GET /backtests/{id}/trades * Fields used: sell_time, profit * Transform: consecutiveStreaks(trades)length).| Stat | Value |
|---|---|
| Longest Streak | 98 trades @ win |
| Shortest Streak | 98 trades @ win |
| Mean | 98 trades |
| Std Dev | 0 trades |
| Last | 98 trades |
| Points | 1 |
| Sum | 98 trades |
| Across 1 points the series ranged from 98 trades (win) to 98 trades (win), averaging 98 trades. The most recent value is 98 trades. | |
| Full series - 1 points. |
[{"type":"win","length":98,"index":0}]
Capital Utilization (% Invested)
GET /backtests/{id}/equity * Fields used: base_value_exit_net, total_value_exit_net * Transform: baseExposure(equity)exposure).| Stat | Value |
|---|---|
| Peak Utilization | 1.61% @ 2025-01-13 23:59:00 UTC |
| Min Utilization | 0.00% @ 2024-08-25 23:59:00 UTC |
| Mean | 0.70% |
| Std Dev | 0.36% |
| Last | 1.13% |
| Points | 673 |
| Across 673 points the series ranged from 0.00% (2024-08-25 23:59:00 UTC) to 1.61% (2025-01-13 23:59:00 UTC), averaging 0.70%. 100% of points were positive, 0% negative. The most recent value is 1.13%. | |
| Showing 60 of 673 points (down-sampled for readability). |
[{"timestamp":"2024-04-24T23:59:00+00:00","exposure":0.05020065674373277},{"timestamp":"2024-05-05T23:59:00+00:00","exposure":0.10107714534998788},{"timestamp":"2024-05-17T23:59:00+00:00","exposure":0.10105147037487168},{"timestamp":"2024-05-28T23:59:00+00:00","exposure":0.44932387761192766},{"timestamp":"2024-06-09T23:59:00+00:00","exposure":0.7471567537075013},{"timestamp":"2024-06-20T23:59:00+00:00","exposure":0.8935727551557044},{"timestamp":"2024-07-01T23:59:00+00:00","exposure":0.7953254495547193},{"timestamp":"2024-07-13T23:59:00+00:00","exposure":0.4531837863581163},{"timestamp":"2024-07-24T23:59:00+00:00","exposure":0.49897814092602844},{"timestamp":"2024-08-05T23:59:00+00:00","exposure":0.3496420632994154},{"timestamp":"2024-08-16T23:59:00+00:00","exposure":0.2013708720518007},{"timestamp":"2024-08-27T23:59:00+00:00","exposure":0.1003459776796846},{"timestamp":"2024-09-08T23:59:00+00:00","exposure":0.3027620481737035},{"timestamp":"2024-09-19T23:59:00+00:00","exposure":0.20077904857024542},{"timestamp":"2024-09-30T23:59:00+00:00","exposure":0.20016594960482578},{"timestamp":"2024-10-12T23:59:00+00:00","exposure":0.34829749467918625},{"timestamp":"2024-10-23T23:59:00+00:00","exposure":0.4946378914028006},{"timestamp":"2024-11-04T23:59:00+00:00","exposure":0.44533709162575136},{"timestamp":"2024-11-15T23:59:00+00:00","exposure":0.9352617946128102},{"timestamp":"2024-11-26T23:59:00+00:00","exposure":1.231461678435313},{"timestamp":"2024-12-08T23:59:00+00:00","exposure":0.9864336109525436},{"timestamp":"2024-12-19T23:59:00+00:00","exposure":1.314231142305613},{"timestamp":"2024-12-31T23:59:00+00:00","exposure":1.1185100286451064},{"timestamp":"2025-01-11T23:59:00+00:00","exposure":1.557366175608616},{"timestamp":"2025-01-22T23:59:00+00:00","exposure":1.0706939267151254},{"timestamp":"2025-02-03T23:59:00+00:00","exposure":1.461958961149101},{"timestamp":"2025-02-14T23:59:00+00:00","exposure":1.0790110501691692},{"timestamp":"2025-02-26T23:59:00+00:00","exposure":1.0809386330590058},{"timestamp":"2025-03-09T23:59:00+00:00","exposure":0.4989775404190888},{"timestamp":"2025-03-20T23:59:00+00:00","exposure":0.3534289701078024},{"timestamp":"2025-04-01T23:59:00+00:00","exposure":0.25446167299614925},{"timestamp":"2025-04-12T23:59:00+00:00","exposure":0.3059273617602696},{"timestamp":"2025-04-23T23:59:00+00:00","exposure":0.6548552513927021},{"timestamp":"2025-05-05T23:59:00+00:00","exposure":0.7532565620178941},{"timestamp":"2025-05-16T23:59:00+00:00","exposure":1.1945026860924428},{"timestamp":"2025-05-28T23:59:00+00:00","exposure":0.949632844871415},{"timestamp":"2025-06-08T23:59:00+00:00","exposure":0.6569128201442302},{"timestamp":"2025-06-19T23:59:00+00:00","exposure":0.5623163317907794},{"timestamp":"2025-07-01T23:59:00+00:00","exposure":0.43353553515437304},{"timestamp":"2025-07-12T23:59:00+00:00","exposure":0.46760703385832875},{"timestamp":"2025-07-24T23:59:00+00:00","exposure":0.391843629266109},{"timestamp":"2025-08-04T23:59:00+00:00","exposure":0.6891476690294753},{"timestamp":"2025-08-15T23:59:00+00:00","exposure":0.5728472031563915},{"timestamp":"2025-08-27T23:59:00+00:00","exposure":0.6836725537077918},{"timestamp":"2025-09-07T23:59:00+00:00","exposure":0.5483789804914048},{"timestamp":"2025-09-19T23:59:00+00:00","exposure":0.7742731842971737},{"timestamp":"2025-09-30T23:59:00+00:00","exposure":0.784944321955657},{"timestamp":"2025-10-11T23:59:00+00:00","exposure":1.1787063007268435},{"timestamp":"2025-10-23T23:59:00+00:00","exposure":1.0993305595588454},{"timestamp":"2025-11-03T23:59:00+00:00","exposure":1.1933190426918119},{"timestamp":"2025-11-14T23:59:00+00:00","exposure":0.9497816286711496},{"timestamp":"2025-11-26T23:59:00+00:00","exposure":1.0006188429241685},{"timestamp":"2025-12-07T23:59:00+00:00","exposure":0.953740255586796},{"timestamp":"2025-12-19T23:59:00+00:00","exposure":0.7721280135389726},{"timestamp":"2025-12-30T23:59:00+00:00","exposure":0.6281176091624261},{"timestamp":"2026-01-10T23:59:00+00:00","exposure":0.9772178459346486},{"timestamp":"2026-01-22T23:59:00+00:00","exposure":0.6999628857169348},{"timestamp":"2026-02-02T23:59:00+00:00","exposure":1.0616383349450988},{"timestamp":"2026-02-14T23:59:00+00:00","exposure":0.9261526543130663},{"timestamp":"2026-02-25T23:59:00+00:00","exposure":1.133179842133063}]
Price Chart with Buy/Sell Markers
GET /backtests/{id}/trades * Fields used: buy_time, buy_price, sell_time, sell_price * Transform: priceWithMarkers(trades)price).| Stat | Value |
|---|---|
| Highest Price | 1.20 @ 2026-01-28 01:23:00 UTC |
| Lowest Price | 1.04 @ 2024-12-31 17:39:00 UTC |
| Mean | 1.12 |
| Std Dev | 0.0526 |
| Last | 1.18 |
| Points | 190 |
| Across 190 points the series ranged from 1.04 (2024-12-31 17:39:00 UTC) to 1.20 (2026-01-28 01:23:00 UTC), averaging 1.12. The most recent value is 1.18. | |
| Showing 60 of 190 points (down-sampled for readability). |
[{"timestamp":"2024-04-24T14:11:00Z","price":1.0688},{"timestamp":"2024-04-25T14:05:00Z","price":1.0687},{"timestamp":"2024-04-25T17:54:00Z","price":1.0721},{"timestamp":"2024-04-29T02:43:00Z","price":1.0709},{"timestamp":"2024-05-01T18:35:00Z","price":1.0679},{"timestamp":"2024-05-02T18:49:00Z","price":1.071},{"timestamp":"2024-05-03T12:30:00Z","price":1.0748},{"timestamp":"2024-05-10T08:19:00Z","price":1.0781},{"timestamp":"2024-05-14T13:15:00Z","price":1.0816},{"timestamp":"2024-05-15T14:55:00Z","price":1.0849},{"timestamp":"2024-05-15T18:12:00Z","price":1.0877},{"timestamp":"2024-05-16T16:45:00Z","price":1.0896},{"timestamp":"2024-05-17T15:15:00Z","price":1.0885},{"timestamp":"2024-05-20T20:00:00Z","price":1.094},{"timestamp":"2024-05-20T20:36:00Z","price":1.1011},{"timestamp":"2024-07-07T09:21:00Z","price":1.0829},{"timestamp":"2024-08-21T18:34:00Z","price":1.1162},{"timestamp":"2024-08-21T21:51:00Z","price":1.1159},{"timestamp":"2024-08-25T07:58:00Z","price":1.1224},{"timestamp":"2024-09-18T18:01:00Z","price":1.1163},{"timestamp":"2024-09-24T19:08:00Z","price":1.1164},{"timestamp":"2024-09-26T15:24:00Z","price":1.1169},{"timestamp":"2024-10-24T04:48:00Z","price":1.0801},{"timestamp":"2024-11-07T14:44:00Z","price":1.0802},{"timestamp":"2024-12-22T22:38:00Z","price":1.0433},{"timestamp":"2024-12-27T11:27:00Z","price":1.0437},{"timestamp":"2024-12-31T16:14:00Z","price":1.0412},{"timestamp":"2024-12-31T21:30:00Z","price":1.0439},{"timestamp":"2025-01-20T14:03:00Z","price":1.0411},{"timestamp":"2025-01-21T16:43:00Z","price":1.0431},{"timestamp":"2025-01-23T04:18:00Z","price":1.0406},{"timestamp":"2025-01-30T13:56:00Z","price":1.0437},{"timestamp":"2025-03-03T10:01:00Z","price":1.0439},{"timestamp":"2025-03-17T12:46:00Z","price":1.1219},{"timestamp":"2025-03-31T14:57:00Z","price":1.0801},{"timestamp":"2025-04-10T15:02:00Z","price":1.1173},{"timestamp":"2025-04-10T16:08:00Z","price":1.119},{"timestamp":"2025-04-10T20:21:00Z","price":1.1185},{"timestamp":"2025-05-12T07:22:00Z","price":1.1168},{"timestamp":"2025-05-14T16:40:00Z","price":1.1193},{"timestamp":"2025-05-15T19:36:00Z","price":1.1178},{"timestamp":"2025-05-19T07:08:00Z","price":1.1208},{"timestamp":"2026-01-27T15:01:00Z","price":1.1965},{"timestamp":"2026-01-27T16:38:00Z","price":1.1995},{"timestamp":"2026-01-28T15:08:00Z","price":1.1958},{"timestamp":"2026-01-28T20:05:00Z","price":1.196},{"timestamp":"2026-01-29T15:17:00Z","price":1.1949},{"timestamp":"2026-01-30T02:18:00Z","price":1.193},{"timestamp":"2026-01-31T17:10:00Z","price":1.1857},{"timestamp":"2026-02-01T05:43:00Z","price":1.1842},{"timestamp":"2026-02-02T14:53:00Z","price":1.1828},{"timestamp":"2026-02-05T04:28:00Z","price":1.1807},{"timestamp":"2026-02-06T01:49:00Z","price":1.1793},{"timestamp":"2026-02-08T23:05:00Z","price":1.1813},{"timestamp":"2026-02-09T07:32:00Z","price":1.1858},{"timestamp":"2026-02-09T15:01:00Z","price":1.1927},{"timestamp":"2026-02-15T09:23:00Z","price":1.1849},{"timestamp":"2026-02-19T15:48:00Z","price":1.1775},{"timestamp":"2026-02-22T23:16:00Z","price":1.1805},{"timestamp":"2026-02-25T17:10:00Z","price":1.1805}]
Trade Size Distribution (Notional)
GET /backtests/{id}/trades * Fields used: buy_price, buy_quantity * Transform: tradeSizeDistribution(trades, 25)buy_price x buy_quantity) in quote currency.How to read it. A tight peak => uniform sizing. A long right-tail => a few oversized positions that dominate PnL and risk.Why it matters. Position-size variance is a hidden risk factor - strategies that ape into one mega-trade are not as repeatable as their headline numbers suggest.Insights (auto-derived from count).| Stat | Value |
|---|---|
| Most Populated Bin | 12 trades @ $5.10 |
| Least Populated Bin | 0 trades @ $5.05 |
| Mean | 4 trades |
| Std Dev | 3 trades |
| Last | 1 trades |
| Points | 25 |
| Sum | 98 trades |
| Across 25 points the series ranged from 0 trades (5.05)to∗∗12trades∗∗(5.10), averaging 4 trades. The most recent value is 1 trades. | |
| Full series - 25 points. |
[{"bin":"$5.01","count":3,"from":5.007099999999999},{"bin":"$5.01","count":2,"from":5.011444399999999},{"bin":"$5.02","count":3,"from":5.015788799999999},{"bin":"$5.02","count":11,"from":5.020133199999999},{"bin":"$5.02","count":7,"from":5.024477599999999},{"bin":"$5.03","count":8,"from":5.028822},{"bin":"$5.03","count":6,"from":5.0331664},{"bin":"$5.04","count":3,"from":5.0375108},{"bin":"$5.04","count":1,"from":5.0418552},{"bin":"$5.05","count":0,"from":5.0461996},{"bin":"$5.05","count":1,"from":5.0505439999999995},{"bin":"$5.05","count":2,"from":5.054888399999999},{"bin":"$5.06","count":2,"from":5.059232799999999},{"bin":"$5.06","count":3,"from":5.0635772},{"bin":"$5.07","count":2,"from":5.0679216},{"bin":"$5.07","count":6,"from":5.072266},{"bin":"$5.08","count":7,"from":5.0766104},{"bin":"$5.08","count":2,"from":5.0809548},{"bin":"$5.09","count":2,"from":5.0852992},{"bin":"$5.09","count":1,"from":5.0896436},{"bin":"$5.09","count":4,"from":5.0939879999999995},{"bin":"$5.10","count":12,"from":5.0983324},{"bin":"$5.10","count":7,"from":5.1026768},{"bin":"$5.11","count":2,"from":5.1070212},{"bin":"$5.11","count":1,"from":5.1113656}]
Return Distribution by Fill Type
GET /backtests/{id}/trades * Fields used: fill_type, profit_percentage * Transform: returnByFillType(trades)TP).| Stat | Value |
|---|---|
| Largest TP Bin | 24 trades @ 0.11 |
| Smallest TP Bin | 0 trades @ 0.11 |
| Mean | 5 trades |
| Std Dev | 6 trades |
| Last | 24 trades |
| Points | 20 |
| Sum | 98 trades |
| Across 20 points the series ranged from 0 trades (0.11) to 24 trades (0.11), averaging 5 trades. The most recent value is 24 trades. | |
| Full series - 20 points. |
[
{
"bin": 0.1,
"TP": 14,
"SL": 0,
"TSL": 0
},
{
"bin": 0.1,
"TP": 13,
"SL": 0,
"TSL": 0
},
{
"bin": 0.1,
"TP": 6,
"SL": 0,
"TSL": 0
},
{
"bin": 0.1,
"TP": 2,
"SL": 0,
"TSL": 0
},
{
"bin": 0.1,
"TP": 4,
"SL": 0,
"TSL": 0
},
{
"bin": 0.1,
"TP": 6,
"SL": 0,
"TSL": 0
},
{
"bin": 0.1,
"TP": 5,
"SL": 0,
"TSL": 0
},
{
"bin": 0.1,
"TP": 3,
"SL": 0,
"TSL": 0
},
{
"bin": 0.1,
"TP": 6,
"SL": 0,
"TSL": 0
},
{
"bin": 0.1,
"TP": 3,
"SL": 0,
"TSL": 0
},
{
"bin": 0.1,
"TP": 2,
"SL": 0,
"TSL": 0
},
{
"bin": 0.11,
"TP": 0,
"SL": 0,
"TSL": 0
},
{
"bin": 0.11,
"TP": 1,
"SL": 0,
"TSL": 0
},
{
"bin": 0.11,
"TP": 1,
"SL": 0,
"TSL": 0
},
{
"bin": 0.11,
"TP": 0,
"SL": 0,
"TSL": 0
},
{
"bin": 0.11,
"TP": 3,
"SL": 0,
"TSL": 0
},
{
"bin": 0.11,
"TP": 3,
"SL": 0,
"TSL": 0
},
{
"bin": 0.11,
"TP": 1,
"SL": 0,
"TSL": 0
},
{
"bin": 0.11,
"TP": 1,
"SL": 0,
"TSL": 0
},
{
"bin": 0.11,
"TP": 24,
"SL": 0,
"TSL": 0
}
]
Monthly Equity Comparison (YoY)
GET /backtests/{id}/equity * Fields used: timestamp, total_value_exit_net * Transform: monthlyEquityYoY(equity)2025).| Stat | Value |
|---|---|
| Best Indexed Value | 100.10 @ Dec |
| Worst Indexed Value | 100.00 @ Jan |
| Mean | 100.07 |
| Std Dev | 0.0303 |
| Last | 100.10 |
| Points | 12 |
| Across 12 points the series ranged from 100.00 (Jan) to 100.10 (Dec), averaging 100.07. The most recent value is 100.10. | |
| Full series - 12 points. |
[
{
"2025": 100.00244870025057,
"2026": 99.99735224497992,
"month": "Jan"
},
{
"2025": 100.00819256167071,
"2026": 99.99710920804202,
"month": "Feb"
},
{
"2025": 100.06205068346266,
"month": "Mar"
},
{
"2024": 99.9990490248281,
"2025": 100.06543732403696,
"month": "Apr"
},
{
"2024": 99.99611477815493,
"2025": 100.06971511123581,
"month": "May"
},
{
"2024": 99.98912334714021,
"2025": 100.08767542197339,
"month": "Jun"
},
{
"2024": 100.00021241930008,
"2025": 100.0690802204049,
"month": "Jul"
},
{
"2024": 100.00752658089283,
"2025": 100.09034287132164,
"month": "Aug"
},
{
"2024": 100.01195849604913,
"2025": 100.0912456439893,
"month": "Sep"
},
{
"2024": 100.00947284996793,
"2025": 100.08090439095649,
"month": "Oct"
},
{
"2024": 100.00707210649671,
"2025": 100.08711251225577,
"month": "Nov"
},
{
"2024": 99.99088309730854,
"2025": 100.10170617323068,
"month": "Dec"
}
]
Profit by Weekday
GET /backtests/{id}/trades * Fields used: sell_time, profit * Transform: profitByWeekday(trades)profit).| Stat | Value |
|---|---|
| Best Weekday | 1.90 USDT @ Thu |
| Worst Weekday | 0.4564 USDT @ Fri |
| Mean | 1.30 USDT |
| Std Dev | 0.4386 USDT |
| Last | 1.62 USDT |
| Points | 7 |
| Sum | 9.08 USDT |
| Across 7 points the series ranged from 0.4564 USDT (Fri) to 1.90 USDT (Thu), averaging 1.30 USDT. 100% of points were positive, 0% negative. The most recent value is 1.62 USDT. | |
| Full series - 7 points. |
[
{
"day": "Mon",
"profit": 1.489878
},
{
"day": "Tue",
"profit": 1.319878
},
{
"day": "Wed",
"profit": 1.353285
},
{
"day": "Thu",
"profit": 1.901382
},
{
"day": "Fri",
"profit": 0.456359
},
{
"day": "Sat",
"profit": 0.936152
},
{
"day": "Sun",
"profit": 1.618669
}
]
Profit by Hour (UTC)
GET /backtests/{id}/trades * Fields used: sell_time, profit * Transform: profitByHour(trades)profit).| Stat | Value |
|---|---|
| Best Hour (UTC) | 0.6406 USDT @ 14:00 |
| Worst Hour (UTC) | 0.1945 USDT @ 5:00 |
| Mean | 0.3782 USDT |
| Std Dev | 0.1261 USDT |
| Last | 0.3642 USDT |
| Points | 24 |
| Sum | 9.08 USDT |
| Across 24 points the series ranged from 0.1945 USDT (5:00) to 0.6406 USDT (14:00), averaging 0.3782 USDT. 100% of points were positive, 0% negative. The most recent value is 0.3642 USDT. | |
| Full series - 24 points. |
[{"hour":"0:00","profit":0.33077},{"hour":"1:00","profit":0.254025},{"hour":"2:00","profit":0.230184},{"hour":"3:00","profit":0.247691},{"hour":"4:00","profit":0.250498},{"hour":"5:00","profit":0.194471},{"hour":"6:00","profit":0.347794},{"hour":"7:00","profit":0.359173},{"hour":"8:00","profit":0.474928},{"hour":"9:00","profit":0.353716},{"hour":"10:00","profit":0.327854},{"hour":"11:00","profit":0.231478},{"hour":"12:00","profit":0.568805},{"hour":"13:00","profit":0.557869},{"hour":"14:00","profit":0.640575},{"hour":"15:00","profit":0.482645},{"hour":"16:00","profit":0.434365},{"hour":"17:00","profit":0.316385},{"hour":"18:00","profit":0.271315},{"hour":"19:00","profit":0.336426},{"hour":"20:00","profit":0.396973},{"hour":"21:00","profit":0.480169},{"hour":"22:00","profit":0.623272},{"hour":"23:00","profit":0.364222}]
Profit vs. Hold Time
GET /backtests/{id}/trades * Fields used: buy_time, sell_time, profit_percentage * Transform: holdTimes(trades)profitPct).| Stat | Value |
|---|---|
| Best Trade Return | 0.11% @ 0.48333333333333334 |
| Worst Trade Return | 0.10% @ 15.516666666666667 |
| Mean | 0.10% |
| Std Dev | 0.00% |
| Last | 0.10% |
| Points | 98 |
| Across 98 points the series ranged from 0.10% (15.516666666666667) to 0.11% (0.48333333333333334), averaging 0.10%. 100% of points were positive, 0% negative. The most recent value is 0.10%. | |
| Showing 60 of 98 points (down-sampled for readability). |
[{"hours":18.6,"profitPct":0.1024302957,"profit":0.0051454425},{"hours":2.6166666666666667,"profitPct":0.102453916,"profit":0.0051461475},{"hours":186.6,"profitPct":0.1016532973,"profit":0.0051221775},{"hours":57.63333333333333,"profitPct":0.102453916,"profit":0.0051461475},{"hours":105.63333333333334,"profitPct":0.1019352881,"profit":0.0051306375},{"hours":10.35,"profitPct":0.1029035433,"profit":0.0051595425},{"hours":23.5,"profitPct":0.1025484414,"profit":0.0051489675},{"hours":161.01666666666668,"profitPct":0.1008810675,"profit":0.0050989125},{"hours":22.183333333333334,"profitPct":0.1000671981,"profit":0.0050742375},{"hours":22.216666666666665,"profitPct":0.1087533524,"profit":0.005526965},{"hours":3.283333333333333,"profitPct":0.1078947368,"profit":0.005501585},{"hours":121.9,"profitPct":0.1070418006,"profit":0.00535969},{"hours":1.7166666666666666,"profitPct":0.1077047066,"profit":0.005495945},{"hours":77.01666666666667,"profitPct":0.1074438719,"profit":0.00548819},{"hours":0.36666666666666664,"profitPct":0.105749543,"profit":0.00532174},{"hours":90.18333333333334,"profitPct":0.1090408296,"profit":0.005535425},{"hours":22.65,"profitPct":0.1090408296,"profit":0.005535425},{"hours":79.06666666666666,"profitPct":0.1003489621,"profit":0.00504675},{"hours":15.516666666666667,"profitPct":0.0999017506,"profit":0.00503325},{"hours":235.03333333333333,"profitPct":0.1006629636,"profit":0.0050562},{"hours":162.58333333333334,"profitPct":0.1002593918,"profit":0.00504405},{"hours":89.58333333333333,"profitPct":0.1005058644,"profit":0.005051475},{"hours":4103.766666666666,"profitPct":0.1000134036,"profit":0.005036625},{"hours":19.7,"profitPct":0.1089928724,"profit":0.005534015},{"hours":63.55,"profitPct":0.1090168487,"profit":0.00553472},{"hours":27.4,"profitPct":0.1092960115,"profit":0.0055724025},{"hours":17.366666666666667,"profitPct":0.1090221774,"profit":0.0055643175},{"hours":5.266666666666667,"profitPct":0.1091216865,"profit":0.0055672575},{"hours":0.016666666666666666,"profitPct":0.1092461805,"profit":0.0055709325},{"hours":6.066666666666666,"profitPct":0.1091465757,"profit":0.0055679925},{"hours":15.883333333333333,"profitPct":0.1093209343,"profit":0.0055731375},{"hours":21.983333333333334,"profitPct":0.1092710936,"profit":0.0055716675},{"hours":335.6333333333333,"profitPct":0.1090221774,"profit":0.0055643175},{"hours":80.91666666666667,"profitPct":0.1091216865,"profit":0.0055672575},{"hours":0.016666666666666666,"profitPct":0.1089928724,"profit":0.005534015},{"hours":0.5333333333333333,"profitPct":0.1007303522,"profit":0.005058225},{"hours":0.6,"profitPct":0.1004161819,"profit":0.005048775},{"hours":0.21666666666666667,"profitPct":0.1004385965,"profit":0.00504945},{"hours":1.9166666666666667,"profitPct":0.100147519,"profit":0.005040675},{"hours":39.583333333333336,"profitPct":0.1005282951,"profit":0.00505215},{"hours":6.233333333333333,"profitPct":0.1002370092,"profit":0.005043375},{"hours":9.583333333333334,"profitPct":0.1003041689,"profit":0.0050454},{"hours":61.15,"profitPct":0.1084044479,"profit":0.00553344},{"hours":11,"profitPct":0.1002922268,"profit":0.00504504},{"hours":8.833333333333334,"profitPct":0.1000417049,"profit":0.00503748},{"hours":5.9,"profitPct":0.1009417378,"profit":0.00506457},{"hours":3.3833333333333333,"profitPct":0.1008787346,"profit":0.00506268},{"hours":1.15,"profitPct":0.1011309374,"profit":0.00507024},{"hours":237.61666666666667,"profitPct":0.1019752879,"profit":0.00509544},{"hours":211.7,"profitPct":0.1025697194,"profit":0.00511308},{"hours":22.1,"profitPct":0.1034023669,"profit":0.00513765},{"hours":160.65,"profitPct":0.1034452147,"profit":0.00513891},{"hours":24.9,"profitPct":0.1040466102,"profit":0.00515655},{"hours":1.5,"profitPct":0.1048457026,"profit":0.00517986},{"hours":73.5,"profitPct":0.1041543027,"profit":0.0051597},{"hours":72.81666666666666,"profitPct":0.1038959939,"profit":0.00515214},{"hours":57.03333333333333,"profitPct":0.1029960334,"profit":0.00512568},{"hours":89.31666666666666,"profitPct":0.1041327569,"profit":0.00515907},{"hours":79.46666666666667,"profitPct":0.1045859873,"profit":0.0051723},{"hours":25.583333333333332,"profitPct":0.1045859873,"profit":0.0051723}]
Fill Type Breakdown
GET /backtests/{id}/trades * Fields used: fill_type * Transform: computeKPIs(equity, trades).fillTypescount).| Stat | Value |
|---|---|
| Most Frequent Exit | 98 trades @ TP |
| Least Frequent Exit | 0 trades @ SL |
| Mean | 33 trades |
| Std Dev | 46 trades |
| Last | 0 trades |
| Points | 3 |
| Sum | 98 trades |
| Across 3 points the series ranged from 0 trades (SL) to 98 trades (TP), averaging 33 trades. The most recent value is 0 trades. | |
| Full series - 3 points. |
[
{
"type": "TP",
"count": 98
},
{
"type": "SL",
"count": 0
},
{
"type": "TSL",
"count": 0
}
]
Machine-Readable Facts
facts_sha256 in the frontmatter - re-hash it to verify.- JSON
- Flat Table
{
"backtest_id": "99bdb498-e08b-42f5-8024-b35ceee3c0b1",
"symbol": "EURUSDT",
"strategy": "3LongTimeLong.json",
"strategy_label": "LongTimeLong",
"status": "completed",
"period_from": "2024-04-24",
"period_to": "2026-02-25",
"duration_days": 672,
"start_balance_usdt": 10000,
"final_value_usdt": 10008.8774968,
"return_pct": 0.0888,
"total_profit_usdt": 9.07560323,
"avg_profit_per_trade_usdt": 0.00526733,
"fulfilled_trades": 1723,
"active_orders": 17,
"win_rate_pct": 100,
"best_trade_usdt": 0.00557534,
"worst_trade_usdt": 0.00503325,
"trades_per_month": 77.9206056639154,
"max_drawdown_pct": 0.03957430936457866,
"max_drawdown_abs_usdt": 3.957922364999831,
"drawdown_duration_days": 106,
"recovery_days": 38,
"cagr_pct": 0.04824180061842043,
"volatility_annualized_pct": 0.061304337458111736,
"sharpe_annualized": 0.7871279125979439,
"sortino_annualized": 0.80866635235965,
"time_in_market_pct": 99.85141158989599,
"final_cash_usdt": 9895.4589145799,
"final_base_value_usdt": null,
"final_unrealized_pnl_usdt": 27.37893084,
"median_hold_hours": 19.15,
"avg_hold_hours": 95.40697278911564,
"buyhold_return_pct": null,
"outperformance_vs_buyhold_pp": null
}
| Key | Value |
|---|---|
backtest_id | 99bdb498-e08b-42f5-8024-b35ceee3c0b1 |
symbol | EURUSDT |
strategy | 3LongTimeLong.json |
strategy_label | LongTimeLong |
status | completed |
period_from | 2024-04-24 |
period_to | 2026-02-25 |
duration_days | 672 |
start_balance_usdt | 10000 |
final_value_usdt | 10008.8774968 |
return_pct | 0.0888 |
total_profit_usdt | 9.07560323 |
avg_profit_per_trade_usdt | 0.00526733 |
fulfilled_trades | 1723 |
active_orders | 17 |
win_rate_pct | 100 |
best_trade_usdt | 0.00557534 |
worst_trade_usdt | 0.00503325 |
trades_per_month | 77.9206056639154 |
max_drawdown_pct | 0.03957430936457866 |
max_drawdown_abs_usdt | 3.957922364999831 |
drawdown_duration_days | 106 |
recovery_days | 38 |
cagr_pct | 0.04824180061842043 |
volatility_annualized_pct | 0.061304337458111736 |
sharpe_annualized | 0.7871279125979439 |
sortino_annualized | 0.80866635235965 |
time_in_market_pct | 99.85141158989599 |
final_cash_usdt | 9895.4589145799 |
final_base_value_usdt | null |
final_unrealized_pnl_usdt | 27.37893084 |
median_hold_hours | 19.15 |
avg_hold_hours | 95.40697278911564 |
buyhold_return_pct | null |
outperformance_vs_buyhold_pp | null |
Metric Provenance Index
| Metric | Source | JSON path | Transform | Value in this report |
|---|---|---|---|---|
| Symbol | GET /backtests/{id} | $.symbol | direct API value | EURUSDT |
| Mode | GET /backtests/{id} | $.mode_name | direct API value | 3LongTimeLong.json |
| Status | GET /backtests/{id} | $.status | direct API value | completed |
| Period start | GET /backtests/{id} | $.config.from | direct API value | 2024-04-24 00:00:01 |
| Period end | GET /backtests/{id} | $.config.to | direct API value | 2026-02-25 23:59:59 |
| Start balance | GET /backtests/{id} | $.start_balance | direct API value | 10,000.00 USDT |
| Final value | GET /backtests/{id} | $.final_value | direct API value | 10,008.88 USDT |
| Return % | GET /backtests/{id} | $.return_pct | direct API value (cross-check: (final_value/start_balance - 1) * 100) | +0.09% |
| Total profit | GET /backtests/{id} | $.total_profit | direct API value (cross-check: Sum trades[].profit) | +9.08 USDT |
| Win rate % | GET /backtests/{id} | $.win_rate | direct API value (cross-check: 100 * count(trades[].profit > 0) / count(trades)) | 100.0% |
| Trades count | GET /backtests/{id} | $.fulfilled_trades | direct API value (cross-check: count(trades)) | 1,723 |
| Best trade | GET /backtests/{id} | $.max_profit | direct API value (cross-check: max(trades[].profit)) | +0.0056 USDT |
| Worst trade | GET /backtests/{id} | $.min_profit | direct API value (cross-check: min(trades[].profit)) | +0.0050 USDT |
| Avg profit / trade | GET /backtests/{id} | $.avg_profit | direct API value | +0.0053 USDT |
| Trades / month | derived | n/a | fulfilled_trades / (durationDays / 30.4375) | 77.9 |
| Max drawdown % | GET /backtests/{id}/equity | $[*].total_value_* | maxDrawdown(equity) - running peak vs. trough | -0.04% |
| Max drawdown abs | GET /backtests/{id}/equity | $[*].total_value_* | maxDrawdown(equity).abs | -3.96 USDT |
| CAGR % | GET /backtests/{id}/equity | $[*].timestamp, $[*].total_value_* | (final/start)^(365.25/days) - 1 | +0.05% |
| Volatility (ann.) % | GET /backtests/{id}/equity | $[*].timestamp, $[*].total_value_* | std(daily_returns) * sqrt(365) | 0.06% |
| Sharpe ratio (ann.) | GET /backtests/{id}/equity | $[*].timestamp, $[*].total_value_* | mean(daily_returns) / std(daily_returns) * sqrt(365) (rf=0) | 0.79 |
| Sortino ratio (ann.) | GET /backtests/{id}/equity | $[*].timestamp, $[*].total_value_* | mean(daily_returns) / std(downside_returns) * sqrt(365) (rf=0) | 0.81 |
| Time in market % | GET /backtests/{id}/equity | $[*].base_asset_bal | count(samples where base_asset_bal>0) / count(samples) * 100 | 99.9% |
| Total fees | GET /backtests/{id}/trades | $[*].buy_fee_in_quote, $[*].sell_fee_in_quote | Sum (buy_fee_in_quote + sell_fee_in_quote) | 0.74 USDT |
| Gross profit (winners) | GET /backtests/{id}/trades | $[?(@.profit>0)].profit | Sum profit where profit > 0 | +0.51 USDT |
| Gross loss (losers) | GET /backtests/{id}/trades | $[?(@.profit<0)].profit | Sum abs(profit) where profit < 0 | 0.00 USDT |
| Profit factor | GET /backtests/{id}/trades | $[*].profit | Sum winners.profit / Sum abs(losers.profit) | inf |
| Payoff ratio | GET /backtests/{id}/trades | $[*].profit | avg(winners.profit) / avg(abs(losers.profit)) | inf |
| Expectancy / trade | GET /backtests/{id}/trades | $[*].profit | mean(trades[].profit) | +0.0052 USDT |
| Max consecutive wins | GET /backtests/{id}/trades | $[*].profit (ordered) | longest run where profit > 0 | 98 |
| Max consecutive losses | GET /backtests/{id}/trades | $[*].profit (ordered) | longest run where profit < 0 | 0 |
| Avg holding (h) | GET /backtests/{id}/trades | $[*].buy_time, $[*].sell_time | mean(sell_time - buy_time) / 3600 | 95.4h |
| Median holding (h) | GET /backtests/{id}/trades | $[*].buy_time, $[*].sell_time | median(sell_time - buy_time) / 3600 | 19.1h |
| Total volume (notional) | GET /backtests/{id}/trades | $[*].buy_quantity, $[*].buy_price | Sum (buy_quantity * buy_price) | 993 USDT |
Raw API Attachments
/trades. Full trade population: 1,723 closed trades - fetch the complete list via GET /backtests/99bdb498-e08b-42f5-8024-b35ceee3c0b1/trades. Aggregate KPIs are computed server-side against the full population, not from this sample.GET /backtests/99bdb498-e08b-42f5-8024-b35ceee3c0b1 - backtest summary (verbatim)
GET /backtests/99bdb498-e08b-42f5-8024-b35ceee3c0b1 - backtest summary (verbatim)
{
"id": "99bdb498-e08b-42f5-8024-b35ceee3c0b1",
"status": "completed",
"error_message": null,
"created_at": "2026-05-08T13:39:05.092788Z",
"started_at": "2026-05-09T22:18:46.744489Z",
"completed_at": "2026-05-09T22:22:35.187839Z",
"mode_name": "3LongTimeLong.json",
"symbol": "EURUSDT",
"data_file": "",
"start_balance": 10000,
"final_value": 10008.8774968,
"return_pct": 0.0888,
"total_profit": 9.07560323,
"fulfilled_trades": 1723,
"active_orders": 17,
"win_rate": 100,
"avg_profit": 0.00526733,
"max_profit": 0.00557534,
"min_profit": 0.00503325,
"elapsed_sec": 129.36,
"max_drawdown": -0.0396,
"profit_factor": null,
"sharpe_ratio": 0.7871,
"total_fees": 13.05726404,
"avg_hold_time_hours": 110.7014,
"tp_count": 1723,
"sl_count": 0,
"tsl_count": 0,
"start_price": 1.0689,
"end_price": 1.1811,
"gross_profit_quote": 22.132867,
"gross_loss_quote": 0,
"wins": 1723,
"losses": 0,
"breakeven": 0,
"consecutive_wins_max": 1723,
"consecutive_losses_max": 0,
"holding_minutes_p50": 389,
"holding_minutes_p95": 23747,
"holding_minutes_max": 246226,
"description": "EURUSDT | 3LongTimeLong.json | 2024-04-24 - 2026-02-25 | +0.09% | 1723 trades | 100% WR",
"summary_text": "Backtest EURUSDT (Mode: 3LongTimeLong.json)\nPeriod: 2024-04-24 00:00:01 to 2026-02-25 23:59:59\nStarting balance: 10,000.00 USDT\nFinal value: 10,008.88 USDT\nP&L: +8.88 USDT (+0.09%)\nResult: PROFIT\nCompleted trades: 1723\nOpen orders at end: 17\nWin rate: 100.0%\nAvg. profit/trade: 0.005267 USDT\nBest trade: 0.005575 USDT\nWorst trade: 0.005033 USDT\nTotal profit (trades only): 9.075603 USDT\nMax drawdown: -0.04%\nProfit factor: inf (no losing trades)\nSharpe ratio: 0.79\nTotal fees: 13.06 USDT\nAvg hold time: 110.7h\nTP / SL / TSL: 1723 / 0 / 0\n\nStrategy parameters:\n Buy trigger: -0.1% from last buy\n Buy splits: 9\n Sell targets: [0.25, 0.35, 0.5, 0.75, 1.0, 2.5, 5.0, 10.0, 15.0]\n Investment per buy: 25.0 USDT\n Fees: maker 7.5 bps / taker 7.5 bps\n\nElapsed: 129.4s",
"share_token": null,
"config_hash": "59aba527e6baac167844edfbbd1f802bb19c5b8867aa212171a22a260e3d808b",
"config": {
"to": "2026-02-25 23:59:59",
"from": "2024-04-24 00:00:01",
"canBuy": true,
"symbol": "EURUSDT",
"canSell": true,
"canBuyUp": true,
"startBal": 10000,
"stepSize": 0.1,
"stopLoss": false,
"tickSize": 0.0001,
"buySplits": 9,
"buyVolumes": [
20,
15,
10,
10,
10,
10,
5,
5,
5
],
"canBuyDown": false,
"minNotional": 5,
"buyPercentage": 0.1,
"fees_in_quote": true,
"intrabar_mode": "OLHC",
"maker_fee_bps": 7.5,
"taker_fee_bps": 7.5,
"sellPercentages": [
0.25,
0.35,
0.5,
0.75,
1,
2.5,
5,
10,
15
],
"triggerCoolDown": 1,
"investmentPerBuy": 25,
"assumed_spread_bps": 0,
"stopLossPercentage": 5,
"investmentPercentMode": false,
"minInvestmentPerQuote": 25,
"order_latency_seconds": 2,
"trailingStopLossPercentages": [
0,
0,
0,
0,
0,
0,
0,
0,
0
],
"sellCancelDistancePercentage": 1,
"dontBuyBelowQuoteAssetBalance": 1,
"investmentPerFreeQuotePercent": 0.01,
"sellActivateDistancePercentage": 0.1
},
"is_duplicate": false,
"compact": false
}
GET /backtests/99bdb498-e08b-42f5-8024-b35ceee3c0b1/equity - equity series (verbatim, 673 points)
GET /backtests/99bdb498-e08b-42f5-8024-b35ceee3c0b1/equity - equity series (verbatim, 673 points)
[
{
"timestamp": "2024-04-24T23:59:00+00:00",
"base_asset_bal": 4.7,
"quote_asset_bal": 9994.97287248,
"total_value_mid": 9999.99670248,
"total_value_exit_net": 9999.9929346075,
"total_value": 9999.99670248,
"base_cost_quote": 5.02712752,
"unrealized_pnl_exit_net": -0.0070653925
},
{
"timestamp": "2024-04-25T23:59:00+00:00",
"base_asset_bal": 4.7,
"quote_asset_bal": 9994.97277942,
"total_value_mid": 10000.00976942,
"total_value_exit_net": 10000.0059916775,
"total_value": 10000.00976942,
"base_cost_quote": 5.0426491525,
"unrealized_pnl_exit_net": -0.009436895
},
{
"timestamp": "2024-04-26T23:59:00+00:00",
"base_asset_bal": 14.1,
"quote_asset_bal": 9984.89782887,
"total_value_mid": 9999.96649887,
"total_value_exit_net": 9999.9551973675,
"total_value": 9999.96649887,
"base_cost_quote": 15.1175997025,
"unrealized_pnl_exit_net": -0.060231205
},
{
"timestamp": "2024-04-27T23:59:00+00:00",
"base_asset_bal": 14.1,
"quote_asset_bal": 9984.89782887,
"total_value_mid": 9999.95380887,
"total_value_exit_net": 9999.942516885,
"total_value": 9999.95380887,
"base_cost_quote": 15.1175997025,
"unrealized_pnl_exit_net": -0.0729116875
},
{
"timestamp": "2024-04-28T23:59:00+00:00",
"base_asset_bal": 14.1,
"quote_asset_bal": 9984.89782887,
"total_value_mid": 9999.98059887,
"total_value_exit_net": 9999.9692867925,
"total_value": 9999.98059887,
"base_cost_quote": 15.1175997025,
"unrealized_pnl_exit_net": -0.04614178
},
{
"timestamp": "2024-04-29T23:59:00+00:00",
"base_asset_bal": 18.8,
"quote_asset_bal": 9979.8607962175,
"total_value_mid": 9999.9937162175,
"total_value_exit_net": 9999.9786165275,
"total_value": 9999.9937162175,
"base_cost_quote": 20.1597785025,
"unrealized_pnl_exit_net": -0.0419581925
},
{
"timestamp": "2024-04-30T23:59:00+00:00",
"base_asset_bal": 18.8,
"quote_asset_bal": 9979.8607962175,
"total_value_mid": 9999.9128762175,
"total_value_exit_net": 9999.8978371575,
"total_value": 9999.9128762175,
"base_cost_quote": 20.1597785025,
"unrealized_pnl_exit_net": -0.1227375625
},
{
"timestamp": "2024-05-01T23:59:00+00:00",
"base_asset_bal": 23.5,
"quote_asset_bal": 9974.84633179,
"total_value_mid": 9999.98193179,
"total_value_exit_net": 9999.96308009,
"total_value": 9999.98193179,
"base_cost_quote": 25.18455426,
"unrealized_pnl_exit_net": -0.06780596
},
{
"timestamp": "2024-05-02T23:59:00+00:00",
"base_asset_bal": 18.8,
"quote_asset_bal": 9979.876256515,
"total_value_mid": 10000.012936515,
"total_value_exit_net": 9999.997834005,
"total_value": 10000.012936515,
"base_cost_quote": 20.1597785025,
"unrealized_pnl_exit_net": -0.0382010125
},
{
"timestamp": "2024-05-03T23:59:00+00:00",
"base_asset_bal": 9.4,
"quote_asset_bal": 9989.9307913225,
"total_value_mid": 10000.0320313225,
"total_value_exit_net": 10000.0244553925,
"total_value": 10000.0320313225,
"base_cost_quote": 10.12574862,
"unrealized_pnl_exit_net": -0.03208455
},
{
"timestamp": "2024-05-04T23:59:00+00:00",
"base_asset_bal": 9.4,
"quote_asset_bal": 9989.9307913225,
"total_value_mid": 10000.0367313225,
"total_value_exit_net": 10000.0291518675,
"total_value": 10000.0367313225,
"base_cost_quote": 10.12574862,
"unrealized_pnl_exit_net": -0.027388075
},
{
"timestamp": "2024-05-05T23:59:00+00:00",
"base_asset_bal": 9.4,
"quote_asset_bal": 9989.9307913225,
"total_value_mid": 10000.0461313225,
"total_value_exit_net": 10000.0385448175,
"total_value": 10000.0461313225,
"base_cost_quote": 10.12574862,
"unrealized_pnl_exit_net": -0.017995125
},
{
"timestamp": "2024-05-06T23:59:00+00:00",
"base_asset_bal": 9.4,
"quote_asset_bal": 9989.9307913225,
"total_value_mid": 10000.0461313225,
"total_value_exit_net": 10000.0385448175,
"total_value": 10000.0461313225,
"base_cost_quote": 10.12574862,
"unrealized_pnl_exit_net": -0.017995125
},
{
"timestamp": "2024-05-07T23:59:00+00:00",
"base_asset_bal": 9.4,
"quote_asset_bal": 9989.9307913225,
"total_value_mid": 10000.0282713225,
"total_value_exit_net": 10000.0206982125,
"total_value": 10000.0282713225,
"base_cost_quote": 10.12574862,
"unrealized_pnl_exit_net": -0.03584173
},
{
"timestamp": "2024-05-08T23:59:00+00:00",
"base_asset_bal": 9.4,
"quote_asset_bal": 9989.9307913225,
"total_value_mid": 10000.0414313225,
"total_value_exit_net": 10000.0338483425,
"total_value": 10000.0414313225,
"base_cost_quote": 10.12574862,
"unrealized_pnl_exit_net": -0.0226916
},
{
"timestamp": "2024-05-09T23:59:00+00:00",
"base_asset_bal": 9.4,
"quote_asset_bal": 9989.9307913225,
"total_value_mid": 10000.0621113225,
"total_value_exit_net": 10000.0545128325,
"total_value": 10000.0621113225,
"base_cost_quote": 10.12574862,
"unrealized_pnl_exit_net": -0.00202711
},
{
"timestamp": "2024-05-10T23:59:00+00:00",
"base_asset_bal": 4.7,
"quote_asset_bal": 9994.99406102,
"total_value_mid": 10000.04797102,
"total_value_exit_net": 10000.0441805875,
"total_value": 10000.04797102,
"base_cost_quote": 5.067577835,
"unrealized_pnl_exit_net": -0.0174582675
},
{
"timestamp": "2024-05-11T23:59:00+00:00",
"base_asset_bal": 4.7,
"quote_asset_bal": 9994.99406102,
"total_value_mid": 10000.04985102,
"total_value_exit_net": 10000.0460591775,
"total_value": 10000.04985102,
"base_cost_quote": 5.067577835,
"unrealized_pnl_exit_net": -0.0155796775
},
{
"timestamp": "2024-05-12T23:59:00+00:00",
"base_asset_bal": 4.7,
"quote_asset_bal": 9994.99406102,
"total_value_mid": 10000.05361102,
"total_value_exit_net": 10000.0498163575,
"total_value": 10000.05361102,
"base_cost_quote": 5.067577835,
"unrealized_pnl_exit_net": -0.0118224975
},
{
"timestamp": "2024-05-13T23:59:00+00:00",
"base_asset_bal": 9.4,
"quote_asset_bal": 9989.9194278975,
"total_value_mid": 10000.0610878975,
"total_value_exit_net": 10000.0534816525,
"total_value": 10000.0610878975,
"base_cost_quote": 10.1422109575,
"unrealized_pnl_exit_net": -0.0081572025
},
{
"timestamp": "2024-05-14T23:59:00+00:00",
"base_asset_bal": 9.4,
"quote_asset_bal": 9989.9051286175,
"total_value_mid": 10000.0627686175,
"total_value_exit_net": 10000.0551503875,
"total_value": 10000.0627686175,
"base_cost_quote": 10.1666692875,
"unrealized_pnl_exit_net": -0.0166475175
},
{
"timestamp": "2024-05-15T23:59:00+00:00",
"base_asset_bal": 4.6,
"quote_asset_bal": 9995.08299968,
"total_value_mid": 10000.09653968,
"total_value_exit_net": 10000.092779525,
"total_value": 10000.09653968,
"base_cost_quote": 5.010855325,
"unrealized_pnl_exit_net": -0.00107548
},
{
"timestamp": "2024-05-16T23:59:00+00:00",
"base_asset_bal": 4.6,
"quote_asset_bal": 9995.08848787,
"total_value_mid": 10000.08776787,
"total_value_exit_net": 10000.08401841,
"total_value": 10000.08776787,
"base_cost_quote": 5.010855325,
"unrealized_pnl_exit_net": -0.015324785
},
{
"timestamp": "2024-05-17T23:59:00+00:00",
"base_asset_bal": 9.3,
"quote_asset_bal": 9989.982192845,
"total_value_mid": 10000.095012845,
"total_value_exit_net": 10000.08742823,
"total_value": 10000.095012845,
"base_cost_quote": 10.122646295,
"unrealized_pnl_exit_net": -0.01741091
},
{
"timestamp": "2024-05-18T23:59:00+00:00",
"base_asset_bal": 9.3,
"quote_asset_bal": 9989.982192845,
"total_value_mid": 10000.088502845,
"total_value_exit_net": 10000.0809231125,
"total_value": 10000.088502845,
"base_cost_quote": 10.122646295,
"unrealized_pnl_exit_net": -0.0239160275
},
{
"timestamp": "2024-05-19T23:59:00+00:00",
"base_asset_bal": 9.3,
"quote_asset_bal": 9989.982192845,
"total_value_mid": 10000.099662845,
"total_value_exit_net": 10000.0920747425,
"total_value": 10000.099662845,
"base_cost_quote": 10.122646295,
"unrealized_pnl_exit_net": -0.0127643975
},
{
"timestamp": "2024-05-20T23:59:00+00:00",
"base_asset_bal": 4.6,
"quote_asset_bal": 9995.06734825,
"total_value_mid": 10000.14850825,
"total_value_exit_net": 10000.14469738,
"total_value": 10000.14850825,
"base_cost_quote": 5.07484328,
"unrealized_pnl_exit_net": 0.00250585
},
{
"timestamp": "2024-05-21T23:59:00+00:00",
"base_asset_bal": 32.2,
"quote_asset_bal": 9964.727023945,
"total_value_mid": 9999.931283945,
"total_value_exit_net": 9999.90488075,
"total_value": 9999.931283945,
"base_cost_quote": 35.473725355,
"unrealized_pnl_exit_net": -0.29586855
},
{
"timestamp": "2024-05-22T23:59:00+00:00",
"base_asset_bal": 41.6,
"quote_asset_bal": 9954.5255485725,
"total_value_mid": 9999.6241085725,
"total_value_exit_net": 9999.5902846525,
"total_value": 9999.6241085725,
"base_cost_quote": 45.6752007275,
"unrealized_pnl_exit_net": -0.6104646475
},
{
"timestamp": "2024-05-23T23:59:00+00:00",
"base_asset_bal": 41.6,
"quote_asset_bal": 9954.5255485725,
"total_value_mid": 9999.5159485725,
"total_value_exit_net": 9999.4822057725,
"total_value": 9999.5159485725,
"base_cost_quote": 45.6752007275,
"unrealized_pnl_exit_net": -0.7185435275
},
{
"timestamp": "2024-05-24T23:59:00+00:00",
"base_asset_bal": 41.6,
"quote_asset_bal": 9954.5255485725,
"total_value_mid": 9999.6241085725,
"total_value_exit_net": 9999.5902846525,
"total_value": 9999.6241085725,
"base_cost_quote": 45.6752007275,
"unrealized_pnl_exit_net": -0.6104646475
},
{
"timestamp": "2024-05-25T23:59:00+00:00",
"base_asset_bal": 41.6,
"quote_asset_bal": 9954.5255485725,
"total_value_mid": 9999.6449085725,
"total_value_exit_net": 9999.6110690525,
"total_value": 9999.6449085725,
"base_cost_quote": 45.6752007275,
"unrealized_pnl_exit_net": -0.5896802475
},
{
"timestamp": "2024-05-26T23:59:00+00:00",
"base_asset_bal": 41.6,
"quote_asset_bal": 9954.5255485725,
"total_value_mid": 9999.6823485725,
"total_value_exit_net": 9999.6484809725,
"total_value": 9999.6823485725,
"base_cost_quote": 45.6752007275,
"unrealized_pnl_exit_net": -0.5522683275
},
{
"timestamp": "2024-05-27T23:59:00+00:00",
"base_asset_bal": 41.4,
"quote_asset_bal": 9954.71950998,
"total_value_mid": 9999.74614998,
"total_value_exit_net": 9999.71238,
"total_value": 9999.74614998,
"base_cost_quote": 45.49773773,
"unrealized_pnl_exit_net": -0.50486771
},
{
"timestamp": "2024-05-28T23:59:00+00:00",
"base_asset_bal": 41.4,
"quote_asset_bal": 9954.71950998,
"total_value_mid": 9999.68404998,
"total_value_exit_net": 9999.650326575,
"total_value": 9999.68404998,
"base_cost_quote": 45.49773773,
"unrealized_pnl_exit_net": -0.566921135
},
{
"timestamp": "2024-05-29T23:59:00+00:00",
"base_asset_bal": 46.1,
"quote_asset_bal": 9949.61148183,
"total_value_mid": 9999.42714183,
"total_value_exit_net": 9999.389780085,
"total_value": 9999.42714183,
"base_cost_quote": 50.60576588,
"unrealized_pnl_exit_net": -0.827467625
},
{
"timestamp": "2024-05-30T23:59:00+00:00",
"base_asset_bal": 60.2,
"quote_asset_bal": 9934.3339622775,
"total_value_mid": 9999.5245422775,
"total_value_exit_net": 9999.4756493425,
"total_value": 9999.5245422775,
"base_cost_quote": 65.8832854325,
"unrealized_pnl_exit_net": -0.7415983675
},
{
"timestamp": "2024-05-31T23:59:00+00:00",
"base_asset_bal": 46.1,
"quote_asset_bal": 9949.628033115,
"total_value_mid": 9999.641923115,
"total_value_exit_net": 9999.6044126975,
"total_value": 9999.641923115,
"base_cost_quote": 50.60576588,
"unrealized_pnl_exit_net": -0.6293862975
},
{
"timestamp": "2024-06-01T23:59:00+00:00",
"base_asset_bal": 46.1,
"quote_asset_bal": 9949.628033115,
"total_value_mid": 9999.660363115,
"total_value_exit_net": 9999.6228388675,
"total_value": 9999.660363115,
"base_cost_quote": 50.60576588,
"unrealized_pnl_exit_net": -0.6109601275
},
{
"timestamp": "2024-06-02T23:59:00+00:00",
"base_asset_bal": 46.1,
"quote_asset_bal": 9949.628033115,
"total_value_mid": 9999.660363115,
"total_value_exit_net": 9999.6228388675,
"total_value": 9999.660363115,
"base_cost_quote": 50.60576588,
"unrealized_pnl_exit_net": -0.6109601275
},
{
"timestamp": "2024-06-03T23:59:00+00:00",
"base_asset_bal": 46.1,
"quote_asset_bal": 9949.6415229375,
"total_value_mid": 9999.8905229375,
"total_value_exit_net": 9999.8528361875,
"total_value": 9999.8905229375,
"base_cost_quote": 50.5977698875,
"unrealized_pnl_exit_net": -0.3864566375
},
{
"timestamp": "2024-06-04T23:59:00+00:00",
"base_asset_bal": 41.4,
"quote_asset_bal": 9954.72813444,
"total_value_mid": 9999.84585444,
"total_value_exit_net": 9999.81201615,
"total_value": 9999.84585444,
"base_cost_quote": 45.53272395,
"unrealized_pnl_exit_net": -0.44884224
},
{
"timestamp": "2024-06-05T23:59:00+00:00",
"base_asset_bal": 50.6,
"quote_asset_bal": 9944.703201375,
"total_value_mid": 9999.826841375,
"total_value_exit_net": 9999.785498645,
"total_value": 9999.826841375,
"base_cost_quote": 55.557657015,
"unrealized_pnl_exit_net": -0.475359745
},
{
"timestamp": "2024-06-06T23:59:00+00:00",
"base_asset_bal": 50.6,
"quote_asset_bal": 9944.712995235,
"total_value_mid": 9999.801215235,
"total_value_exit_net": 9999.75989907,
"total_value": 9999.801215235,
"base_cost_quote": 55.558577705,
"unrealized_pnl_exit_net": -0.51167387
},
{
"timestamp": "2024-06-07T23:59:00+00:00",
"base_asset_bal": 64.7,
"quote_asset_bal": 9929.4081952375,
"total_value_mid": 9999.1806752375,
"total_value_exit_net": 9999.1283458775,
"total_value": 9999.1806752375,
"base_cost_quote": 70.8633777025,
"unrealized_pnl_exit_net": -1.1432270625
},
{
"timestamp": "2024-06-08T23:59:00+00:00",
"base_asset_bal": 64.7,
"quote_asset_bal": 9929.4081952375,
"total_value_mid": 9999.1936152375,
"total_value_exit_net": 9999.1412761725,
"total_value": 9999.1936152375,
"base_cost_quote": 70.8633777025,
"unrealized_pnl_exit_net": -1.1302967675
},
{
"timestamp": "2024-06-09T23:59:00+00:00",
"base_asset_bal": 69.4,
"quote_asset_bal": 9924.337324935,
"total_value_mid": 9999.101944935,
"total_value_exit_net": 9999.04587147,
"total_value": 9999.101944935,
"base_cost_quote": 75.934248005,
"unrealized_pnl_exit_net": -1.22570147
},
{
"timestamp": "2024-06-10T23:59:00+00:00",
"base_asset_bal": 78.8,
"quote_asset_bal": 9914.224746185,
"total_value_mid": 9999.013546185,
"total_value_exit_net": 9998.949954585,
"total_value": 9999.013546185,
"base_cost_quote": 86.046826755,
"unrealized_pnl_exit_net": -1.321618355
},
{
"timestamp": "2024-06-11T23:59:00+00:00",
"base_asset_bal": 83.5,
"quote_asset_bal": 9909.1764528025,
"total_value_mid": 9998.7552528025,
"total_value_exit_net": 9998.6880687025,
"total_value": 9998.7552528025,
"base_cost_quote": 91.0951201375,
"unrealized_pnl_exit_net": -1.5835042375
},
{
"timestamp": "2024-06-12T23:59:00+00:00",
"base_asset_bal": 64.7,
"quote_asset_bal": 9929.4341256075,
"total_value_mid": 9999.3295356075,
"total_value_exit_net": 9999.27711405,
"total_value": 9999.3295356075,
"base_cost_quote": 70.8633777025,
"unrealized_pnl_exit_net": -1.02038926
},
{
"timestamp": "2024-06-13T23:59:00+00:00",
"base_asset_bal": 69.4,
"quote_asset_bal": 9924.3618442475,
"total_value_mid": 9998.8835642475,
"total_value_exit_net": 9998.8276729575,
"total_value": 9998.8835642475,
"base_cost_quote": 75.9356590625,
"unrealized_pnl_exit_net": -1.4698303525
},
{
"timestamp": "2024-06-14T23:59:00+00:00",
"base_asset_bal": 78.8,
"quote_asset_bal": 9914.28171982,
"total_value_mid": 9998.53467982,
"total_value_exit_net": 9998.4714901,
"total_value": 9998.53467982,
"base_cost_quote": 86.01578349,
"unrealized_pnl_exit_net": -1.82601321
},
{
"timestamp": "2024-06-15T23:59:00+00:00",
"base_asset_bal": 83.5,
"quote_asset_bal": 9909.24894807,
"total_value_mid": 9998.57724807,
"total_value_exit_net": 9998.510251845,
"total_value": 9998.57724807,
"base_cost_quote": 91.04855524,
"unrealized_pnl_exit_net": -1.787251465
},
{
"timestamp": "2024-06-16T23:59:00+00:00",
"base_asset_bal": 88.2,
"quote_asset_bal": 9904.21053209,
"total_value_mid": 9998.70801209,
"total_value_exit_net": 9998.63713898,
"total_value": 9998.70801209,
"base_cost_quote": 96.08697122,
"unrealized_pnl_exit_net": -1.66036433
},
{
"timestamp": "2024-06-17T23:59:00+00:00",
"base_asset_bal": 88.2,
"quote_asset_bal": 9904.204850965,
"total_value_mid": 9998.869910965,
"total_value_exit_net": 9998.79891217,
"total_value": 9998.869910965,
"base_cost_quote": 96.0977893275,
"unrealized_pnl_exit_net": -1.5037281225
},
{
"timestamp": "2024-06-18T23:59:00+00:00",
"base_asset_bal": 78.8,
"quote_asset_bal": 9914.29095015,
"total_value_mid": 9998.83547015,
"total_value_exit_net": 9998.77206176,
"total_value": 9998.83547015,
"base_cost_quote": 86.0322458275,
"unrealized_pnl_exit_net": -1.5511342175
},
{
"timestamp": "2024-06-19T23:59:00+00:00",
"base_asset_bal": 78.8,
"quote_asset_bal": 9914.29095015,
"total_value_mid": 9998.88275015,
"total_value_exit_net": 9998.8193063,
"total_value": 9998.88275015,
"base_cost_quote": 86.0322458275,
"unrealized_pnl_exit_net": -1.5038896775
},
{
"timestamp": "2024-06-20T23:59:00+00:00",
"base_asset_bal": 83.5,
"quote_asset_bal": 9909.25253417,
"total_value_mid": 9998.66433417,
"total_value_exit_net": 9998.59727532,
"total_value": 9998.66433417,
"base_cost_quote": 91.0706618075,
"unrealized_pnl_exit_net": -1.7259206575
},
{
"timestamp": "2024-06-21T23:59:00+00:00",
"base_asset_bal": 88.2,
"quote_asset_bal": 9904.22540665,
"total_value_mid": 9998.47592665,
"total_value_exit_net": 9998.40523876,
"total_value": 9998.47592665,
"base_cost_quote": 96.0977893275,
"unrealized_pnl_exit_net": -1.9179572175
},
{
"timestamp": "2024-06-22T23:59:00+00:00",
"base_asset_bal": 88.2,
"quote_asset_bal": 9904.22540665,
"total_value_mid": 9998.52884665,
"total_value_exit_net": 9998.45811907,
"total_value": 9998.52884665,
"base_cost_quote": 96.0977893275,
"unrealized_pnl_exit_net": -1.8650769075
},
{
"timestamp": "2024-06-23T23:59:00+00:00",
"base_asset_bal": 88.2,
"quote_asset_bal": 9904.2249078625,
"total_value_mid": 9998.5812678625,
"total_value_exit_net": 9998.5105005925,
"total_value": 9998.5812678625,
"base_cost_quote": 96.1034335575,
"unrealized_pnl_exit_net": -1.8178408275
},
{
"timestamp": "2024-06-24T23:59:00+00:00",
"base_asset_bal": 83.5,
"quote_asset_bal": 9909.262816595,
"total_value_mid": 9998.833266595,
"total_value_exit_net": 9998.7660887575,
"total_value": 9998.833266595,
"base_cost_quote": 91.0706618075,
"unrealized_pnl_exit_net": -1.567389645
},
{
"timestamp": "2024-06-25T23:59:00+00:00",
"base_asset_bal": 88.2,
"quote_asset_bal": 9904.230044845,
"total_value_mid": 9998.604044845,
"total_value_exit_net": 9998.533264345,
"total_value": 9998.604044845,
"base_cost_quote": 96.1034335575,
"unrealized_pnl_exit_net": -1.8002140575
},
{
"timestamp": "2024-06-26T23:59:00+00:00",
"base_asset_bal": 92.9,
"quote_asset_bal": 9899.20762085,
"total_value_mid": 9998.42482085,
"total_value_exit_net": 9998.35040795,
"total_value": 9998.42482085,
"base_cost_quote": 101.1258575525,
"unrealized_pnl_exit_net": -1.9830704525
},
{
"timestamp": "2024-06-27T23:59:00+00:00",
"base_asset_bal": 88.2,
"quote_asset_bal": 9904.240342075,
"total_value_mid": 9998.676082075,
"total_value_exit_net": 9998.60525527,
"total_value": 9998.676082075,
"base_cost_quote": 96.1034335575,
"unrealized_pnl_exit_net": -1.7385203625
},
{
"timestamp": "2024-06-28T23:59:00+00:00",
"base_asset_bal": 83.5,
"quote_asset_bal": 9909.2782508075,
"total_value_mid": 9998.7401508075,
"total_value_exit_net": 9998.6730543825,
"total_value": 9998.7401508075,
"base_cost_quote": 91.0706618075,
"unrealized_pnl_exit_net": -1.6758582325
},
{
"timestamp": "2024-06-29T23:59:00+00:00",
"base_asset_bal": 83.5,
"quote_asset_bal": 9909.2782508075,
"total_value_mid": 9998.7067508075,
"total_value_exit_net": 9998.6396794325,
"total_value": 9998.7067508075,
"base_cost_quote": 91.0706618075,
"unrealized_pnl_exit_net": -1.7092331825
},
{
"timestamp": "2024-06-30T23:59:00+00:00",
"base_asset_bal": 78.8,
"quote_asset_bal": 9914.32179531,
"total_value_mid": 9998.96875531,
"total_value_exit_net": 9998.90527009,
"total_value": 9998.96875531,
"base_cost_quote": 86.0322458275,
"unrealized_pnl_exit_net": -1.4487710475
},
{
"timestamp": "2024-07-01T23:59:00+00:00",
"base_asset_bal": 74.1,
"quote_asset_bal": 9919.3657352,
"total_value_mid": 9998.9491352,
"total_value_exit_net": 9998.88944765,
"total_value": 9998.9491352,
"base_cost_quote": 80.9985333725,
"unrealized_pnl_exit_net": -1.4748209225
},
{
"timestamp": "2024-07-02T23:59:00+00:00",
"base_asset_bal": 78.8,
"quote_asset_bal": 9914.313208645,
"total_value_mid": 9999.046848645,
"total_value_exit_net": 9998.983298415,
"total_value": 9999.046848645,
"base_cost_quote": 86.0510599275,
"unrealized_pnl_exit_net": -1.3809701575
},
{
"timestamp": "2024-07-03T23:59:00+00:00",
"base_asset_bal": 69.4,
"quote_asset_bal": 9924.4409901325,
"total_value_mid": 9999.3027701325,
"total_value_exit_net": 9999.2466237975,
"total_value": 9999.3027701325,
"base_cost_quote": 75.943655055,
"unrealized_pnl_exit_net": -1.13802139
},
{
"timestamp": "2024-07-04T23:59:00+00:00",
"base_asset_bal": 69.4,
"quote_asset_bal": 9924.4409901325,
"total_value_mid": 9999.3999301325,
"total_value_exit_net": 9999.3437109275,
"total_value": 9999.3999301325,
"base_cost_quote": 75.943655055,
"unrealized_pnl_exit_net": -1.04093426
},
{
"timestamp": "2024-07-05T23:59:00+00:00",
"base_asset_bal": 74.1,
"quote_asset_bal": 9919.360625125,
"total_value_mid": 9999.522005125,
"total_value_exit_net": 9999.46188409,
"total_value": 9999.522005125,
"base_cost_quote": 81.029106285,
"unrealized_pnl_exit_net": -0.92784732
},
{
"timestamp": "2024-07-06T23:59:00+00:00",
"base_asset_bal": 74.1,
"quote_asset_bal": 9919.360625125,
"total_value_mid": 9999.551645125,
"total_value_exit_net": 9999.49150186,
"total_value": 9999.551645125,
"base_cost_quote": 81.029106285,
"unrealized_pnl_exit_net": -0.89822955
},
{
"timestamp": "2024-07-07T23:59:00+00:00",
"base_asset_bal": 69.4,
"quote_asset_bal": 9924.4464379025,
"total_value_mid": 9999.5094779025,
"total_value_exit_net": 9999.4531806225,
"total_value": 9999.5094779025,
"base_cost_quote": 75.9488289325,
"unrealized_pnl_exit_net": -0.9420862125
},
{
"timestamp": "2024-07-08T23:59:00+00:00",
"base_asset_bal": 69.4,
"quote_asset_bal": 9924.4464379025,
"total_value_mid": 9999.5302979025,
"total_value_exit_net": 9999.4739850075,
"total_value": 9999.5302979025,
"base_cost_quote": 75.9488289325,
"unrealized_pnl_exit_net": -0.9212818275
},
{
"timestamp": "2024-07-09T23:59:00+00:00",
"base_asset_bal": 69.4,
"quote_asset_bal": 9924.4464379025,
"total_value_mid": 9999.4539579025,
"total_value_exit_net": 9999.3977022625,
"total_value": 9999.4539579025,
"base_cost_quote": 75.9488289325,
"unrealized_pnl_exit_net": -0.9975645725
},
{
"timestamp": "2024-07-10T23:59:00+00:00",
"base_asset_bal": 69.4,
"quote_asset_bal": 9924.4464379025,
"total_value_mid": 9999.5580579025,
"total_value_exit_net": 9999.5017241875,
"total_value": 9999.5580579025,
"base_cost_quote": 75.9488289325,
"unrealized_pnl_exit_net": -0.8935426475
},
{
"timestamp": "2024-07-11T23:59:00+00:00",
"base_asset_bal": 55.3,
"quote_asset_bal": 9939.74695949,
"total_value_mid": 9999.80275949,
"total_value_exit_net": 9999.75771764,
"total_value": 9999.80275949,
"base_cost_quote": 60.670368675,
"unrealized_pnl_exit_net": -0.659610525
},
{
"timestamp": "2024-07-12T23:59:00+00:00",
"base_asset_bal": 55.3,
"quote_asset_bal": 9939.74695949,
"total_value_mid": 9999.95759949,
"total_value_exit_net": 9999.91244151,
"total_value": 9999.95759949,
"base_cost_quote": 60.670368675,
"unrealized_pnl_exit_net": -0.504886655
},
{
"timestamp": "2024-07-13T23:59:00+00:00",
"base_asset_bal": 41.4,
"quote_asset_bal": 9954.9685182575,
"total_value_mid": 10000.3222182575,
"total_value_exit_net": 10000.2882029825,
"total_value": 10000.3222182575,
"base_cost_quote": 45.5390186675,
"unrealized_pnl_exit_net": -0.2193339425
},
{
"timestamp": "2024-07-14T23:59:00+00:00",
"base_asset_bal": 27.5,
"quote_asset_bal": 9970.3248191975,
"total_value_mid": 10000.2695691975,
"total_value_exit_net": 10000.247110635,
"total_value": 10000.2695691975,
"base_cost_quote": 30.2305859475,
"unrealized_pnl_exit_net": -0.30829451
},
{
"timestamp": "2024-07-15T23:59:00+00:00",
"base_asset_bal": 27.5,
"quote_asset_bal": 9970.3248191975,
"total_value_mid": 10000.2668191975,
"total_value_exit_net": 10000.2443626975,
"total_value": 10000.2668191975,
"base_cost_quote": 30.2305859475,
"unrealized_pnl_exit_net": -0.3110424475
},
{
"timestamp": "2024-07-16T23:59:00+00:00",
"base_asset_bal": 41.4,
"quote_asset_bal": 9955.1945600075,
"total_value_mid": 10000.2791600075,
"total_value_exit_net": 10000.2453465575,
"total_value": 10000.2791600075,
"base_cost_quote": 45.3608451375,
"unrealized_pnl_exit_net": -0.3100585875
},
{
"timestamp": "2024-07-17T23:59:00+00:00",
"base_asset_bal": 32.1,
"quote_asset_bal": 9965.3223331875,
"total_value_mid": 10000.3980031875,
"total_value_exit_net": 10000.371696435,
"total_value": 10000.3980031875,
"base_cost_quote": 35.2492671375,
"unrealized_pnl_exit_net": -0.19990389
},
{
"timestamp": "2024-07-18T23:59:00+00:00",
"base_asset_bal": 27.5,
"quote_asset_bal": 9970.3348709625,
"total_value_mid": 10000.2851209625,
"total_value_exit_net": 10000.262658275,
"total_value": 10000.2851209625,
"base_cost_quote": 30.2420945725,
"unrealized_pnl_exit_net": -0.31430726
},
{
"timestamp": "2024-07-19T23:59:00+00:00",
"base_asset_bal": 32.1,
"quote_asset_bal": 9965.3253966725,
"total_value_mid": 10000.2758766725,
"total_value_exit_net": 10000.2496638125,
"total_value": 10000.2758766725,
"base_cost_quote": 35.2515688625,
"unrealized_pnl_exit_net": -0.3273017225
},
{
"timestamp": "2024-07-20T23:59:00+00:00",
"base_asset_bal": 36.7,
"quote_asset_bal": 9960.3108585875,
"total_value_mid": 10000.2808285875,
"total_value_exit_net": 10000.25085111,
"total_value": 10000.2808285875,
"base_cost_quote": 40.2661069475,
"unrealized_pnl_exit_net": -0.326114425
},
{
"timestamp": "2024-07-21T23:59:00+00:00",
"base_asset_bal": 22.9,
"quote_asset_bal": 9975.3696991875,
"total_value_mid": 10000.5161891875,
"total_value_exit_net": 10000.49732932,
"total_value": 10000.5161891875,
"base_cost_quote": 25.2340013175,
"unrealized_pnl_exit_net": -0.106371185
},
{
"timestamp": "2024-07-22T23:59:00+00:00",
"base_asset_bal": 36.7,
"quote_asset_bal": 9960.3493601275,
"total_value_mid": 10000.2863001275,
"total_value_exit_net": 10000.2563474225,
"total_value": 10000.2863001275,
"base_cost_quote": 40.2596621175,
"unrealized_pnl_exit_net": -0.3526748225
},
{
"timestamp": "2024-07-23T23:59:00+00:00",
"base_asset_bal": 41.4,
"quote_asset_bal": 9955.25292142,
"total_value_mid": 10000.20090142,
"total_value_exit_net": 10000.167190435,
"total_value": 10000.20090142,
"base_cost_quote": 45.37232374,
"unrealized_pnl_exit_net": -0.458054725
},
{
"timestamp": "2024-07-24T23:59:00+00:00",
"base_asset_bal": 46.1,
"quote_asset_bal": 9950.1528892625,
"total_value_mid": 10000.0884092625,
"total_value_exit_net": 10000.0509576225,
"total_value": 10000.0884092625,
"base_cost_quote": 50.4723558975,
"unrealized_pnl_exit_net": -0.5742875375
},
{
"timestamp": "2024-07-25T23:59:00+00:00",
"base_asset_bal": 46.1,
"quote_asset_bal": 9950.1528892625,
"total_value_mid": 10000.1437292625,
"total_value_exit_net": 10000.1062361325,
"total_value": 10000.1437292625,
"base_cost_quote": 50.4723558975,
"unrealized_pnl_exit_net": -0.5190090275
},
{
"timestamp": "2024-07-26T23:59:00+00:00",
"base_asset_bal": 46.1,
"quote_asset_bal": 9950.1528892625,
"total_value_mid": 10000.1990492625,
"total_value_exit_net": 10000.1615146425,
"total_value": 10000.1990492625,
"base_cost_quote": 50.4723558975,
"unrealized_pnl_exit_net": -0.4637305175
},
{
"timestamp": "2024-07-27T23:59:00+00:00",
"base_asset_bal": 46.1,
"quote_asset_bal": 9950.1528892625,
"total_value_mid": 10000.2405392625,
"total_value_exit_net": 10000.202973525,
"total_value": 10000.2405392625,
"base_cost_quote": 50.4723558975,
"unrealized_pnl_exit_net": -0.422271635
},
{
"timestamp": "2024-07-28T23:59:00+00:00",
"base_asset_bal": 36.7,
"quote_asset_bal": 9960.3733581575,
"total_value_mid": 10000.2222181575,
"total_value_exit_net": 10000.1923315125,
"total_value": 10000.2222181575,
"base_cost_quote": 40.2628845325,
"unrealized_pnl_exit_net": -0.4439111775
},
{
"timestamp": "2024-07-29T23:59:00+00:00",
"base_asset_bal": 41.4,
"quote_asset_bal": 9955.274266705,
"total_value_mid": 10000.056646705,
"total_value_exit_net": 10000.02305992,
"total_value": 10000.056646705,
"base_cost_quote": 45.361975985,
"unrealized_pnl_exit_net": -0.61318277
},
{
"timestamp": "2024-07-30T23:59:00+00:00",
"base_asset_bal": 46.1,
"quote_asset_bal": 9950.181289835,
"total_value_mid": 9999.992339835,
"total_value_exit_net": 9999.9549815475,
"total_value": 9999.992339835,
"base_cost_quote": 50.454952855,
"unrealized_pnl_exit_net": -0.6812611425
},
{
"timestamp": "2024-07-31T23:59:00+00:00",
"base_asset_bal": 50.8,
"quote_asset_bal": 9945.0999531025,
"total_value_mid": 10000.0553931025,
"total_value_exit_net": 10000.0141765225,
"total_value": 10000.0553931025,
"base_cost_quote": 55.5418151425,
"unrealized_pnl_exit_net": -0.6275917225
},
{
"timestamp": "2024-08-01T23:59:00+00:00",
"base_asset_bal": 55.5,
"quote_asset_bal": 9940.0247499875,
"total_value_mid": 9999.9314499875,
"total_value_exit_net": 9999.8865199625,
"total_value": 9999.9314499875,
"base_cost_quote": 60.622092495,
"unrealized_pnl_exit_net": -0.76032252
},
{
"timestamp": "2024-08-02T23:59:00+00:00",
"base_asset_bal": 36.7,
"quote_asset_bal": 9960.423177795,
"total_value_mid": 10000.272037795,
"total_value_exit_net": 10000.24215115,
"total_value": 10000.272037795,
"base_cost_quote": 40.2619638425,
"unrealized_pnl_exit_net": -0.4429904875
},
{
"timestamp": "2024-08-03T23:59:00+00:00",
"base_asset_bal": 41.3,
"quote_asset_bal": 9955.419204385,
"total_value_mid": 10000.258614385,
"total_value_exit_net": 10000.2249848275,
"total_value": 10000.258614385,
"base_cost_quote": 45.2714381325,
"unrealized_pnl_exit_net": -0.46565769
},
{
"timestamp": "2024-08-04T23:59:00+00:00",
"base_asset_bal": 46,
"quote_asset_bal": 9950.3276385725,
"total_value_mid": 10000.3802385725,
"total_value_exit_net": 10000.3426991225,
"total_value": 10000.3802385725,
"base_cost_quote": 50.363003945,
"unrealized_pnl_exit_net": -0.347943395
},
{
"timestamp": "2024-08-05T23:59:00+00:00",
"base_asset_bal": 32.1,
"quote_asset_bal": 9965.537266675,
"total_value_mid": 10000.529476675,
"total_value_exit_net": 10000.5032325175,
"total_value": 10000.529476675,
"base_cost_quote": 35.2883964625,
"unrealized_pnl_exit_net": -0.32243062
},
{
"timestamp": "2024-08-06T23:59:00+00:00",
"base_asset_bal": 41.3,
"quote_asset_bal": 9955.515401925,
"total_value_mid": 10000.507621925,
"total_value_exit_net": 10000.47387776,
"total_value": 10000.507621925,
"base_cost_quote": 45.3156312525,
"unrealized_pnl_exit_net": -0.3571554175
},
{
"timestamp": "2024-08-07T23:59:00+00:00",
"base_asset_bal": 36.7,
"quote_asset_bal": 9960.531157285,
"total_value_mid": 10000.600217285,
"total_value_exit_net": 10000.57016549,
"total_value": 10000.600217285,
"base_cost_quote": 40.3052362725,
"unrealized_pnl_exit_net": -0.2662280675
},
{
"timestamp": "2024-08-08T23:59:00+00:00",
"base_asset_bal": 36.7,
"quote_asset_bal": 9960.541111455,
"total_value_mid": 10000.562461455,
"total_value_exit_net": 10000.5324454425,
"total_value": 10000.562461455,
"base_cost_quote": 40.3006328225,
"unrealized_pnl_exit_net": -0.309298835
},
{
"timestamp": "2024-08-09T23:59:00+00:00",
"base_asset_bal": 36.7,
"quote_asset_bal": 9960.541111455,
"total_value_mid": 10000.540441455,
"total_value_exit_net": 10000.5104419575,
"total_value": 10000.540441455,
"base_cost_quote": 40.3006328225,
"unrealized_pnl_exit_net": -0.33130232
},
{
"timestamp": "2024-08-10T23:59:00+00:00",
"base_asset_bal": 36.7,
"quote_asset_bal": 9960.541111455,
"total_value_mid": 10000.503741455,
"total_value_exit_net": 10000.4737694825,
"total_value": 10000.503741455,
"base_cost_quote": 40.3006328225,
"unrealized_pnl_exit_net": -0.367974795
},
{
"timestamp": "2024-08-11T23:59:00+00:00",
"base_asset_bal": 36.7,
"quote_asset_bal": 9960.541111455,
"total_value_mid": 10000.547781455,
"total_value_exit_net": 10000.5177764525,
"total_value": 10000.547781455,
"base_cost_quote": 40.3006328225,
"unrealized_pnl_exit_net": -0.323967825
},
{
"timestamp": "2024-08-12T23:59:00+00:00",
"base_asset_bal": 32.1,
"quote_asset_bal": 9965.558705435,
"total_value_mid": 10000.627955435,
"total_value_exit_net": 10000.6016534975,
"total_value": 10000.627955435,
"base_cost_quote": 35.2883964625,
"unrealized_pnl_exit_net": -0.2454484
},
{
"timestamp": "2024-08-13T23:59:00+00:00",
"base_asset_bal": 18.3,
"quote_asset_bal": 9980.66526701,
"total_value_mid": 10000.76232701,
"total_value_exit_net": 10000.747254215,
"total_value": 10000.76232701,
"base_cost_quote": 20.1978270175,
"unrealized_pnl_exit_net": -0.1158398125
},
{
"timestamp": "2024-08-14T23:59:00+00:00",
"base_asset_bal": 18.3,
"quote_asset_bal": 9980.633739415,
"total_value_mid": 10000.763739415,
"total_value_exit_net": 10000.748641915,
"total_value": 10000.763739415,
"base_cost_quote": 20.2452425525,
"unrealized_pnl_exit_net": -0.1303400525
},
{
"timestamp": "2024-08-15T23:59:00+00:00",
"base_asset_bal": 22.9,
"quote_asset_bal": 9975.583544775,
"total_value_mid": 10000.679654775,
"total_value_exit_net": 10000.6608326925,
"total_value": 10000.679654775,
"base_cost_quote": 25.3007513425,
"unrealized_pnl_exit_net": -0.223463425
},
{
"timestamp": "2024-08-16T23:59:00+00:00",
"base_asset_bal": 18.3,
"quote_asset_bal": 9980.649648055,
"total_value_mid": 10000.803438055,
"total_value_exit_net": 10000.7883227125,
"total_value": 10000.803438055,
"base_cost_quote": 20.2452425525,
"unrealized_pnl_exit_net": -0.106567895
},
{
"timestamp": "2024-08-17T23:59:00+00:00",
"base_asset_bal": 18.3,
"quote_asset_bal": 9980.649648055,
"total_value_mid": 10000.781478055,
"total_value_exit_net": 10000.7663791825,
"total_value": 10000.781478055,
"base_cost_quote": 20.2452425525,
"unrealized_pnl_exit_net": -0.128511425
},
{
"timestamp": "2024-08-18T23:59:00+00:00",
"base_asset_bal": 18.3,
"quote_asset_bal": 9980.649648055,
"total_value_mid": 10000.803438055,
"total_value_exit_net": 10000.7883227125,
"total_value": 10000.803438055,
"base_cost_quote": 20.2452425525,
"unrealized_pnl_exit_net": -0.106567895
},
{
"timestamp": "2024-08-19T23:59:00+00:00",
"base_asset_bal": 9.1,
"quote_asset_bal": 9990.811437675,
"total_value_mid": 10000.889687675,
"total_value_exit_net": 10000.8821289875,
"total_value": 10000.889687675,
"base_cost_quote": 10.0992387525,
"unrealized_pnl_exit_net": -0.02854744
},
{
"timestamp": "2024-08-20T23:59:00+00:00",
"base_asset_bal": 4.5,
"quote_asset_bal": 9995.91652883,
"total_value_mid": 10000.92052883,
"total_value_exit_net": 10000.91677583,
"total_value": 10000.92052883,
"base_cost_quote": 5.0046006375,
"unrealized_pnl_exit_net": -0.0043536375
},
{
"timestamp": "2024-08-21T23:59:00+00:00",
"base_asset_bal": 9,
"quote_asset_bal": 9990.878059955,
"total_value_mid": 10000.921159955,
"total_value_exit_net": 10000.91362763,
"total_value": 10000.921159955,
"base_cost_quote": 10.0582880625,
"unrealized_pnl_exit_net": -0.0227203875
},
{
"timestamp": "2024-08-22T23:59:00+00:00",
"base_asset_bal": 9,
"quote_asset_bal": 9990.878059955,
"total_value_mid": 10000.872559955,
"total_value_exit_net": 10000.86506408,
"total_value": 10000.872559955,
"base_cost_quote": 10.0582880625,
"unrealized_pnl_exit_net": -0.0712839375
},
{
"timestamp": "2024-08-23T23:59:00+00:00",
"base_asset_bal": 4.5,
"quote_asset_bal": 9995.9187260775,
"total_value_mid": 10000.9546760775,
"total_value_exit_net": 10000.950899115,
"total_value": 10000.9546760775,
"base_cost_quote": 5.0329719,
"unrealized_pnl_exit_net": -0.0007988625
},
{
"timestamp": "2024-08-24T23:59:00+00:00",
"base_asset_bal": 9,
"quote_asset_bal": 9990.8767474275,
"total_value_mid": 10000.9567474275,
"total_value_exit_net": 10000.9491874275,
"total_value": 10000.9567474275,
"base_cost_quote": 10.07495055,
"unrealized_pnl_exit_net": -0.00251055
},
{
"timestamp": "2024-08-25T23:59:00+00:00",
"base_asset_bal": 0,
"quote_asset_bal": 10001.0054954775,
"total_value_mid": 10001.0054954775,
"total_value_exit_net": 10001.0054954775,
"total_value": 10001.0054954775,
"base_cost_quote": 0,
"unrealized_pnl_exit_net": 0
},
{
"timestamp": "2024-08-26T23:59:00+00:00",
"base_asset_bal": 9,
"quote_asset_bal": 9990.930995265,
"total_value_mid": 10000.969595265,
"total_value_exit_net": 10000.962066315,
"total_value": 10000.969595265,
"base_cost_quote": 10.0745002125,
"unrealized_pnl_exit_net": -0.0434291625
},
{
"timestamp": "2024-08-27T23:59:00+00:00",
"base_asset_bal": 9,
"quote_asset_bal": 9990.930995265,
"total_value_mid": 10000.974095265,
"total_value_exit_net": 10000.96656294,
"total_value": 10000.974095265,
"base_cost_quote": 10.0745002125,
"unrealized_pnl_exit_net": -0.0389325375
},
{
"timestamp": "2024-08-28T23:59:00+00:00",
"base_asset_bal": 18,
"quote_asset_bal": 9980.911886565,
"total_value_mid": 10000.915286565,
"total_value_exit_net": 10000.900284015,
"total_value": 10000.915286565,
"base_cost_quote": 20.0936089125,
"unrealized_pnl_exit_net": -0.1052114625
},
{
"timestamp": "2024-08-29T23:59:00+00:00",
"base_asset_bal": 27.2,
"quote_asset_bal": 9970.71294309,
"total_value_mid": 10000.81518309,
"total_value_exit_net": 10000.79260641,
"total_value": 10000.81518309,
"base_cost_quote": 30.2925523875,
"unrealized_pnl_exit_net": -0.2128890675
},
{
"timestamp": "2024-08-30T23:59:00+00:00",
"base_asset_bal": 27.2,
"quote_asset_bal": 9970.71294309,
"total_value_mid": 10000.73630309,
"total_value_exit_net": 10000.71378557,
"total_value": 10000.73630309,
"base_cost_quote": 30.2925523875,
"unrealized_pnl_exit_net": -0.2917099075
},
{
"timestamp": "2024-08-31T23:59:00+00:00",
"base_asset_bal": 31.8,
"quote_asset_bal": 9965.626591185,
"total_value_mid": 10000.771951185,
"total_value_exit_net": 10000.745592165,
"total_value": 10000.771951185,
"base_cost_quote": 35.3789042925,
"unrealized_pnl_exit_net": -0.2599033125
},
{
"timestamp": "2024-09-01T23:59:00+00:00",
"base_asset_bal": 31.8,
"quote_asset_bal": 9965.626591185,
"total_value_mid": 10000.701991185,
"total_value_exit_net": 10000.675684635,
"total_value": 10000.701991185,
"base_cost_quote": 35.3789042925,
"unrealized_pnl_exit_net": -0.3298108425
},
{
"timestamp": "2024-09-02T23:59:00+00:00",
"base_asset_bal": 31.8,
"quote_asset_bal": 9965.626591185,
"total_value_mid": 10000.791031185,
"total_value_exit_net": 10000.764657855,
"total_value": 10000.791031185,
"base_cost_quote": 35.3789042925,
"unrealized_pnl_exit_net": -0.2408376225
},
{
"timestamp": "2024-09-03T23:59:00+00:00",
"base_asset_bal": 31.8,
"quote_asset_bal": 9965.626591185,
"total_value_mid": 10000.752871185,
"total_value_exit_net": 10000.726526475,
"total_value": 10000.752871185,
"base_cost_quote": 35.3789042925,
"unrealized_pnl_exit_net": -0.2789690025
},
{
"timestamp": "2024-09-04T23:59:00+00:00",
"base_asset_bal": 27.2,
"quote_asset_bal": 9970.71818962,
"total_value_mid": 10000.83402962,
"total_value_exit_net": 10000.81144274,
"total_value": 10000.83402962,
"base_cost_quote": 30.2925523875,
"unrealized_pnl_exit_net": -0.1992992675
},
{
"timestamp": "2024-09-05T23:59:00+00:00",
"base_asset_bal": 18.3,
"quote_asset_bal": 9980.667530615,
"total_value_mid": 10000.993340615,
"total_value_exit_net": 10000.9780962575,
"total_value": 10000.993340615,
"base_cost_quote": 20.3740991225,
"unrealized_pnl_exit_net": -0.06353348
},
{
"timestamp": "2024-09-06T23:59:00+00:00",
"base_asset_bal": 22.8,
"quote_asset_bal": 9975.7041620275,
"total_value_mid": 10000.8594020275,
"total_value_exit_net": 10000.8405355975,
"total_value": 10000.8594020275,
"base_cost_quote": 25.36877232,
"unrealized_pnl_exit_net": -0.23239875
},
{
"timestamp": "2024-09-07T23:59:00+00:00",
"base_asset_bal": 27.4,
"quote_asset_bal": 9970.6224135725,
"total_value_mid": 10000.8994135725,
"total_value_exit_net": 10000.8767058225,
"total_value": 10000.8994135725,
"base_cost_quote": 30.450520775,
"unrealized_pnl_exit_net": -0.196228525
},
{
"timestamp": "2024-09-08T23:59:00+00:00",
"base_asset_bal": 27.4,
"quote_asset_bal": 9970.6224135725,
"total_value_mid": 10000.9240735725,
"total_value_exit_net": 10000.9013473275,
"total_value": 10000.9240735725,
"base_cost_quote": 30.450520775,
"unrealized_pnl_exit_net": -0.17158702
},
{
"timestamp": "2024-09-09T23:59:00+00:00",
"base_asset_bal": 27.4,
"quote_asset_bal": 9970.6235238975,
"total_value_mid": 10000.8402438975,
"total_value_exit_net": 10000.8175813575,
"total_value": 10000.8402438975,
"base_cost_quote": 30.45466388,
"unrealized_pnl_exit_net": -0.26060642
},
{
"timestamp": "2024-09-10T23:59:00+00:00",
"base_asset_bal": 32,
"quote_asset_bal": 9965.5436168225,
"total_value_mid": 10000.7916168225,
"total_value_exit_net": 10000.7651808225,
"total_value": 10000.7916168225,
"base_cost_quote": 35.534570955,
"unrealized_pnl_exit_net": -0.313006955
},
{
"timestamp": "2024-09-11T23:59:00+00:00",
"base_asset_bal": 36.6,
"quote_asset_bal": 9960.4692338875,
"total_value_mid": 10000.7585138875,
"total_value_exit_net": 10000.7282969275,
"total_value": 10000.7585138875,
"base_cost_quote": 40.60895389,
"unrealized_pnl_exit_net": -0.34989085
},
{
"timestamp": "2024-09-12T23:59:00+00:00",
"base_asset_bal": 27.4,
"quote_asset_bal": 9970.6340445575,
"total_value_mid": 10000.9685845575,
"total_value_exit_net": 10000.9458336525,
"total_value": 10000.9685845575,
"base_cost_quote": 30.45466388,
"unrealized_pnl_exit_net": -0.142874785
},
{
"timestamp": "2024-09-13T23:59:00+00:00",
"base_asset_bal": 18.2,
"quote_asset_bal": 9980.8227572875,
"total_value_mid": 10000.9792572875,
"total_value_exit_net": 10000.9641399125,
"total_value": 10000.9792572875,
"base_cost_quote": 20.27643593,
"unrealized_pnl_exit_net": -0.135053305
},
{
"timestamp": "2024-09-14T23:59:00+00:00",
"base_asset_bal": 18.2,
"quote_asset_bal": 9980.8219986325,
"total_value_mid": 10000.9912386325,
"total_value_exit_net": 10000.9761117025,
"total_value": 10000.9912386325,
"base_cost_quote": 20.282420415,
"unrealized_pnl_exit_net": -0.128307345
},
{
"timestamp": "2024-09-15T23:59:00+00:00",
"base_asset_bal": 18.2,
"quote_asset_bal": 9980.8219986325,
"total_value_mid": 10000.9930586325,
"total_value_exit_net": 10000.9779303375,
"total_value": 10000.9930586325,
"base_cost_quote": 20.282420415,
"unrealized_pnl_exit_net": -0.12648871
},
{
"timestamp": "2024-09-16T23:59:00+00:00",
"base_asset_bal": 13.5,
"quote_asset_bal": 9986.039795985,
"total_value_mid": 10001.074745985,
"total_value_exit_net": 10001.0634697725,
"total_value": 10001.074745985,
"base_cost_quote": 15.0750478125,
"unrealized_pnl_exit_net": -0.051374025
},
{
"timestamp": "2024-09-17T23:59:00+00:00",
"base_asset_bal": 9,
"quote_asset_bal": 9991.07267901,
"total_value_mid": 10001.07977901,
"total_value_exit_net": 10001.072273685,
"total_value": 10001.07977901,
"base_cost_quote": 10.0573873875,
"unrealized_pnl_exit_net": -0.0577927125
},
{
"timestamp": "2024-09-18T23:59:00+00:00",
"base_asset_bal": 22.6,
"quote_asset_bal": 9975.8937714025,
"total_value_mid": 10001.0023714025,
"total_value_exit_net": 10000.9835399525,
"total_value": 10001.0023714025,
"base_cost_quote": 25.241376845,
"unrealized_pnl_exit_net": -0.151608295
},
{
"timestamp": "2024-09-19T23:59:00+00:00",
"base_asset_bal": 18,
"quote_asset_bal": 9981.0274286825,
"total_value_mid": 10001.1226286825,
"total_value_exit_net": 10001.1075572825,
"total_value": 10001.1226286825,
"base_cost_quote": 20.1282849,
"unrealized_pnl_exit_net": -0.0481563
},
{
"timestamp": "2024-09-20T23:59:00+00:00",
"base_asset_bal": 18,
"quote_asset_bal": 9981.0324970325,
"total_value_mid": 10001.1204970325,
"total_value_exit_net": 10001.1054310325,
"total_value": 10001.1204970325,
"base_cost_quote": 20.1282849,
"unrealized_pnl_exit_net": -0.0553509
},
{
"timestamp": "2024-09-21T23:59:00+00:00",
"base_asset_bal": 18,
"quote_asset_bal": 9981.0324970325,
"total_value_mid": 10001.1132970325,
"total_value_exit_net": 10001.0982364325,
"total_value": 10001.1132970325,
"base_cost_quote": 20.1282849,
"unrealized_pnl_exit_net": -0.0625455
},
{
"timestamp": "2024-09-22T23:59:00+00:00",
"base_asset_bal": 18,
"quote_asset_bal": 9981.0324970325,
"total_value_mid": 10001.1132970325,
"total_value_exit_net": 10001.0982364325,
"total_value": 10001.1132970325,
"base_cost_quote": 20.1282849,
"unrealized_pnl_exit_net": -0.0625455
},
{
"timestamp": "2024-09-23T23:59:00+00:00",
"base_asset_bal": 27,
"quote_asset_bal": 9971.02265823,
"total_value_mid": 10001.00885823,
"total_value_exit_net": 10000.98636858,
"total_value": 10001.00885823,
"base_cost_quote": 30.1433405625,
"unrealized_pnl_exit_net": -0.1796302125
},
{
"timestamp": "2024-09-24T23:59:00+00:00",
"base_asset_bal": 13.5,
"quote_asset_bal": 9986.096436255,
"total_value_mid": 10001.200236255,
"total_value_exit_net": 10001.188908405,
"total_value": 10001.200236255,
"base_cost_quote": 15.1101741375,
"unrealized_pnl_exit_net": -0.0177019875
},
{
"timestamp": "2024-09-25T23:59:00+00:00",
"base_asset_bal": 9,
"quote_asset_bal": 9991.157520555,
"total_value_mid": 10001.172720555,
"total_value_exit_net": 10001.165209155,
"total_value": 10001.172720555,
"base_cost_quote": 10.0591887375,
"unrealized_pnl_exit_net": -0.0515001375
},
{
"timestamp": "2024-09-26T23:59:00+00:00",
"base_asset_bal": 4.5,
"quote_asset_bal": 9996.2177076675,
"total_value_mid": 10001.2455576675,
"total_value_exit_net": 10001.24178678,
"total_value": 10001.2455576675,
"base_cost_quote": 5.0298195375,
"unrealized_pnl_exit_net": -0.005740425
},
{
"timestamp": "2024-09-27T23:59:00+00:00",
"base_asset_bal": 9,
"quote_asset_bal": 9991.19332318,
"total_value_mid": 10001.23282318,
"total_value_exit_net": 10001.225293555,
"total_value": 10001.23282318,
"base_cost_quote": 10.0695465,
"unrealized_pnl_exit_net": -0.037576125
},
{
"timestamp": "2024-09-28T23:59:00+00:00",
"base_asset_bal": 9,
"quote_asset_bal": 9991.19332318,
"total_value_mid": 10001.23552318,
"total_value_exit_net": 10001.22799153,
"total_value": 10001.23552318,
"base_cost_quote": 10.0695465,
"unrealized_pnl_exit_net": -0.03487815
},
{
"timestamp": "2024-09-29T23:59:00+00:00",
"base_asset_bal": 9,
"quote_asset_bal": 9991.19332318,
"total_value_mid": 10001.24092318,
"total_value_exit_net": 10001.23338748,
"total_value": 10001.24092318,
"base_cost_quote": 10.0695465,
"unrealized_pnl_exit_net": -0.0294822
},
{
"timestamp": "2024-09-30T23:59:00+00:00",
"base_asset_bal": 18,
"quote_asset_bal": 9981.1698088675,
"total_value_mid": 10001.2038088675,
"total_value_exit_net": 10001.1887833675,
"total_value": 10001.2038088675,
"base_cost_quote": 20.0981122875,
"unrealized_pnl_exit_net": -0.0791377875
},
{
"timestamp": "2024-10-01T23:59:00+00:00",
"base_asset_bal": 27.2,
"quote_asset_bal": 9970.9662619425,
"total_value_mid": 10001.0521819425,
"total_value_exit_net": 10001.0296175025,
"total_value": 10001.0521819425,
"base_cost_quote": 30.3016592125,
"unrealized_pnl_exit_net": -0.2383036525
},
{
"timestamp": "2024-10-02T23:59:00+00:00",
"base_asset_bal": 31.8,
"quote_asset_bal": 9965.8812910725,
"total_value_mid": 10000.9948510725,
"total_value_exit_net": 10000.9685159025,
"total_value": 10000.9948510725,
"base_cost_quote": 35.3866300825,
"unrealized_pnl_exit_net": -0.2994052525
},
{
"timestamp": "2024-10-03T23:59:00+00:00",
"base_asset_bal": 41,
"quote_asset_bal": 9955.7302234775,
"total_value_mid": 10000.9368234775,
"total_value_exit_net": 10000.9029185275,
"total_value": 10000.9368234775,
"base_cost_quote": 45.5376976775,
"unrealized_pnl_exit_net": -0.3650026275
},
{
"timestamp": "2024-10-04T23:59:00+00:00",
"base_asset_bal": 50.2,
"quote_asset_bal": 9945.6247300375,
"total_value_mid": 10000.6891100375,
"total_value_exit_net": 10000.6478117525,
"total_value": 10000.6891100375,
"base_cost_quote": 55.6431911175,
"unrealized_pnl_exit_net": -0.6201094025
},
{
"timestamp": "2024-10-05T23:59:00+00:00",
"base_asset_bal": 50.2,
"quote_asset_bal": 9945.6247300375,
"total_value_mid": 10000.6991500375,
"total_value_exit_net": 10000.6578442225,
"total_value": 10000.6991500375,
"base_cost_quote": 55.6431911175,
"unrealized_pnl_exit_net": -0.6100769325
},
{
"timestamp": "2024-10-06T23:59:00+00:00",
"base_asset_bal": 50.2,
"quote_asset_bal": 9945.6247300375,
"total_value_mid": 10000.7041700375,
"total_value_exit_net": 10000.6628604575,
"total_value": 10000.7041700375,
"base_cost_quote": 55.6431911175,
"unrealized_pnl_exit_net": -0.6050606975
},
{
"timestamp": "2024-10-07T23:59:00+00:00",
"base_asset_bal": 50.2,
"quote_asset_bal": 9945.6247300375,
"total_value_mid": 10000.6991500375,
"total_value_exit_net": 10000.6578442225,
"total_value": 10000.6991500375,
"base_cost_quote": 55.6431911175,
"unrealized_pnl_exit_net": -0.6100769325
},
{
"timestamp": "2024-10-08T23:59:00+00:00",
"base_asset_bal": 50.2,
"quote_asset_bal": 9945.6247300375,
"total_value_mid": 10000.7142100375,
"total_value_exit_net": 10000.6728929275,
"total_value": 10000.7142100375,
"base_cost_quote": 55.6431911175,
"unrealized_pnl_exit_net": -0.5950282275
},
{
"timestamp": "2024-10-09T23:59:00+00:00",
"base_asset_bal": 36.4,
"quote_asset_bal": 9960.9561229375,
"total_value_mid": 10000.7922829375,
"total_value_exit_net": 10000.7624058175,
"total_value": 10000.7922829375,
"base_cost_quote": 40.3486888375,
"unrealized_pnl_exit_net": -0.5424059575
},
{
"timestamp": "2024-10-10T23:59:00+00:00",
"base_asset_bal": 27.2,
"quote_asset_bal": 9971.1184447775,
"total_value_mid": 10000.8698047775,
"total_value_exit_net": 10000.8474912575,
"total_value": 10000.8698047775,
"base_cost_quote": 30.2395126375,
"unrealized_pnl_exit_net": -0.5104661575
},
{
"timestamp": "2024-10-11T23:59:00+00:00",
"base_asset_bal": 27.2,
"quote_asset_bal": 9971.1501162375,
"total_value_mid": 10000.9313962375,
"total_value_exit_net": 10000.9090602775,
"total_value": 10000.9313962375,
"base_cost_quote": 30.2450367775,
"unrealized_pnl_exit_net": -0.4860927375
},
{
"timestamp": "2024-10-12T23:59:00+00:00",
"base_asset_bal": 31.8,
"quote_asset_bal": 9966.1047350375,
"total_value_mid": 10000.9638950375,
"total_value_exit_net": 10000.9377506675,
"total_value": 10000.9638950375,
"base_cost_quote": 35.2904179775,
"unrealized_pnl_exit_net": -0.4574023475
},
{
"timestamp": "2024-10-13T23:59:00+00:00",
"base_asset_bal": 31.8,
"quote_asset_bal": 9966.0955695375,
"total_value_mid": 10000.9642695375,
"total_value_exit_net": 10000.9381180125,
"total_value": 10000.9642695375,
"base_cost_quote": 35.3208007475,
"unrealized_pnl_exit_net": -0.4782522725
},
{
"timestamp": "2024-10-14T23:59:00+00:00",
"base_asset_bal": 45.6,
"quote_asset_bal": 9950.9672859575,
"total_value_mid": 10000.7898459575,
"total_value_exit_net": 10000.7524790375,
"total_value": 10000.7898459575,
"base_cost_quote": 50.4808822875,
"unrealized_pnl_exit_net": -0.6956892075
},
{
"timestamp": "2024-10-15T23:59:00+00:00",
"base_asset_bal": 50.2,
"quote_asset_bal": 9945.9421599375,
"total_value_mid": 10000.6350599375,
"total_value_exit_net": 10000.5940402625,
"total_value": 10000.6350599375,
"base_cost_quote": 55.5060083075,
"unrealized_pnl_exit_net": -0.8541279825
},
{
"timestamp": "2024-10-16T23:59:00+00:00",
"base_asset_bal": 45.7,
"quote_asset_bal": 9950.93567185,
"total_value_mid": 10000.62985185,
"total_value_exit_net": 10000.592581215,
"total_value": 10000.62985185,
"base_cost_quote": 50.544539995,
"unrealized_pnl_exit_net": -0.88763063
},
{
"timestamp": "2024-10-17T23:59:00+00:00",
"base_asset_bal": 41.1,
"quote_asset_bal": 9955.981407495,
"total_value_mid": 10000.562577495,
"total_value_exit_net": 10000.5291416175,
"total_value": 10000.562577495,
"base_cost_quote": 45.520654905,
"unrealized_pnl_exit_net": -0.9729207825
},
{
"timestamp": "2024-10-18T23:59:00+00:00",
"base_asset_bal": 45.8,
"quote_asset_bal": 9950.8691461725,
"total_value_mid": 10000.6354261725,
"total_value_exit_net": 10000.5981014625,
"total_value": 10000.6354261725,
"base_cost_quote": 50.6329162275,
"unrealized_pnl_exit_net": -0.9039609375
},
{
"timestamp": "2024-10-19T23:59:00+00:00",
"base_asset_bal": 45.8,
"quote_asset_bal": 9950.8691461725,
"total_value_mid": 10000.6995461725,
"total_value_exit_net": 10000.6621733725,
"total_value": 10000.6995461725,
"base_cost_quote": 50.6329162275,
"unrealized_pnl_exit_net": -0.8398890275
},
{
"timestamp": "2024-10-20T23:59:00+00:00",
"base_asset_bal": 36.4,
"quote_asset_bal": 9961.1969742425,
"total_value_mid": 10000.9057342425,
"total_value_exit_net": 10000.8759526725,
"total_value": 10000.9057342425,
"base_cost_quote": 40.3855164375,
"unrealized_pnl_exit_net": -0.7065380075
},
{
"timestamp": "2024-10-21T23:59:00+00:00",
"base_asset_bal": 36.5,
"quote_asset_bal": 9961.126011995,
"total_value_mid": 10000.644561995,
"total_value_exit_net": 10000.6149230825,
"total_value": 10000.644561995,
"base_cost_quote": 40.47265174,
"unrealized_pnl_exit_net": -0.9837406525
},
{
"timestamp": "2024-10-22T23:59:00+00:00",
"base_asset_bal": 41.2,
"quote_asset_bal": 9956.0601523625,
"total_value_mid": 10000.5726323625,
"total_value_exit_net": 10000.5392480025,
"total_value": 10000.5726323625,
"base_cost_quote": 45.5660989625,
"unrealized_pnl_exit_net": -1.0870033225
},
{
"timestamp": "2024-10-23T23:59:00+00:00",
"base_asset_bal": 45.9,
"quote_asset_bal": 9950.98551924,
"total_value_mid": 10000.48866924,
"total_value_exit_net": 10000.4515418775,
"total_value": 10000.48866924,
"base_cost_quote": 50.640732085,
"unrealized_pnl_exit_net": -1.1747094475
},
{
"timestamp": "2024-10-24T23:59:00+00:00",
"base_asset_bal": 45.9,
"quote_asset_bal": 9950.985310795,
"total_value_mid": 10000.690420795,
"total_value_exit_net": 10000.6531419625,
"total_value": 10000.690420795,
"base_cost_quote": 50.6515501925,
"unrealized_pnl_exit_net": -0.983719025
},
{
"timestamp": "2024-10-25T23:59:00+00:00",
"base_asset_bal": 50.6,
"quote_asset_bal": 9945.9116183775,
"total_value_mid": 10000.4128783775,
"total_value_exit_net": 10000.3720024325,
"total_value": 10000.4128783775,
"base_cost_quote": 55.72524261,
"unrealized_pnl_exit_net": -1.264858555
},
{
"timestamp": "2024-10-26T23:59:00+00:00",
"base_asset_bal": 50.6,
"quote_asset_bal": 9945.9116183775,
"total_value_mid": 10000.4887783775,
"total_value_exit_net": 10000.4478455075,
"total_value": 10000.4887783775,
"base_cost_quote": 55.72524261,
"unrealized_pnl_exit_net": -1.18901548
},
{
"timestamp": "2024-10-27T23:59:00+00:00",
"base_asset_bal": 55.3,
"quote_asset_bal": 9940.8318113775,
"total_value_mid": 10000.5779313775,
"total_value_exit_net": 10000.5331217875,
"total_value": 10000.5779313775,
"base_cost_quote": 60.80504961,
"unrealized_pnl_exit_net": -1.1037392
},
{
"timestamp": "2024-10-28T23:59:00+00:00",
"base_asset_bal": 45.9,
"quote_asset_bal": 9950.98498861,
"total_value_mid": 10000.77271861,
"total_value_exit_net": 10000.7353778125,
"total_value": 10000.77271861,
"base_cost_quote": 50.6675421775,
"unrealized_pnl_exit_net": -0.917152975
},
{
"timestamp": "2024-10-29T23:59:00+00:00",
"base_asset_bal": 55.3,
"quote_asset_bal": 9940.8020878725,
"total_value_mid": 10000.7306978725,
"total_value_exit_net": 10000.685751415,
"total_value": 10000.7306978725,
"base_cost_quote": 60.86149191,
"unrealized_pnl_exit_net": -0.9778283675
},
{
"timestamp": "2024-10-30T23:59:00+00:00",
"base_asset_bal": 45.9,
"quote_asset_bal": 9950.999425365,
"total_value_mid": 10000.833055365,
"total_value_exit_net": 10000.7956801425,
"total_value": 10000.833055365,
"base_cost_quote": 50.6807120475,
"unrealized_pnl_exit_net": -0.88445727
},
{
"timestamp": "2024-10-31T23:59:00+00:00",
"base_asset_bal": 36.4,
"quote_asset_bal": 9961.355809525,
"total_value_mid": 10000.969929525,
"total_value_exit_net": 10000.940218935,
"total_value": 10000.969929525,
"base_cost_quote": 40.3680233275,
"unrealized_pnl_exit_net": -0.7836139175
},
{
"timestamp": "2024-11-01T23:59:00+00:00",
"base_asset_bal": 41,
"quote_asset_bal": 9956.33006354,
"total_value_mid": 10000.71666354,
"total_value_exit_net": 10000.68337359,
"total_value": 10000.71666354,
"base_cost_quote": 45.3991338325,
"unrealized_pnl_exit_net": -1.0458237825
},
{
"timestamp": "2024-11-02T23:59:00+00:00",
"base_asset_bal": 41,
"quote_asset_bal": 9956.33006354,
"total_value_mid": 10000.60596354,
"total_value_exit_net": 10000.572756615,
"total_value": 10000.60596354,
"base_cost_quote": 45.3991338325,
"unrealized_pnl_exit_net": -1.1564407575
},
{
"timestamp": "2024-11-03T23:59:00+00:00",
"base_asset_bal": 45.7,
"quote_asset_bal": 9951.2382631975,
"total_value_mid": 10000.8136231975,
"total_value_exit_net": 10000.7764416775,
"total_value": 10000.8136231975,
"base_cost_quote": 50.501988105,
"unrealized_pnl_exit_net": -0.963809625
},
{
"timestamp": "2024-11-04T23:59:00+00:00",
"base_asset_bal": 41,
"quote_asset_bal": 9956.35210654,
"total_value_mid": 10000.92320654,
"total_value_exit_net": 10000.889778215,
"total_value": 10000.92320654,
"base_cost_quote": 45.3991338325,
"unrealized_pnl_exit_net": -0.8614621575
},
{
"timestamp": "2024-11-05T23:59:00+00:00",
"base_asset_bal": 45.6,
"quote_asset_bal": 9951.33050228,
"total_value_mid": 10001.13026228,
"total_value_exit_net": 10001.09291246,
"total_value": 10001.13026228,
"base_cost_quote": 50.4261012325,
"unrealized_pnl_exit_net": -0.6636910525
},
{
"timestamp": "2024-11-06T23:59:00+00:00",
"base_asset_bal": 41.2,
"quote_asset_bal": 9956.3387420575,
"total_value_mid": 10000.7894220575,
"total_value_exit_net": 10000.7560840475,
"total_value": 10000.7894220575,
"base_cost_quote": 45.5369371075,
"unrealized_pnl_exit_net": -1.1195951175
},
{
"timestamp": "2024-11-07T23:59:00+00:00",
"base_asset_bal": 41.2,
"quote_asset_bal": 9956.3989387175,
"total_value_mid": 10000.9155387175,
"total_value_exit_net": 10000.8821512675,
"total_value": 10000.9155387175,
"base_cost_quote": 45.5284707625,
"unrealized_pnl_exit_net": -1.0452582125
},
{
"timestamp": "2024-11-08T23:59:00+00:00",
"base_asset_bal": 60,
"quote_asset_bal": 9936.193832945,
"total_value_mid": 10000.519832945,
"total_value_exit_net": 10000.471588445,
"total_value": 10000.519832945,
"base_cost_quote": 65.7489247375,
"unrealized_pnl_exit_net": -1.4711692375
},
{
"timestamp": "2024-11-09T23:59:00+00:00",
"base_asset_bal": 55.3,
"quote_asset_bal": 9941.2364381525,
"total_value_mid": 10000.5512181525,
"total_value_exit_net": 10000.5067320675,
"total_value": 10000.5512181525,
"base_cost_quote": 60.7114494625,
"unrealized_pnl_exit_net": -1.4411555475
},
{
"timestamp": "2024-11-10T23:59:00+00:00",
"base_asset_bal": 50.5,
"quote_asset_bal": 9946.4902716175,
"total_value_mid": 10000.7424216175,
"total_value_exit_net": 10000.701732505,
"total_value": 10000.7424216175,
"base_cost_quote": 55.5681348675,
"unrealized_pnl_exit_net": -1.35667398
},
{
"timestamp": "2024-11-11T23:59:00+00:00",
"base_asset_bal": 50.5,
"quote_asset_bal": 9946.504040855,
"total_value_mid": 10000.917790855,
"total_value_exit_net": 10000.8769805425,
"total_value": 10000.917790855,
"base_cost_quote": 55.6208143475,
"unrealized_pnl_exit_net": -1.24787466
},
{
"timestamp": "2024-11-12T23:59:00+00:00",
"base_asset_bal": 55.3,
"quote_asset_bal": 9941.78429779,
"total_value_mid": 10001.02165779,
"total_value_exit_net": 10000.97722977,
"total_value": 10001.02165779,
"base_cost_quote": 60.6456001125,
"unrealized_pnl_exit_net": -1.4526681325
},
{
"timestamp": "2024-11-13T23:59:00+00:00",
"base_asset_bal": 78.9,
"quote_asset_bal": 9916.72472926,
"total_value_mid": 10000.28771926,
"total_value_exit_net": 10000.2250470175,
"total_value": 10000.28771926,
"base_cost_quote": 85.830064305,
"unrealized_pnl_exit_net": -2.3297465475
},
{
"timestamp": "2024-11-14T23:59:00+00:00",
"base_asset_bal": 93.3,
"quote_asset_bal": 9901.52264542,
"total_value_mid": 9999.73955542,
"total_value_exit_net": 9999.6658927375,
"total_value": 9999.73955542,
"base_cost_quote": 101.058917385,
"unrealized_pnl_exit_net": -2.9156700675
},
{
"timestamp": "2024-11-15T23:59:00+00:00",
"base_asset_bal": 88.5,
"quote_asset_bal": 9906.60329302,
"total_value_mid": 10000.20089302,
"total_value_exit_net": 10000.13069482,
"total_value": 10000.20089302,
"base_cost_quote": 96.005049825,
"unrealized_pnl_exit_net": -2.477648025
},
{
"timestamp": "2024-11-16T23:59:00+00:00",
"base_asset_bal": 88.5,
"quote_asset_bal": 9906.6086365,
"total_value_mid": 10000.3655365,
"total_value_exit_net": 10000.295218825,
"total_value": 10000.3655365,
"base_cost_quote": 96.005049825,
"unrealized_pnl_exit_net": -2.3184675
},
{
"timestamp": "2024-11-17T23:59:00+00:00",
"base_asset_bal": 83.8,
"quote_asset_bal": 9911.6258186775,
"total_value_mid": 10000.2945986775,
"total_value_exit_net": 10000.2280970925,
"total_value": 10000.2945986775,
"base_cost_quote": 91.03030156,
"unrealized_pnl_exit_net": -2.428023145
},
{
"timestamp": "2024-11-18T23:59:00+00:00",
"base_asset_bal": 93.4,
"quote_asset_bal": 9901.4769518775,
"total_value_mid": 10000.3782118775,
"total_value_exit_net": 10000.3040359325,
"total_value": 10000.3782118775,
"base_cost_quote": 101.19519952,
"unrealized_pnl_exit_net": -2.368115465
},
{
"timestamp": "2024-11-19T23:59:00+00:00",
"base_asset_bal": 93.4,
"quote_asset_bal": 9901.4930197575,
"total_value_mid": 10000.4129597575,
"total_value_exit_net": 10000.3387698025,
"total_value": 10000.4129597575,
"base_cost_quote": 101.19519952,
"unrealized_pnl_exit_net": -2.349449475
},
{
"timestamp": "2024-11-20T23:59:00+00:00",
"base_asset_bal": 98.2,
"quote_asset_bal": 9896.4368975175,
"total_value_mid": 10000.0968175175,
"total_value_exit_net": 10000.0190725775,
"total_value": 10000.0968175175,
"base_cost_quote": 106.2620368,
"unrealized_pnl_exit_net": -2.67986174
},
{
"timestamp": "2024-11-21T23:59:00+00:00",
"base_asset_bal": 98.2,
"quote_asset_bal": 9896.5138763175,
"total_value_mid": 9999.8399163175,
"total_value_exit_net": 9999.7624217875,
"total_value": 9999.8399163175,
"base_cost_quote": 106.2548314,
"unrealized_pnl_exit_net": -3.00628593
},
{
"timestamp": "2024-11-22T23:59:00+00:00",
"base_asset_bal": 107.8,
"quote_asset_bal": 9886.4908691175,
"total_value_mid": 9999.4005891175,
"total_value_exit_net": 9999.3159068275,
"total_value": 9999.4005891175,
"base_cost_quote": 116.33182348,
"unrealized_pnl_exit_net": -3.50678577
},
{
"timestamp": "2024-11-23T23:59:00+00:00",
"base_asset_bal": 112.6,
"quote_asset_bal": 9881.4758285175,
"total_value_mid": 9999.4581085175,
"total_value_exit_net": 9999.3696218075,
"total_value": 9999.4581085175,
"base_cost_quote": 121.36311412,
"unrealized_pnl_exit_net": -3.46932083
},
{
"timestamp": "2024-11-24T23:59:00+00:00",
"base_asset_bal": 107.8,
"quote_asset_bal": 9886.5832943175,
"total_value_mid": 9999.5576943175,
"total_value_exit_net": 9999.4729635175,
"total_value": 9999.5576943175,
"base_cost_quote": 116.33662708,
"unrealized_pnl_exit_net": -3.44695788
},
{
"timestamp": "2024-11-25T23:59:00+00:00",
"base_asset_bal": 107.8,
"quote_asset_bal": 9886.5996276375,
"total_value_mid": 9999.3692076375,
"total_value_exit_net": 9999.2846304525,
"total_value": 9999.3692076375,
"base_cost_quote": 116.34191104,
"unrealized_pnl_exit_net": -3.656908225
},
{
"timestamp": "2024-11-26T23:59:00+00:00",
"base_asset_bal": 117.4,
"quote_asset_bal": 9876.5479386375,
"total_value_mid": 9999.7827186375,
"total_value_exit_net": 9999.6902925525,
"total_value": 9999.7827186375,
"base_cost_quote": 126.43139248,
"unrealized_pnl_exit_net": -3.289038565
},
{
"timestamp": "2024-11-27T23:59:00+00:00",
"base_asset_bal": 98.2,
"quote_asset_bal": 9896.7452594775,
"total_value_mid": 10000.4346394775,
"total_value_exit_net": 10000.3568724425,
"total_value": 10000.4346394775,
"base_cost_quote": 106.26636004,
"unrealized_pnl_exit_net": -2.654747075
},
{
"timestamp": "2024-11-28T23:59:00+00:00",
"base_asset_bal": 103,
"quote_asset_bal": 9891.6841865175,
"total_value_mid": 10000.4212865175,
"total_value_exit_net": 10000.3397336925,
"total_value": 10000.4212865175,
"base_cost_quote": 111.327433,
"unrealized_pnl_exit_net": -2.671885825
},
{
"timestamp": "2024-11-29T23:59:00+00:00",
"base_asset_bal": 93.4,
"quote_asset_bal": 9901.8412245975,
"total_value_mid": 10000.7144645975,
"total_value_exit_net": 10000.6403096675,
"total_value": 10000.7144645975,
"base_cost_quote": 101.19712096,
"unrealized_pnl_exit_net": -2.39803589
},
{
"timestamp": "2024-11-30T23:59:00+00:00",
"base_asset_bal": 88.6,
"quote_asset_bal": 9906.9254085975,
"total_value_mid": 10000.7705285975,
"total_value_exit_net": 10000.7001447575,
"total_value": 10000.7705285975,
"base_cost_quote": 96.11827468,
"unrealized_pnl_exit_net": -2.34353852
},
{
"timestamp": "2024-12-01T23:59:00+00:00",
"base_asset_bal": 93.4,
"quote_asset_bal": 9901.8431997975,
"total_value_mid": 10000.4922797975,
"total_value_exit_net": 10000.4182929875,
"total_value": 10000.4922797975,
"base_cost_quote": 101.20048348,
"unrealized_pnl_exit_net": -2.62539029
},
{
"timestamp": "2024-12-02T23:59:00+00:00",
"base_asset_bal": 112.6,
"quote_asset_bal": 9881.6201753175,
"total_value_mid": 9999.8839553175,
"total_value_exit_net": 9999.7952574825,
"total_value": 9999.8839553175,
"base_cost_quote": 121.42892344,
"unrealized_pnl_exit_net": -3.253841275
},
{
"timestamp": "2024-12-03T23:59:00+00:00",
"base_asset_bal": 112.6,
"quote_asset_bal": 9881.6201753175,
"total_value_mid": 10000.0641153175,
"total_value_exit_net": 9999.9752823625,
"total_value": 10000.0641153175,
"base_cost_quote": 121.42892344,
"unrealized_pnl_exit_net": -3.073816395
},
{
"timestamp": "2024-12-04T23:59:00+00:00",
"base_asset_bal": 103,
"quote_asset_bal": 9891.7438056375,
"total_value_mid": 10000.0277056375,
"total_value_exit_net": 9999.9464927125,
"total_value": 10000.0277056375,
"base_cost_quote": 111.3322366,
"unrealized_pnl_exit_net": -3.129549525
},
{
"timestamp": "2024-12-05T23:59:00+00:00",
"base_asset_bal": 103,
"quote_asset_bal": 9891.8252257575,
"total_value_mid": 10000.7065257575,
"total_value_exit_net": 10000.6248647825,
"total_value": 10000.7065257575,
"base_cost_quote": 111.33655984,
"unrealized_pnl_exit_net": -2.536920815
},
{
"timestamp": "2024-12-06T23:59:00+00:00",
"base_asset_bal": 93.4,
"quote_asset_bal": 9901.9889394375,
"total_value_mid": 10000.7314194375,
"total_value_exit_net": 10000.6573625775,
"total_value": 10000.7314194375,
"base_cost_quote": 101.1942388,
"unrealized_pnl_exit_net": -2.52581566
},
{
"timestamp": "2024-12-07T23:59:00+00:00",
"base_asset_bal": 93.4,
"quote_asset_bal": 9901.9889394375,
"total_value_mid": 10000.8061394375,
"total_value_exit_net": 10000.7320265375,
"total_value": 10000.8061394375,
"base_cost_quote": 101.1942388,
"unrealized_pnl_exit_net": -2.4511517
},
{
"timestamp": "2024-12-08T23:59:00+00:00",
"base_asset_bal": 93.4,
"quote_asset_bal": 9901.9986447975,
"total_value_mid": 10000.7224447975,
"total_value_exit_net": 10000.6484019475,
"total_value": 10000.7224447975,
"base_cost_quote": 101.19519952,
"unrealized_pnl_exit_net": -2.54544237
},
{
"timestamp": "2024-12-09T23:59:00+00:00",
"base_asset_bal": 93.4,
"quote_asset_bal": 9902.0039983575,
"total_value_mid": 10000.4289183575,
"total_value_exit_net": 10000.3550996675,
"total_value": 10000.4289183575,
"base_cost_quote": 101.19519952,
"unrealized_pnl_exit_net": -2.84409821
},
{
"timestamp": "2024-12-10T23:59:00+00:00",
"base_asset_bal": 93.4,
"quote_asset_bal": 9902.0967455175,
"total_value_mid": 10000.1200455175,
"total_value_exit_net": 10000.0465280425,
"total_value": 10000.1200455175,
"base_cost_quote": 101.15629036,
"unrealized_pnl_exit_net": -3.206507835
},
{
"timestamp": "2024-12-11T23:59:00+00:00",
"base_asset_bal": 98.2,
"quote_asset_bal": 9897.0364841175,
"total_value_mid": 10000.4410841175,
"total_value_exit_net": 10000.3635306675,
"total_value": 10000.4410841175,
"base_cost_quote": 106.23273484,
"unrealized_pnl_exit_net": -2.90568829
},
{
"timestamp": "2024-12-12T23:59:00+00:00",
"base_asset_bal": 103,
"quote_asset_bal": 9891.9995469975,
"total_value_mid": 9999.9538469975,
"total_value_exit_net": 9999.8728812725,
"total_value": 9999.9538469975,
"base_cost_quote": 111.27507376,
"unrealized_pnl_exit_net": -3.401739485
},
{
"timestamp": "2024-12-13T23:59:00+00:00",
"base_asset_bal": 103,
"quote_asset_bal": 9892.0103556375,
"total_value_mid": 10000.2118556375,
"total_value_exit_net": 10000.1307045125,
"total_value": 10000.2118556375,
"base_cost_quote": 111.27507376,
"unrealized_pnl_exit_net": -3.154724885
},
{
"timestamp": "2024-12-14T23:59:00+00:00",
"base_asset_bal": 98.2,
"quote_asset_bal": 9897.0580869975,
"total_value_mid": 10000.3448469975,
"total_value_exit_net": 10000.2673819275,
"total_value": 10000.3448469975,
"base_cost_quote": 106.23273484,
"unrealized_pnl_exit_net": -3.02343991
},
{
"timestamp": "2024-12-15T23:59:00+00:00",
"base_asset_bal": 98.2,
"quote_asset_bal": 9897.0654877575,
"total_value_mid": 10000.5486477575,
"total_value_exit_net": 10000.4710353875,
"total_value": 10000.5486477575,
"base_cost_quote": 106.23609736,
"unrealized_pnl_exit_net": -2.83054973
},
{
"timestamp": "2024-12-16T23:59:00+00:00",
"base_asset_bal": 88.6,
"quote_asset_bal": 9907.2702450375,
"total_value_mid": 10000.7255250375,
"total_value_exit_net": 10000.6554335775,
"total_value": 10000.7255250375,
"base_cost_quote": 96.10098172,
"unrealized_pnl_exit_net": -2.71579318
},
{
"timestamp": "2024-12-17T23:59:00+00:00",
"base_asset_bal": 98.2,
"quote_asset_bal": 9897.1818378375,
"total_value_mid": 10000.2230978375,
"total_value_exit_net": 10000.1458168925,
"total_value": 10000.2230978375,
"base_cost_quote": 106.1947864,
"unrealized_pnl_exit_net": -3.230807345
},
{
"timestamp": "2024-12-18T23:59:00+00:00",
"base_asset_bal": 132.1,
"quote_asset_bal": 9861.7852603,
"total_value_mid": 9998.5351803,
"total_value_exit_net": 9998.43261786,
"total_value": 9998.5351803,
"base_cost_quote": 141.5913639375,
"unrealized_pnl_exit_net": -4.9440063775
},
{
"timestamp": "2024-12-19T23:59:00+00:00",
"base_asset_bal": 127.2,
"quote_asset_bal": 9866.896462795,
"total_value_mid": 9998.395822795,
"total_value_exit_net": 9998.297198275,
"total_value": 9998.395822795,
"base_cost_quote": 136.4954648775,
"unrealized_pnl_exit_net": -5.0947293975
},
{
"timestamp": "2024-12-20T23:59:00+00:00",
"base_asset_bal": 127.1,
"quote_asset_bal": 9867.0039795525,
"total_value_mid": 9999.0481695525,
"total_value_exit_net": 9998.94913641,
"total_value": 9999.0481695525,
"base_cost_quote": 136.408369605,
"unrealized_pnl_exit_net": -4.4632127475
},
{
"timestamp": "2024-12-21T23:59:00+00:00",
"base_asset_bal": 127.1,
"quote_asset_bal": 9867.0090733475,
"total_value_mid": 9999.2057833475,
"total_value_exit_net": 9999.106635815,
"total_value": 9999.2057833475,
"base_cost_quote": 136.408369605,
"unrealized_pnl_exit_net": -4.3108071375
},
{
"timestamp": "2024-12-22T23:59:00+00:00",
"base_asset_bal": 122.2,
"quote_asset_bal": 9872.11740922,
"total_value_mid": 9999.44980922,
"total_value_exit_net": 9999.35430992,
"total_value": 9999.44980922,
"base_cost_quote": 131.3056054,
"unrealized_pnl_exit_net": -4.0687047
},
{
"timestamp": "2024-12-23T23:59:00+00:00",
"base_asset_bal": 127.1,
"quote_asset_bal": 9867.0151353825,
"total_value_mid": 9999.3135253825,
"total_value_exit_net": 9999.21430159,
"total_value": 9999.3135253825,
"base_cost_quote": 136.4078792375,
"unrealized_pnl_exit_net": -4.20871303
},
{
"timestamp": "2024-12-24T23:59:00+00:00",
"base_asset_bal": 112.7,
"quote_asset_bal": 9882.0775130275,
"total_value_mid": 9999.2855130275,
"total_value_exit_net": 9999.1976070275,
"total_value": 9999.2855130275,
"base_cost_quote": 121.367377315,
"unrealized_pnl_exit_net": -4.247283315
},
{
"timestamp": "2024-12-25T23:59:00+00:00",
"base_asset_bal": 112.7,
"quote_asset_bal": 9882.0775130275,
"total_value_mid": 9999.2967830275,
"total_value_exit_net": 9999.208868575,
"total_value": 9999.2967830275,
"base_cost_quote": 121.367377315,
"unrealized_pnl_exit_net": -4.2360217675
},
{
"timestamp": "2024-12-26T23:59:00+00:00",
"base_asset_bal": 117.5,
"quote_asset_bal": 9877.0712011075,
"total_value_mid": 9999.6589511075,
"total_value_exit_net": 9999.567010295,
"total_value": 9999.6589511075,
"base_cost_quote": 126.373689235,
"unrealized_pnl_exit_net": -3.8778800475
},
{
"timestamp": "2024-12-27T23:59:00+00:00",
"base_asset_bal": 117.4,
"quote_asset_bal": 9877.16509603,
"total_value_mid": 9999.61329603,
"total_value_exit_net": 9999.52145988,
"total_value": 9999.61329603,
"base_cost_quote": 126.28536304,
"unrealized_pnl_exit_net": -3.92899919
},
{
"timestamp": "2024-12-28T23:59:00+00:00",
"base_asset_bal": 112.6,
"quote_asset_bal": 9882.17685439,
"total_value_mid": 9999.84385439,
"total_value_exit_net": 9999.75560414,
"total_value": 9999.84385439,
"base_cost_quote": 121.27905112,
"unrealized_pnl_exit_net": -3.70030137
},
{
"timestamp": "2024-12-29T23:59:00+00:00",
"base_asset_bal": 103,
"quote_asset_bal": 9892.26385579,
"total_value_mid": 9999.99155579,
"total_value_exit_net": 9999.910760015,
"total_value": 9999.99155579,
"base_cost_quote": 111.22991992,
"unrealized_pnl_exit_net": -3.583015695
},
{
"timestamp": "2024-12-30T23:59:00+00:00",
"base_asset_bal": 107.9,
"quote_asset_bal": 9887.20682743,
"total_value_mid": 9999.69257743,
"total_value_exit_net": 9999.6082131175,
"total_value": 9999.69257743,
"base_cost_quote": 116.31405016,
"unrealized_pnl_exit_net": -3.9126644725
},
{
"timestamp": "2024-12-31T23:59:00+00:00",
"base_asset_bal": 107.9,
"quote_asset_bal": 9887.240518485,
"total_value_mid": 9999.165188485,
"total_value_exit_net": 9999.0812449825,
"total_value": 9999.165188485,
"base_cost_quote": 116.35103788,
"unrealized_pnl_exit_net": -4.5103113825
},
{
"timestamp": "2025-01-01T23:59:00+00:00",
"base_asset_bal": 107.9,
"quote_asset_bal": 9887.240518485,
"total_value_mid": 9999.165188485,
"total_value_exit_net": 9999.0812449825,
"total_value": 9999.165188485,
"base_cost_quote": 116.35103788,
"unrealized_pnl_exit_net": -4.5103113825
},
{
"timestamp": "2025-01-02T23:59:00+00:00",
"base_asset_bal": 137.3,
"quote_asset_bal": 9856.8355636425,
"total_value_mid": 9998.0486136425,
"total_value_exit_net": 9997.942703855,
"total_value": 9998.0486136425,
"base_cost_quote": 146.7611783925,
"unrealized_pnl_exit_net": -5.65403818
},
{
"timestamp": "2025-01-03T23:59:00+00:00",
"base_asset_bal": 117.7,
"quote_asset_bal": 9877.1823011025,
"total_value_mid": 9998.8723311025,
"total_value_exit_net": 9998.78106358,
"total_value": 9998.8723311025,
"base_cost_quote": 126.5325382825,
"unrealized_pnl_exit_net": -4.933775805
},
{
"timestamp": "2025-01-04T23:59:00+00:00",
"base_asset_bal": 117.7,
"quote_asset_bal": 9877.1823011025,
"total_value_mid": 9998.6722411025,
"total_value_exit_net": 9998.5811236475,
"total_value": 9998.6722411025,
"base_cost_quote": 126.5325382825,
"unrealized_pnl_exit_net": -5.1337157375
},
{
"timestamp": "2025-01-05T23:59:00+00:00",
"base_asset_bal": 117.7,
"quote_asset_bal": 9877.1823011025,
"total_value_mid": 9998.5427711025,
"total_value_exit_net": 9998.45175075,
"total_value": 9998.5427711025,
"base_cost_quote": 126.5325382825,
"unrealized_pnl_exit_net": -5.263088635
},
{
"timestamp": "2025-01-06T23:59:00+00:00",
"base_asset_bal": 117.7,
"quote_asset_bal": 9877.2122202575,
"total_value_mid": 9999.4436702575,
"total_value_exit_net": 9999.35199667,
"total_value": 9999.4436702575,
"base_cost_quote": 126.5384226925,
"unrealized_pnl_exit_net": -4.39864628
},
{
"timestamp": "2025-01-07T23:59:00+00:00",
"base_asset_bal": 122.6,
"quote_asset_bal": 9872.1412234875,
"total_value_mid": 9998.8728434875,
"total_value_exit_net": 9998.7777947725,
"total_value": 9998.8728434875,
"base_cost_quote": 131.6196107275,
"unrealized_pnl_exit_net": -4.9830394425
},
{
"timestamp": "2025-01-08T23:59:00+00:00",
"base_asset_bal": 137.3,
"quote_asset_bal": 9856.95949579,
"total_value_mid": 9998.48833579,
"total_value_exit_net": 9998.38218916,
"total_value": 9998.48833579,
"base_cost_quote": 146.811686245,
"unrealized_pnl_exit_net": -5.388992875
},
{
"timestamp": "2025-01-09T23:59:00+00:00",
"base_asset_bal": 142.2,
"quote_asset_bal": 9851.9023357625,
"total_value_mid": 9998.0697157625,
"total_value_exit_net": 9997.9600902275,
"total_value": 9998.0697157625,
"base_cost_quote": 151.8688462725,
"unrealized_pnl_exit_net": -5.8110918075
},
{
"timestamp": "2025-01-10T23:59:00+00:00",
"base_asset_bal": 152,
"quote_asset_bal": 9841.843732015,
"total_value_mid": 9997.400532015,
"total_value_exit_net": 9997.283864415,
"total_value": 9997.400532015,
"base_cost_quote": 161.932658475,
"unrealized_pnl_exit_net": -6.492526075
},
{
"timestamp": "2025-01-11T23:59:00+00:00",
"base_asset_bal": 152,
"quote_asset_bal": 9841.843732015,
"total_value_mid": 9997.658932015,
"total_value_exit_net": 9997.542070615,
"total_value": 9997.658932015,
"base_cost_quote": 161.932658475,
"unrealized_pnl_exit_net": -6.234319875
},
{
"timestamp": "2025-01-12T23:59:00+00:00",
"base_asset_bal": 152,
"quote_asset_bal": 9841.843732015,
"total_value_mid": 9997.491732015,
"total_value_exit_net": 9997.374996015,
"total_value": 9997.491732015,
"base_cost_quote": 161.932658475,
"unrealized_pnl_exit_net": -6.401394475
},
{
"timestamp": "2025-01-13T23:59:00+00:00",
"base_asset_bal": 156.9,
"quote_asset_bal": 9836.8567083675,
"total_value_mid": 9997.9459383675,
"total_value_exit_net": 9997.825121445,
"total_value": 9997.9459383675,
"base_cost_quote": 166.9407817525,
"unrealized_pnl_exit_net": -5.972368675
},
{
"timestamp": "2025-01-14T23:59:00+00:00",
"base_asset_bal": 147.1,
"quote_asset_bal": 9846.93608787,
"total_value_mid": 9998.52263787,
"total_value_exit_net": 9998.4089479575,
"total_value": 9998.52263787,
"base_cost_quote": 156.87696955,
"unrealized_pnl_exit_net": -5.4041094625
},
{
"timestamp": "2025-01-15T23:59:00+00:00",
"base_asset_bal": 137.3,
"quote_asset_bal": 9857.0742551225,
"total_value_mid": 9999.0561851225,
"total_value_exit_net": 9998.949698675,
"total_value": 9999.0561851225,
"base_cost_quote": 146.7749086825,
"unrealized_pnl_exit_net": -4.89946513
},
{
"timestamp": "2025-01-16T23:59:00+00:00",
"base_asset_bal": 147.1,
"quote_asset_bal": 9846.9675499125,
"total_value_mid": 9998.7747499125,
"total_value_exit_net": 9998.6608945125,
"total_value": 9998.7747499125,
"base_cost_quote": 156.8970746175,
"unrealized_pnl_exit_net": -5.2037300175
},
{
"timestamp": "2025-01-17T23:59:00+00:00",
"base_asset_bal": 137.3,
"quote_asset_bal": 9857.1809041125,
"total_value_mid": 9998.6548241125,
"total_value_exit_net": 9998.5487186725,
"total_value": 9998.6548241125,
"base_cost_quote": 146.7248911975,
"unrealized_pnl_exit_net": -5.3570766375
},
{
"timestamp": "2025-01-18T23:59:00+00:00",
"base_asset_bal": 108.1,
"quote_asset_bal": 9887.715368055,
"total_value_mid": 9999.815068055,
"total_value_exit_net": 9999.73099328,
"total_value": 9999.815068055,
"base_cost_quote": 116.3453636275,
"unrealized_pnl_exit_net": -4.3297384025
},
{
"timestamp": "2025-01-19T23:59:00+00:00",
"base_asset_bal": 127.7,
"quote_asset_bal": 9867.50134489,
"total_value_mid": 9998.63647489,
"total_value_exit_net": 9998.5381235425,
"total_value": 9998.63647489,
"base_cost_quote": 136.6210790175,
"unrealized_pnl_exit_net": -5.584300365
},
{
"timestamp": "2025-01-20T23:59:00+00:00",
"base_asset_bal": 98.2,
"quote_asset_bal": 9898.020202455,
"total_value_mid": 10000.236582455,
"total_value_exit_net": 10000.15992017,
"total_value": 10000.236582455,
"base_cost_quote": 106.16932732,
"unrealized_pnl_exit_net": -4.029609605
},
{
"timestamp": "2025-01-21T23:59:00+00:00",
"base_asset_bal": 107.9,
"quote_asset_bal": 9887.92554007,
"total_value_mid": 10000.26023007,
"total_value_exit_net": 10000.1759790525,
"total_value": 10000.26023007,
"base_cost_quote": 116.2899821225,
"unrealized_pnl_exit_net": -4.03954314
},
{
"timestamp": "2025-01-22T23:59:00+00:00",
"base_asset_bal": 103,
"quote_asset_bal": 9893.036324105,
"total_value_mid": 10000.187224105,
"total_value_exit_net": 10000.10686093,
"total_value": 10000.187224105,
"base_cost_quote": 111.18476608,
"unrealized_pnl_exit_net": -4.114229255
},
{
"timestamp": "2025-01-23T23:59:00+00:00",
"base_asset_bal": 112.7,
"quote_asset_bal": 9882.93426542,
"total_value_mid": 10000.20988542,
"total_value_exit_net": 10000.121928705,
"total_value": 10000.20988542,
"base_cost_quote": 121.291920765,
"unrealized_pnl_exit_net": -4.10425748
},
{
"timestamp": "2025-01-24T23:59:00+00:00",
"base_asset_bal": 98.2,
"quote_asset_bal": 9898.0613579725,
"total_value_mid": 10001.0731579725,
"total_value_exit_net": 10000.9958991225,
"total_value": 10001.0731579725,
"base_cost_quote": 106.20295252,
"unrealized_pnl_exit_net": -3.26841137
},
{
"timestamp": "2025-01-25T23:59:00+00:00",
"base_asset_bal": 103,
"quote_asset_bal": 9893.0335642525,
"total_value_mid": 10000.9878642525,
"total_value_exit_net": 10000.9068985275,
"total_value": 10000.9878642525,
"base_cost_quote": 111.2361646,
"unrealized_pnl_exit_net": -3.362830325
},
{
"timestamp": "2025-01-26T23:59:00+00:00",
"base_asset_bal": 103,
"quote_asset_bal": 9893.0335642525,
"total_value_mid": 10000.8127642525,
"total_value_exit_net": 10000.7319298525,
"total_value": 10000.8127642525,
"base_cost_quote": 111.2361646,
"unrealized_pnl_exit_net": -3.537799
},
{
"timestamp": "2025-01-27T23:59:00+00:00",
"base_asset_bal": 103,
"quote_asset_bal": 9893.0695664125,
"total_value_mid": 10000.5809664125,
"total_value_exit_net": 10000.5003328625,
"total_value": 10000.5809664125,
"base_cost_quote": 111.2217538,
"unrealized_pnl_exit_net": -3.79098735
},
{
"timestamp": "2025-01-28T23:59:00+00:00",
"base_asset_bal": 112.6,
"quote_asset_bal": 9883.0410906925,
"total_value_mid": 10000.4265906925,
"total_value_exit_net": 10000.3385515675,
"total_value": 10000.4265906925,
"base_cost_quote": 121.25022952,
"unrealized_pnl_exit_net": -3.952768645
},
{
"timestamp": "2025-01-29T23:59:00+00:00",
"base_asset_bal": 117.5,
"quote_asset_bal": 9877.9414521975,
"total_value_mid": 10000.4939521975,
"total_value_exit_net": 10000.4020378225,
"total_value": 10000.4939521975,
"base_cost_quote": 126.354955195,
"unrealized_pnl_exit_net": -3.89436957
},
{
"timestamp": "2025-01-30T23:59:00+00:00",
"base_asset_bal": 117.5,
"quote_asset_bal": 9877.9452012,
"total_value_mid": 10000.3097012,
"total_value_exit_net": 10000.217927825,
"total_value": 10000.3097012,
"base_cost_quote": 126.36222064,
"unrealized_pnl_exit_net": -4.089494015
},
{
"timestamp": "2025-01-31T23:59:00+00:00",
"base_asset_bal": 127.3,
"quote_asset_bal": 9867.7838932075,
"total_value_mid": 9999.4248232075,
"total_value_exit_net": 9999.32609251,
"total_value": 9999.4248232075,
"base_cost_quote": 136.5388173675,
"unrealized_pnl_exit_net": -4.996618065
},
{
"timestamp": "2025-02-01T23:59:00+00:00",
"base_asset_bal": 142,
"quote_asset_bal": 9852.571222255,
"total_value_mid": 9999.129422255,
"total_value_exit_net": 9999.019503605,
"total_value": 9999.129422255,
"base_cost_quote": 151.75148832,
"unrealized_pnl_exit_net": -5.30320697
},
{
"timestamp": "2025-02-02T23:59:00+00:00",
"base_asset_bal": 156.7,
"quote_asset_bal": 9837.5118516,
"total_value_mid": 9997.7689416,
"total_value_exit_net": 9997.6487487825,
"total_value": 9997.7689416,
"base_cost_quote": 166.826366005,
"unrealized_pnl_exit_net": -6.6894688225
},
{
"timestamp": "2025-02-03T23:59:00+00:00",
"base_asset_bal": 142,
"quote_asset_bal": 9852.64396349,
"total_value_mid": 9998.93236349,
"total_value_exit_net": 9998.82264719,
"total_value": 9998.93236349,
"base_cost_quote": 151.75148832,
"unrealized_pnl_exit_net": -5.57280462
},
{
"timestamp": "2025-02-04T23:59:00+00:00",
"base_asset_bal": 132.2,
"quote_asset_bal": 9862.80368327,
"total_value_mid": 9999.61746327,
"total_value_exit_net": 9999.514852935,
"total_value": 9999.61746327,
"base_cost_quote": 141.617553565,
"unrealized_pnl_exit_net": -4.9063839
},
{
"timestamp": "2025-02-05T23:59:00+00:00",
"base_asset_bal": 117.5,
"quote_asset_bal": 9878.07943033,
"total_value_mid": 10000.18543033,
"total_value_exit_net": 10000.09385083,
"total_value": 10000.18543033,
"base_cost_quote": 126.36222064,
"unrealized_pnl_exit_net": -4.34780014
},
{
"timestamp": "2025-02-06T23:59:00+00:00",
"base_asset_bal": 127.3,
"quote_asset_bal": 9867.91651477,
"total_value_mid": 10000.00299477,
"total_value_exit_net": 9999.90392991,
"total_value": 10000.00299477,
"base_cost_quote": 136.535384795,
"unrealized_pnl_exit_net": -4.547969655
},
{
"timestamp": "2025-02-07T23:59:00+00:00",
"base_asset_bal": 132.2,
"quote_asset_bal": 9862.872293805,
"total_value_mid": 9999.196933805,
"total_value_exit_net": 9999.094690325,
"total_value": 9999.196933805,
"base_cost_quote": 141.59499666,
"unrealized_pnl_exit_net": -5.37260014
},
{
"timestamp": "2025-02-08T23:59:00+00:00",
"base_asset_bal": 132.2,
"quote_asset_bal": 9862.872293805,
"total_value_mid": 9999.091173805,
"total_value_exit_net": 9998.989009645,
"total_value": 9999.091173805,
"base_cost_quote": 141.59499666,
"unrealized_pnl_exit_net": -5.47828082
},
{
"timestamp": "2025-02-09T23:59:00+00:00",
"base_asset_bal": 137.1,
"quote_asset_bal": 9857.8281543025,
"total_value_mid": 9999.0822843025,
"total_value_exit_net": 9998.976343705,
"total_value": 9999.0822843025,
"base_cost_quote": 146.6443108075,
"unrealized_pnl_exit_net": -5.496121405
},
{
"timestamp": "2025-02-10T23:59:00+00:00",
"base_asset_bal": 137.1,
"quote_asset_bal": 9857.828903145,
"total_value_mid": 9999.000773145,
"total_value_exit_net": 9998.8948942425,
"total_value": 9999.000773145,
"base_cost_quote": 146.648724115,
"unrealized_pnl_exit_net": -5.5827330175
},
{
"timestamp": "2025-02-11T23:59:00+00:00",
"base_asset_bal": 127.3,
"quote_asset_bal": 9867.961588645,
"total_value_mid": 9999.831658645,
"total_value_exit_net": 9999.7327560925,
"total_value": 9999.831658645,
"base_cost_quote": 136.531461855,
"unrealized_pnl_exit_net": -4.7602944075
},
{
"timestamp": "2025-02-12T23:59:00+00:00",
"base_asset_bal": 122.4,
"quote_asset_bal": 9873.0519836575,
"total_value_mid": 10000.2255836575,
"total_value_exit_net": 10000.1302034575,
"total_value": 10000.2255836575,
"base_cost_quote": 131.4615522725,
"unrealized_pnl_exit_net": -4.3833324725
},
{
"timestamp": "2025-02-13T23:59:00+00:00",
"base_asset_bal": 107.8,
"quote_asset_bal": 9888.3065631375,
"total_value_mid": 10001.0222431375,
"total_value_exit_net": 10000.9377063775,
"total_value": 10001.0222431375,
"base_cost_quote": 116.24343724,
"unrealized_pnl_exit_net": -3.612294
},
{
"timestamp": "2025-02-14T23:59:00+00:00",
"base_asset_bal": 103,
"quote_asset_bal": 9893.3272223775,
"total_value_mid": 10001.3227223775,
"total_value_exit_net": 10001.2417257525,
"total_value": 10001.3227223775,
"base_cost_quote": 111.23904676,
"unrealized_pnl_exit_net": -3.324543385
},
{
"timestamp": "2025-02-15T23:59:00+00:00",
"base_asset_bal": 103,
"quote_asset_bal": 9893.3272223775,
"total_value_mid": 10001.2403223775,
"total_value_exit_net": 10001.1593875525,
"total_value": 10001.2403223775,
"base_cost_quote": 111.23904676,
"unrealized_pnl_exit_net": -3.406881585
},
{
"timestamp": "2025-02-16T23:59:00+00:00",
"base_asset_bal": 103,
"quote_asset_bal": 9893.3272223775,
"total_value_mid": 10001.2712223775,
"total_value_exit_net": 10001.1902643775,
"total_value": 10001.2712223775,
"base_cost_quote": 111.23904676,
"unrealized_pnl_exit_net": -3.37600476
},
{
"timestamp": "2025-02-17T23:59:00+00:00",
"base_asset_bal": 107.8,
"quote_asset_bal": 9888.2868048975,
"total_value_mid": 10001.3366648975,
"total_value_exit_net": 10001.2518775025,
"total_value": 10001.3366648975,
"base_cost_quote": 116.27946424,
"unrealized_pnl_exit_net": -3.314391635
},
{
"timestamp": "2025-02-18T23:59:00+00:00",
"base_asset_bal": 117.4,
"quote_asset_bal": 9878.2429576575,
"total_value_mid": 10000.9376976575,
"total_value_exit_net": 10000.8456766025,
"total_value": 10000.9376976575,
"base_cost_quote": 126.32331148,
"unrealized_pnl_exit_net": -3.720592535
},
{
"timestamp": "2025-02-19T23:59:00+00:00",
"base_asset_bal": 122.2,
"quote_asset_bal": 9873.2348874975,
"total_value_mid": 10000.9094474975,
"total_value_exit_net": 10000.8136915775,
"total_value": 10000.9094474975,
"base_cost_quote": 131.3368288,
"unrealized_pnl_exit_net": -3.75802472
},
{
"timestamp": "2025-02-20T23:59:00+00:00",
"base_asset_bal": 103,
"quote_asset_bal": 9893.3476316175,
"total_value_mid": 10001.5697316175,
"total_value_exit_net": 10001.4885650425,
"total_value": 10001.5697316175,
"base_cost_quote": 111.2457718,
"unrealized_pnl_exit_net": -3.104838375
},
{
"timestamp": "2025-02-21T23:59:00+00:00",
"base_asset_bal": 107.8,
"quote_asset_bal": 9888.3148998975,
"total_value_mid": 10001.0305798975,
"total_value_exit_net": 10000.9460431375,
"total_value": 10001.0305798975,
"base_cost_quote": 116.27850352,
"unrealized_pnl_exit_net": -3.64736028
},
{
"timestamp": "2025-02-22T23:59:00+00:00",
"base_asset_bal": 107.8,
"quote_asset_bal": 9888.3148998975,
"total_value_mid": 10001.1168198975,
"total_value_exit_net": 10001.0322184575,
"total_value": 10001.1168198975,
"base_cost_quote": 116.27850352,
"unrealized_pnl_exit_net": -3.56118496
},
{
"timestamp": "2025-02-23T23:59:00+00:00",
"base_asset_bal": 93.4,
"quote_asset_bal": 9903.4750028175,
"total_value_mid": 10001.4609428175,
"total_value_exit_net": 10001.3874533625,
"total_value": 10001.4609428175,
"base_cost_quote": 101.13995812,
"unrealized_pnl_exit_net": -3.227507575
},
{
"timestamp": "2025-02-24T23:59:00+00:00",
"base_asset_bal": 112.6,
"quote_asset_bal": 9883.3043195775,
"total_value_mid": 10001.0388795775,
"total_value_exit_net": 10000.9505786575,
"total_value": 10001.0388795775,
"base_cost_quote": 121.31603884,
"unrealized_pnl_exit_net": -3.66977976
},
{
"timestamp": "2025-02-25T23:59:00+00:00",
"base_asset_bal": 98.2,
"quote_asset_bal": 9898.4273687775,
"total_value_mid": 10001.7632287775,
"total_value_exit_net": 10001.6857268825,
"total_value": 10001.7632287775,
"base_cost_quote": 106.2091972,
"unrealized_pnl_exit_net": -2.950839095
},
{
"timestamp": "2025-02-26T23:59:00+00:00",
"base_asset_bal": 103,
"quote_asset_bal": 9893.3880204975,
"total_value_mid": 10001.5792204975,
"total_value_exit_net": 10001.4980770975,
"total_value": 10001.5792204975,
"base_cost_quote": 111.25393792,
"unrealized_pnl_exit_net": -3.14388132
},
{
"timestamp": "2025-02-27T23:59:00+00:00",
"base_asset_bal": 127,
"quote_asset_bal": 9868.2824854575,
"total_value_mid": 10000.3624854575,
"total_value_exit_net": 10000.2634254575,
"total_value": 10000.3624854575,
"base_cost_quote": 136.35947296,
"unrealized_pnl_exit_net": -4.37853296
},
{
"timestamp": "2025-02-28T23:59:00+00:00",
"base_asset_bal": 141.7,
"quote_asset_bal": 9852.9969361925,
"total_value_mid": 10000.0106861925,
"total_value_exit_net": 9999.90042588,
"total_value": 10000.0106861925,
"base_cost_quote": 151.650112345,
"unrealized_pnl_exit_net": -4.7466226575
},
{
"timestamp": "2025-03-01T23:59:00+00:00",
"base_asset_bal": 141.7,
"quote_asset_bal": 9852.9969361925,
"total_value_mid": 9999.8123061925,
"total_value_exit_net": 9999.702194665,
"total_value": 9999.8123061925,
"base_cost_quote": 151.650112345,
"unrealized_pnl_exit_net": -4.9448538725
},
{
"timestamp": "2025-03-02T23:59:00+00:00",
"base_asset_bal": 136.8,
"quote_asset_bal": 9858.11108469,
"total_value_mid": 10000.43780469,
"total_value_exit_net": 10000.33105965,
"total_value": 10000.43780469,
"base_cost_quote": 146.5615687975,
"unrealized_pnl_exit_net": -4.3415938375
},
{
"timestamp": "2025-03-03T23:59:00+00:00",
"base_asset_bal": 112.6,
"quote_asset_bal": 9883.378910495,
"total_value_mid": 10001.451270495,
"total_value_exit_net": 10001.362716225,
"total_value": 10001.451270495,
"base_cost_quote": 121.3261264,
"unrealized_pnl_exit_net": -3.34232067
},
{
"timestamp": "2025-03-04T23:59:00+00:00",
"base_asset_bal": 88.6,
"quote_asset_bal": 9908.672651855,
"total_value_mid": 10002.756991855,
"total_value_exit_net": 10002.6864286,
"total_value": 10002.756991855,
"base_cost_quote": 96.08609056,
"unrealized_pnl_exit_net": -2.072313815
},
{
"timestamp": "2025-03-05T23:59:00+00:00",
"base_asset_bal": 46,
"quote_asset_bal": 9954.2521412625,
"total_value_mid": 10003.8861412625,
"total_value_exit_net": 10003.8489157625,
"total_value": 10003.8861412625,
"base_cost_quote": 50.5635642525,
"unrealized_pnl_exit_net": -0.9667897525
},
{
"timestamp": "2025-03-06T23:59:00+00:00",
"base_asset_bal": 50.7,
"quote_asset_bal": 9949.168727365,
"total_value_mid": 10003.828397365,
"total_value_exit_net": 10003.7874026125,
"total_value": 10003.828397365,
"base_cost_quote": 55.662655705,
"unrealized_pnl_exit_net": -1.0439804575
},
{
"timestamp": "2025-03-07T23:59:00+00:00",
"base_asset_bal": 46,
"quote_asset_bal": 9954.2379188275,
"total_value_mid": 10004.0697188275,
"total_value_exit_net": 10004.0323449775,
"total_value": 10004.0697188275,
"base_cost_quote": 50.626121135,
"unrealized_pnl_exit_net": -0.831694985
},
{
"timestamp": "2025-03-08T23:59:00+00:00",
"base_asset_bal": 46,
"quote_asset_bal": 9954.24577429,
"total_value_mid": 10004.04537429,
"total_value_exit_net": 10004.00802459,
"total_value": 10004.04537429,
"base_cost_quote": 50.6237693725,
"unrealized_pnl_exit_net": -0.8615190725
},
{
"timestamp": "2025-03-09T23:59:00+00:00",
"base_asset_bal": 46,
"quote_asset_bal": 9954.24577429,
"total_value_mid": 10004.20177429,
"total_value_exit_net": 10004.16430729,
"total_value": 10004.20177429,
"base_cost_quote": 50.6237693725,
"unrealized_pnl_exit_net": -0.7052363725
},
{
"timestamp": "2025-03-10T23:59:00+00:00",
"base_asset_bal": 46,
"quote_asset_bal": 9954.26972549,
"total_value_mid": 10004.12912549,
"total_value_exit_net": 10004.09173094,
"total_value": 10004.12912549,
"base_cost_quote": 50.6218879625,
"unrealized_pnl_exit_net": -0.7998825125
},
{
"timestamp": "2025-03-11T23:59:00+00:00",
"base_asset_bal": 45.8,
"quote_asset_bal": 9954.44148149,
"total_value_mid": 10004.42302149,
"total_value_exit_net": 10004.385535335,
"total_value": 10004.42302149,
"base_cost_quote": 50.4825435325,
"unrealized_pnl_exit_net": -0.5384896875
},
{
"timestamp": "2025-03-12T23:59:00+00:00",
"base_asset_bal": 55,
"quote_asset_bal": 9944.412698455,
"total_value_mid": 10004.263698455,
"total_value_exit_net": 10004.218810205,
"total_value": 10004.263698455,
"base_cost_quote": 60.5166834975,
"unrealized_pnl_exit_net": -0.7105717475
},
{
"timestamp": "2025-03-13T23:59:00+00:00",
"base_asset_bal": 64.3,
"quote_asset_bal": 9934.303965685,
"total_value_mid": 10004.088755685,
"total_value_exit_net": 10004.0364170925,
"total_value": 10004.088755685,
"base_cost_quote": 70.6309234925,
"unrealized_pnl_exit_net": -0.898472085
},
{
"timestamp": "2025-03-14T23:59:00+00:00",
"base_asset_bal": 59.6,
"quote_asset_bal": 9939.42660449,
"total_value_mid": 10004.22968449,
"total_value_exit_net": 10004.18108218,
"total_value": 10004.22968449,
"base_cost_quote": 65.5247767525,
"unrealized_pnl_exit_net": -0.7702990625
},
{
"timestamp": "2025-03-15T23:59:00+00:00",
"base_asset_bal": 59.6,
"quote_asset_bal": 9939.42660449,
"total_value_mid": 10004.19988449,
"total_value_exit_net": 10004.15130453,
"total_value": 10004.19988449,
"base_cost_quote": 65.5247767525,
"unrealized_pnl_exit_net": -0.8000767125
},
{
"timestamp": "2025-03-16T23:59:00+00:00",
"base_asset_bal": 59.6,
"quote_asset_bal": 9939.42660449,
"total_value_mid": 10004.25352449,
"total_value_exit_net": 10004.2049043,
"total_value": 10004.25352449,
"base_cost_quote": 65.5247767525,
"unrealized_pnl_exit_net": -0.7464769425
},
{
"timestamp": "2025-03-17T23:59:00+00:00",
"base_asset_bal": 9.4,
"quote_asset_bal": 9994.9545592075,
"total_value_mid": 10005.2165392075,
"total_value_exit_net": 10005.2088427225,
"total_value": 10005.2165392075,
"base_cost_quote": 10.08091502,
"unrealized_pnl_exit_net": 0.173368495
},
{
"timestamp": "2025-03-18T23:59:00+00:00",
"base_asset_bal": 14,
"quote_asset_bal": 9989.9212466825,
"total_value_mid": 10005.2344466825,
"total_value_exit_net": 10005.2229617825,
"total_value": 10005.2344466825,
"base_cost_quote": 15.124915185,
"unrealized_pnl_exit_net": 0.176799915
},
{
"timestamp": "2025-03-19T23:59:00+00:00",
"base_asset_bal": 23.2,
"quote_asset_bal": 9979.8938357125,
"total_value_mid": 10005.1980757125,
"total_value_exit_net": 10005.1790975325,
"total_value": 10005.1980757125,
"base_cost_quote": 25.157674115,
"unrealized_pnl_exit_net": 0.127587705
},
{
"timestamp": "2025-03-20T23:59:00+00:00",
"base_asset_bal": 32.6,
"quote_asset_bal": 9969.693301045,
"total_value_mid": 10005.080601045,
"total_value_exit_net": 10005.05406057,
"total_value": 10005.080601045,
"base_cost_quote": 35.3582087825,
"unrealized_pnl_exit_net": 0.0025507425
},
{
"timestamp": "2025-03-21T23:59:00+00:00",
"base_asset_bal": 37.3,
"quote_asset_bal": 9964.6017352325,
"total_value_mid": 10004.9528752325,
"total_value_exit_net": 10004.9226118775,
"total_value": 10004.9528752325,
"base_cost_quote": 40.449774595,
"unrealized_pnl_exit_net": -0.12889795
},
{
"timestamp": "2025-03-22T23:59:00+00:00",
"base_asset_bal": 37.3,
"quote_asset_bal": 9964.6017352325,
"total_value_mid": 10004.9454152325,
"total_value_exit_net": 10004.9151574725,
"total_value": 10004.9454152325,
"base_cost_quote": 40.449774595,
"unrealized_pnl_exit_net": -0.136352355
},
{
"timestamp": "2025-03-23T23:59:00+00:00",
"base_asset_bal": 37.3,
"quote_asset_bal": 9964.6017352325,
"total_value_mid": 10005.0125552325,
"total_value_exit_net": 10004.9822471175,
"total_value": 10005.0125552325,
"base_cost_quote": 40.449774595,
"unrealized_pnl_exit_net": -0.06926271
},
{
"timestamp": "2025-03-24T23:59:00+00:00",
"base_asset_bal": 42,
"quote_asset_bal": 9959.5219282325,
"total_value_mid": 10004.8735282325,
"total_value_exit_net": 10004.8395145325,
"total_value": 10004.8735282325,
"base_cost_quote": 45.529581595,
"unrealized_pnl_exit_net": -0.211995295
},
{
"timestamp": "2025-03-25T23:59:00+00:00",
"base_asset_bal": 18.9,
"quote_asset_bal": 9984.8058746925,
"total_value_mid": 10005.1933046925,
"total_value_exit_net": 10005.17801412,
"total_value": 10005.1933046925,
"base_cost_quote": 20.309320575,
"unrealized_pnl_exit_net": 0.0628188525
},
{
"timestamp": "2025-03-26T23:59:00+00:00",
"base_asset_bal": 28.3,
"quote_asset_bal": 9974.6754225475,
"total_value_mid": 10005.0526425475,
"total_value_exit_net": 10005.0298596325,
"total_value": 10005.0526425475,
"base_cost_quote": 30.43977272,
"unrealized_pnl_exit_net": -0.085335635
},
{
"timestamp": "2025-03-27T23:59:00+00:00",
"base_asset_bal": 18.9,
"quote_asset_bal": 9984.821158035,
"total_value_mid": 10005.235048035,
"total_value_exit_net": 10005.2197376175,
"total_value": 10005.235048035,
"base_cost_quote": 20.309320575,
"unrealized_pnl_exit_net": 0.0892590075
},
{
"timestamp": "2025-03-28T23:59:00+00:00",
"base_asset_bal": 14.2,
"quote_asset_bal": 9989.9039416625,
"total_value_mid": 10005.2754416625,
"total_value_exit_net": 10005.2639130375,
"total_value": 10005.2754416625,
"base_cost_quote": 15.2422130925,
"unrealized_pnl_exit_net": 0.1177582825
},
{
"timestamp": "2025-03-29T23:59:00+00:00",
"base_asset_bal": 14.2,
"quote_asset_bal": 9989.9039416625,
"total_value_mid": 10005.2612416625,
"total_value_exit_net": 10005.2497236875,
"total_value": 10005.2612416625,
"base_cost_quote": 15.2422130925,
"unrealized_pnl_exit_net": 0.1035689325
},
{
"timestamp": "2025-03-30T23:59:00+00:00",
"base_asset_bal": 14.2,
"quote_asset_bal": 9989.9039416625,
"total_value_mid": 10005.2669216625,
"total_value_exit_net": 10005.2553994275,
"total_value": 10005.2669216625,
"base_cost_quote": 15.2422130925,
"unrealized_pnl_exit_net": 0.1092446725
},
{
"timestamp": "2025-03-31T23:59:00+00:00",
"base_asset_bal": 9.5,
"quote_asset_bal": 9995.0116046225,
"total_value_mid": 10005.2934546225,
"total_value_exit_net": 10005.285743235,
"total_value": 10005.2934546225,
"base_cost_quote": 10.1511176325,
"unrealized_pnl_exit_net": 0.12302098
},
{
"timestamp": "2025-04-01T23:59:00+00:00",
"base_asset_bal": 23.6,
"quote_asset_bal": 9979.7608951625,
"total_value_mid": 10005.2394551625,
"total_value_exit_net": 10005.2203462425,
"total_value": 10005.2394551625,
"base_cost_quote": 25.4018270925,
"unrealized_pnl_exit_net": 0.0576239875
},
{
"timestamp": "2025-04-02T23:59:00+00:00",
"base_asset_bal": 9.4,
"quote_asset_bal": 9995.1651136425,
"total_value_mid": 10005.4158136425,
"total_value_exit_net": 10005.4081256175,
"total_value": 10005.4158136425,
"base_cost_quote": 10.074009845,
"unrealized_pnl_exit_net": 0.16900213
},
{
"timestamp": "2025-04-03T23:59:00+00:00",
"base_asset_bal": 18.5,
"quote_asset_bal": 9985.045610305,
"total_value_mid": 10005.478860305,
"total_value_exit_net": 10005.4635353675,
"total_value": 10005.478860305,
"base_cost_quote": 20.2725830425,
"unrealized_pnl_exit_net": 0.14534202
},
{
"timestamp": "2025-04-04T23:59:00+00:00",
"base_asset_bal": 46.1,
"quote_asset_bal": 9954.62533777,
"total_value_mid": 10005.17859777,
"total_value_exit_net": 10005.140682825,
"total_value": 10005.17859777,
"base_cost_quote": 50.7349927275,
"unrealized_pnl_exit_net": -0.2196476725
},
{
"timestamp": "2025-04-05T23:59:00+00:00",
"base_asset_bal": 46.1,
"quote_asset_bal": 9954.62533777,
"total_value_mid": 10005.20625777,
"total_value_exit_net": 10005.16832208,
"total_value": 10005.20625777,
"base_cost_quote": 50.7349927275,
"unrealized_pnl_exit_net": -0.1920084175
},
{
"timestamp": "2025-04-06T23:59:00+00:00",
"base_asset_bal": 41.5,
"quote_asset_bal": 9959.699381455,
"total_value_mid": 10005.341081455,
"total_value_exit_net": 10005.30685018,
"total_value": 10005.341081455,
"base_cost_quote": 45.6928339425,
"unrealized_pnl_exit_net": -0.0853652175
},
{
"timestamp": "2025-04-07T23:59:00+00:00",
"base_asset_bal": 55.3,
"quote_asset_bal": 9944.633516195,
"total_value_mid": 10004.971346195,
"total_value_exit_net": 10004.9260928225,
"total_value": 10004.971346195,
"base_cost_quote": 60.7958327025,
"unrealized_pnl_exit_net": -0.503256075
},
{
"timestamp": "2025-04-08T23:59:00+00:00",
"base_asset_bal": 46.1,
"quote_asset_bal": 9954.744829095,
"total_value_mid": 10005.376459095,
"total_value_exit_net": 10005.3384853725,
"total_value": 10005.376459095,
"base_cost_quote": 50.7271668625,
"unrealized_pnl_exit_net": -0.133510585
},
{
"timestamp": "2025-04-09T23:59:00+00:00",
"base_asset_bal": 46.1,
"quote_asset_bal": 9954.84097105,
"total_value_mid": 10005.32047105,
"total_value_exit_net": 10005.282611425,
"total_value": 10005.32047105,
"base_cost_quote": 50.7101340975,
"unrealized_pnl_exit_net": -0.2684937225
},
{
"timestamp": "2025-04-10T23:59:00+00:00",
"base_asset_bal": 4.8,
"quote_asset_bal": 10000.5940252975,
"total_value_mid": 10005.9978652975,
"total_value_exit_net": 10005.9938124175,
"total_value": 10005.9978652975,
"base_cost_quote": 5.055789,
"unrealized_pnl_exit_net": 0.34399812
},
{
"timestamp": "2025-04-11T23:59:00+00:00",
"base_asset_bal": 27,
"quote_asset_bal": 9975.4320971325,
"total_value_mid": 10006.1202971325,
"total_value_exit_net": 10006.0972809825,
"total_value": 10006.1202971325,
"base_cost_quote": 30.35711077,
"unrealized_pnl_exit_net": 0.30807308
},
{
"timestamp": "2025-04-12T23:59:00+00:00",
"base_asset_bal": 27,
"quote_asset_bal": 9975.4320971325,
"total_value_mid": 10006.0662971325,
"total_value_exit_net": 10006.0433214825,
"total_value": 10006.0662971325,
"base_cost_quote": 30.35711077,
"unrealized_pnl_exit_net": 0.25411358
},
{
"timestamp": "2025-04-13T23:59:00+00:00",
"base_asset_bal": 27,
"quote_asset_bal": 9975.4320971325,
"total_value_mid": 10006.0446971325,
"total_value_exit_net": 10006.0217376825,
"total_value": 10006.0446971325,
"base_cost_quote": 30.35711077,
"unrealized_pnl_exit_net": 0.23252978
},
{
"timestamp": "2025-04-14T23:59:00+00:00",
"base_asset_bal": 27,
"quote_asset_bal": 9975.475723035,
"total_value_mid": 10006.069423035,
"total_value_exit_net": 10006.04647776,
"total_value": 10006.069423035,
"base_cost_quote": 30.3615240775,
"unrealized_pnl_exit_net": 0.2092306475
},
{
"timestamp": "2025-04-15T23:59:00+00:00",
"base_asset_bal": 40.5,
"quote_asset_bal": 9960.212888985,
"total_value_mid": 10005.925238985,
"total_value_exit_net": 10005.8909547225,
"total_value": 10005.925238985,
"base_cost_quote": 45.6351707275,
"unrealized_pnl_exit_net": 0.04289501
},
{
"timestamp": "2025-04-16T23:59:00+00:00",
"base_asset_bal": 13.6,
"quote_asset_bal": 9990.7595626125,
"total_value_mid": 10006.2554026125,
"total_value_exit_net": 10006.2437807325,
"total_value": 10006.2554026125,
"base_cost_quote": 15.1261361,
"unrealized_pnl_exit_net": 0.35808202
},
{
"timestamp": "2025-04-17T23:59:00+00:00",
"base_asset_bal": 18.1,
"quote_asset_bal": 9985.6718745175,
"total_value_mid": 10006.2497645175,
"total_value_exit_net": 10006.2343311,
"total_value": 10006.2497645175,
"base_cost_quote": 20.224296855,
"unrealized_pnl_exit_net": 0.3381597275
},
{
"timestamp": "2025-04-18T23:59:00+00:00",
"base_asset_bal": 18,
"quote_asset_bal": 9985.777225705,
"total_value_mid": 10006.272025705,
"total_value_exit_net": 10006.256654605,
"total_value": 10006.272025705,
"base_cost_quote": 20.12432193,
"unrealized_pnl_exit_net": 0.35510697
},
{
"timestamp": "2025-04-19T23:59:00+00:00",
"base_asset_bal": 13.6,
"quote_asset_bal": 9990.788536735,
"total_value_mid": 10006.287096735,
"total_value_exit_net": 10006.275472815,
"total_value": 10006.287096735,
"base_cost_quote": 15.12349412,
"unrealized_pnl_exit_net": 0.36344196
},
{
"timestamp": "2025-04-20T23:59:00+00:00",
"base_asset_bal": 22.4,
"quote_asset_bal": 9980.714942655,
"total_value_mid": 10006.351742655,
"total_value_exit_net": 10006.332515055,
"total_value": 10006.351742655,
"base_cost_quote": 25.21277541,
"unrealized_pnl_exit_net": 0.40479699
},
{
"timestamp": "2025-04-21T23:59:00+00:00",
"base_asset_bal": 26.8,
"quote_asset_bal": 9975.524895815,
"total_value_mid": 10006.382415815,
"total_value_exit_net": 10006.359272675,
"total_value": 10006.382415815,
"base_cost_quote": 30.43905218,
"unrealized_pnl_exit_net": 0.39532468
},
{
"timestamp": "2025-04-22T23:59:00+00:00",
"base_asset_bal": 48.8,
"quote_asset_bal": 9950.4228381575,
"total_value_mid": 10005.8596381575,
"total_value_exit_net": 10005.8180605575,
"total_value": 10005.8596381575,
"base_cost_quote": 55.55679637,
"unrealized_pnl_exit_net": -0.16157397
},
{
"timestamp": "2025-04-23T23:59:00+00:00",
"base_asset_bal": 57.9,
"quote_asset_bal": 9940.13456421,
"total_value_mid": 10005.70631421,
"total_value_exit_net": 10005.6571353975,
"total_value": 10005.70631421,
"base_cost_quote": 65.8715566425,
"unrealized_pnl_exit_net": -0.348985455
},
{
"timestamp": "2025-04-24T23:59:00+00:00",
"base_asset_bal": 53.3,
"quote_asset_bal": 9945.3417044825,
"total_value_mid": 10005.9384744825,
"total_value_exit_net": 10005.893026905,
"total_value": 10005.9384744825,
"base_cost_quote": 60.6805863325,
"unrealized_pnl_exit_net": -0.12926391
},
{
"timestamp": "2025-04-25T23:59:00+00:00",
"base_asset_bal": 57.8,
"quote_asset_bal": 9940.2411560825,
"total_value_mid": 10005.8557160825,
"total_value_exit_net": 10005.8065051625,
"total_value": 10005.8557160825,
"base_cost_quote": 65.7919169575,
"unrealized_pnl_exit_net": -0.2265678775
},
{
"timestamp": "2025-04-26T23:59:00+00:00",
"base_asset_bal": 57.8,
"quote_asset_bal": 9940.2411560825,
"total_value_mid": 10005.8557160825,
"total_value_exit_net": 10005.8065051625,
"total_value": 10005.8557160825,
"base_cost_quote": 65.7919169575,
"unrealized_pnl_exit_net": -0.2265678775
},
{
"timestamp": "2025-04-27T23:59:00+00:00",
"base_asset_bal": 57.8,
"quote_asset_bal": 9940.2411560825,
"total_value_mid": 10005.7690160825,
"total_value_exit_net": 10005.7198701875,
"total_value": 10005.7690160825,
"base_cost_quote": 65.7919169575,
"unrealized_pnl_exit_net": -0.3132028525
},
{
"timestamp": "2025-04-28T23:59:00+00:00",
"base_asset_bal": 40,
"quote_asset_bal": 9960.51538284,
"total_value_mid": 10006.11938284,
"total_value_exit_net": 10006.08517984,
"total_value": 10006.11938284,
"base_cost_quote": 45.5441325,
"unrealized_pnl_exit_net": 0.0256645
},
{
"timestamp": "2025-04-29T23:59:00+00:00",
"base_asset_bal": 48.8,
"quote_asset_bal": 9950.48285979,
"total_value_mid": 10006.01237979,
"total_value_exit_net": 10005.97073265,
"total_value": 10006.01237979,
"base_cost_quote": 55.58189518,
"unrealized_pnl_exit_net": -0.09402232
},
{
"timestamp": "2025-04-30T23:59:00+00:00",
"base_asset_bal": 66.7,
"quote_asset_bal": 9930.156609485,
"total_value_mid": 10005.681019485,
"total_value_exit_net": 10005.6243761775,
"total_value": 10005.681019485,
"base_cost_quote": 75.913392375,
"unrealized_pnl_exit_net": -0.4456256825
},
{
"timestamp": "2025-05-01T23:59:00+00:00",
"base_asset_bal": 80.2,
"quote_asset_bal": 9914.899632635,
"total_value_mid": 10005.525632635,
"total_value_exit_net": 10005.457663135,
"total_value": 10005.525632635,
"base_cost_quote": 91.1757805875,
"unrealized_pnl_exit_net": -0.6177500875
},
{
"timestamp": "2025-05-02T23:59:00+00:00",
"base_asset_bal": 62.2,
"quote_asset_bal": 9935.307580385,
"total_value_mid": 10005.518940385,
"total_value_exit_net": 10005.466281865,
"total_value": 10005.518940385,
"base_cost_quote": 70.80566445,
"unrealized_pnl_exit_net": -0.64696297
},
{
"timestamp": "2025-05-03T23:59:00+00:00",
"base_asset_bal": 62.2,
"quote_asset_bal": 9935.307580385,
"total_value_mid": 10005.487840385,
"total_value_exit_net": 10005.43520519,
"total_value": 10005.487840385,
"base_cost_quote": 70.80566445,
"unrealized_pnl_exit_net": -0.678039645
},
{
"timestamp": "2025-05-04T23:59:00+00:00",
"base_asset_bal": 66.7,
"quote_asset_bal": 9930.2219189975,
"total_value_mid": 10005.6662889975,
"total_value_exit_net": 10005.60970572,
"total_value": 10005.6662889975,
"base_cost_quote": 75.8913258375,
"unrealized_pnl_exit_net": -0.503539115
},
{
"timestamp": "2025-05-05T23:59:00+00:00",
"base_asset_bal": 66.7,
"quote_asset_bal": 9930.225990035,
"total_value_mid": 10005.650350035,
"total_value_exit_net": 10005.593781765,
"total_value": 10005.650350035,
"base_cost_quote": 75.8980809,
"unrealized_pnl_exit_net": -0.53028917
},
{
"timestamp": "2025-05-06T23:59:00+00:00",
"base_asset_bal": 62.2,
"quote_asset_bal": 9935.34225761,
"total_value_mid": 10005.87083761,
"total_value_exit_net": 10005.817941175,
"total_value": 10005.87083761,
"base_cost_quote": 70.8088168125,
"unrealized_pnl_exit_net": -0.3331332475
},
{
"timestamp": "2025-05-07T23:59:00+00:00",
"base_asset_bal": 66.7,
"quote_asset_bal": 9930.2561295725,
"total_value_mid": 10005.6538095725,
"total_value_exit_net": 10005.5972613125,
"total_value": 10005.6538095725,
"base_cost_quote": 75.9003325875,
"unrealized_pnl_exit_net": -0.5592008475
},
{
"timestamp": "2025-05-08T23:59:00+00:00",
"base_asset_bal": 80.2,
"quote_asset_bal": 9915.03929801,
"total_value_mid": 10005.20815801,
"total_value_exit_net": 10005.140531365,
"total_value": 10005.20815801,
"base_cost_quote": 91.1334488625,
"unrealized_pnl_exit_net": -1.0322155075
},
{
"timestamp": "2025-05-09T23:59:00+00:00",
"base_asset_bal": 75.7,
"quote_asset_bal": 9920.11248191,
"total_value_mid": 10005.35068191,
"total_value_exit_net": 10005.28675326,
"total_value": 10005.35068191,
"base_cost_quote": 86.076609075,
"unrealized_pnl_exit_net": -0.902337725
},
{
"timestamp": "2025-05-10T23:59:00+00:00",
"base_asset_bal": 75.7,
"quote_asset_bal": 9920.137803635,
"total_value_mid": 10005.428993635,
"total_value_exit_net": 10005.3650252425,
"total_value": 10005.428993635,
"base_cost_quote": 86.073006375,
"unrealized_pnl_exit_net": -0.8457847675
},
{
"timestamp": "2025-05-11T23:59:00+00:00",
"base_asset_bal": 80.2,
"quote_asset_bal": 9915.07518011,
"total_value_mid": 10005.40444011,
"total_value_exit_net": 10005.336693165,
"total_value": 10005.40444011,
"base_cost_quote": 91.14650865,
"unrealized_pnl_exit_net": -0.884995595
},
{
"timestamp": "2025-05-12T23:59:00+00:00",
"base_asset_bal": 116.4,
"quote_asset_bal": 9874.6489586675,
"total_value_mid": 10003.8762386675,
"total_value_exit_net": 10003.7793182075,
"total_value": 10003.8762386675,
"base_cost_quote": 131.5887075675,
"unrealized_pnl_exit_net": -2.4583480275
},
{
"timestamp": "2025-05-13T23:59:00+00:00",
"base_asset_bal": 93.7,
"quote_asset_bal": 9899.9543653675,
"total_value_mid": 10004.7578153675,
"total_value_exit_net": 10004.67921278,
"total_value": 10004.7578153675,
"base_cost_quote": 106.3089219375,
"unrealized_pnl_exit_net": -1.584074525
},
{
"timestamp": "2025-05-14T23:59:00+00:00",
"base_asset_bal": 98.2,
"quote_asset_bal": 9894.914788705,
"total_value_mid": 10004.653288705,
"total_value_exit_net": 10004.57098483,
"total_value": 10004.653288705,
"base_cost_quote": 111.3590066625,
"unrealized_pnl_exit_net": -1.7028105375
},
{
"timestamp": "2025-05-15T23:59:00+00:00",
"base_asset_bal": 102.7,
"quote_asset_bal": 9889.885959505,
"total_value_mid": 10004.745639505,
"total_value_exit_net": 10004.659494745,
"total_value": 10004.745639505,
"base_cost_quote": 116.3928792375,
"unrealized_pnl_exit_net": -1.6193439975
},
{
"timestamp": "2025-05-16T23:59:00+00:00",
"base_asset_bal": 107.2,
"quote_asset_bal": 9884.88054988,
"total_value_mid": 10004.47286988,
"total_value_exit_net": 10004.38317564,
"total_value": 10004.47286988,
"base_cost_quote": 121.4033342625,
"unrealized_pnl_exit_net": -1.9007085025
},
{
"timestamp": "2025-05-17T23:59:00+00:00",
"base_asset_bal": 107.2,
"quote_asset_bal": 9884.88054988,
"total_value_mid": 10004.41926988,
"total_value_exit_net": 10004.32961584,
"total_value": 10004.41926988,
"base_cost_quote": 121.4033342625,
"unrealized_pnl_exit_net": -1.9542683025
},
{
"timestamp": "2025-05-18T23:59:00+00:00",
"base_asset_bal": 102.7,
"quote_asset_bal": 9889.90023013,
"total_value_mid": 10004.78045013,
"total_value_exit_net": 10004.694289965,
"total_value": 10004.78045013,
"base_cost_quote": 116.3937799125,
"unrealized_pnl_exit_net": -1.5997200775
},
{
"timestamp": "2025-05-19T23:59:00+00:00",
"base_asset_bal": 89.2,
"quote_asset_bal": 9905.0328300175,
"total_value_mid": 10005.2401100175,
"total_value_exit_net": 10005.1649545575,
"total_value": 10005.2401100175,
"base_cost_quote": 101.2876588125,
"unrealized_pnl_exit_net": -1.1555342725
},
{
"timestamp": "2025-05-20T23:59:00+00:00",
"base_asset_bal": 80.2,
"quote_asset_bal": 9915.1718200675,
"total_value_mid": 10005.6935600675,
"total_value_exit_net": 10005.6256687625,
"total_value": 10005.6935600675,
"base_cost_quote": 91.1595684375,
"unrealized_pnl_exit_net": -0.7057197425
},
{
"timestamp": "2025-05-21T23:59:00+00:00",
"base_asset_bal": 62.2,
"quote_asset_bal": 9935.5433299675,
"total_value_mid": 10006.0532499675,
"total_value_exit_net": 10006.0003675275,
"total_value": 10006.0532499675,
"base_cost_quote": 70.8097174875,
"unrealized_pnl_exit_net": -0.3526799275
},
{
"timestamp": "2025-05-22T23:59:00+00:00",
"base_asset_bal": 71.2,
"quote_asset_bal": 9925.42867378,
"total_value_mid": 10005.83483378,
"total_value_exit_net": 10005.77452916,
"total_value": 10005.83483378,
"base_cost_quote": 80.9405098875,
"unrealized_pnl_exit_net": -0.5946545075
},
{
"timestamp": "2025-05-23T23:59:00+00:00",
"base_asset_bal": 62.2,
"quote_asset_bal": 9935.590552855,
"total_value_mid": 10006.231092855,
"total_value_exit_net": 10006.17811245,
"total_value": 10006.231092855,
"base_cost_quote": 70.81647255,
"unrealized_pnl_exit_net": -0.228912955
},
{
"timestamp": "2025-05-24T23:59:00+00:00",
"base_asset_bal": 62.2,
"quote_asset_bal": 9935.590552855,
"total_value_mid": 10006.187552855,
"total_value_exit_net": 10006.134605105,
"total_value": 10006.187552855,
"base_cost_quote": 70.81647255,
"unrealized_pnl_exit_net": -0.2724203
},
{
"timestamp": "2025-05-25T23:59:00+00:00",
"base_asset_bal": 62.2,
"quote_asset_bal": 9935.590552855,
"total_value_mid": 10006.274632855,
"total_value_exit_net": 10006.221619795,
"total_value": 10006.274632855,
"base_cost_quote": 70.81647255,
"unrealized_pnl_exit_net": -0.18540561
},
{
"timestamp": "2025-05-26T23:59:00+00:00",
"base_asset_bal": 53.2,
"quote_asset_bal": 9945.83061127,
"total_value_mid": 10006.39881127,
"total_value_exit_net": 10006.35338512,
"total_value": 10006.39881127,
"base_cost_quote": 60.59241025,
"unrealized_pnl_exit_net": -0.0696364
},
{
"timestamp": "2025-05-27T23:59:00+00:00",
"base_asset_bal": 62.2,
"quote_asset_bal": 9935.612453395,
"total_value_mid": 10006.116153395,
"total_value_exit_net": 10006.06327562,
"total_value": 10006.116153395,
"base_cost_quote": 70.810568125,
"unrealized_pnl_exit_net": -0.3597459
},
{
"timestamp": "2025-05-28T23:59:00+00:00",
"base_asset_bal": 84.7,
"quote_asset_bal": 9910.21251772,
"total_value_mid": 10005.29673772,
"total_value_exit_net": 10005.225424555,
"total_value": 10005.29673772,
"base_cost_quote": 96.2105038,
"unrealized_pnl_exit_net": -1.197596965
},
{
"timestamp": "2025-05-29T23:59:00+00:00",
"base_asset_bal": 62.2,
"quote_asset_bal": 9935.674693795,
"total_value_mid": 10006.383653795,
"total_value_exit_net": 10006.330622075,
"total_value": 10006.383653795,
"base_cost_quote": 70.78084585,
"unrealized_pnl_exit_net": -0.12491757
},
{
"timestamp": "2025-05-30T23:59:00+00:00",
"base_asset_bal": 66.7,
"quote_asset_bal": 9930.5710189075,
"total_value_mid": 10006.1754689075,
"total_value_exit_net": 10006.11876557,
"total_value": 10006.1754689075,
"base_cost_quote": 75.8845207375,
"unrealized_pnl_exit_net": -0.336774075
},
{
"timestamp": "2025-05-31T23:59:00+00:00",
"base_asset_bal": 66.7,
"quote_asset_bal": 9930.5710189075,
"total_value_mid": 10006.1087689075,
"total_value_exit_net": 10006.052115595,
"total_value": 10006.1087689075,
"base_cost_quote": 75.8845207375,
"unrealized_pnl_exit_net": -0.40342405
},
{
"timestamp": "2025-06-01T23:59:00+00:00",
"base_asset_bal": 66.7,
"quote_asset_bal": 9930.5710189075,
"total_value_mid": 10006.2021489075,
"total_value_exit_net": 10006.14542556,
"total_value": 10006.2021489075,
"base_cost_quote": 75.8845207375,
"unrealized_pnl_exit_net": -0.310114085
},
{
"timestamp": "2025-06-02T23:59:00+00:00",
"base_asset_bal": 44.5,
"quote_asset_bal": 9955.86256601,
"total_value_mid": 10006.80171601,
"total_value_exit_net": 10006.7635116475,
"total_value": 10006.80171601,
"base_cost_quote": 50.619436125,
"unrealized_pnl_exit_net": 0.2815095125
},
{
"timestamp": "2025-06-03T23:59:00+00:00",
"base_asset_bal": 53.3,
"quote_asset_bal": 9945.83184861,
"total_value_mid": 10006.46592861,
"total_value_exit_net": 10006.42045305,
"total_value": 10006.46592861,
"base_cost_quote": 60.650153525,
"unrealized_pnl_exit_net": -0.061549085
},
{
"timestamp": "2025-06-04T23:59:00+00:00",
"base_asset_bal": 48.9,
"quote_asset_bal": 9950.84932162,
"total_value_mid": 10006.65889162,
"total_value_exit_net": 10006.6170344425,
"total_value": 10006.65889162,
"base_cost_quote": 55.643161095,
"unrealized_pnl_exit_net": 0.1245517275
},
{
"timestamp": "2025-06-05T23:59:00+00:00",
"base_asset_bal": 40.1,
"quote_asset_bal": 9960.91944795,
"total_value_mid": 10006.79785795,
"total_value_exit_net": 10006.7634491425,
"total_value": 10006.79785795,
"base_cost_quote": 45.588665875,
"unrealized_pnl_exit_net": 0.2553353175
},
{
"timestamp": "2025-06-06T23:59:00+00:00",
"base_asset_bal": 57.7,
"quote_asset_bal": 9940.83419562,
"total_value_mid": 10006.52564562,
"total_value_exit_net": 10006.4763770325,
"total_value": 10006.52564562,
"base_cost_quote": 65.679162455,
"unrealized_pnl_exit_net": -0.0369810425
},
{
"timestamp": "2025-06-07T23:59:00+00:00",
"base_asset_bal": 57.7,
"quote_asset_bal": 9940.83419562,
"total_value_mid": 10006.56026562,
"total_value_exit_net": 10006.5109710675,
"total_value": 10006.56026562,
"base_cost_quote": 65.679162455,
"unrealized_pnl_exit_net": -0.0023870075
},
{
"timestamp": "2025-06-08T23:59:00+00:00",
"base_asset_bal": 57.7,
"quote_asset_bal": 9940.83419562,
"total_value_mid": 10006.61796562,
"total_value_exit_net": 10006.5686277925,
"total_value": 10006.61796562,
"base_cost_quote": 65.679162455,
"unrealized_pnl_exit_net": 0.0552697175
},
{
"timestamp": "2025-06-09T23:59:00+00:00",
"base_asset_bal": 48.9,
"quote_asset_bal": 9950.88368716,
"total_value_mid": 10006.76660716,
"total_value_exit_net": 10006.72469497,
"total_value": 10006.76660716,
"base_cost_quote": 55.645362745,
"unrealized_pnl_exit_net": 0.195645065
},
{
"timestamp": "2025-06-10T23:59:00+00:00",
"base_asset_bal": 44.5,
"quote_asset_bal": 9955.92485538,
"total_value_mid": 10006.82395538,
"total_value_exit_net": 10006.785781055,
"total_value": 10006.82395538,
"base_cost_quote": 50.619876455,
"unrealized_pnl_exit_net": 0.24104922
},
{
"timestamp": "2025-06-11T23:59:00+00:00",
"base_asset_bal": 31.3,
"quote_asset_bal": 9971.05609843,
"total_value_mid": 10007.06987843,
"total_value_exit_net": 10007.042868095,
"total_value": 10007.06987843,
"base_cost_quote": 35.504228215,
"unrealized_pnl_exit_net": 0.48254145
},
{
"timestamp": "2025-06-12T23:59:00+00:00",
"base_asset_bal": 26.9,
"quote_asset_bal": 9976.04707013,
"total_value_mid": 10007.22955013,
"total_value_exit_net": 10007.20616327,
"total_value": 10007.22955013,
"base_cost_quote": 30.549194725,
"unrealized_pnl_exit_net": 0.609898415
},
{
"timestamp": "2025-06-13T23:59:00+00:00",
"base_asset_bal": 35.7,
"quote_asset_bal": 9965.89826608,
"total_value_mid": 10007.09606608,
"total_value_exit_net": 10007.06516773,
"total_value": 10007.09606608,
"base_cost_quote": 40.718616075,
"unrealized_pnl_exit_net": 0.448285575
},
{
"timestamp": "2025-06-14T23:59:00+00:00",
"base_asset_bal": 35.7,
"quote_asset_bal": 9965.89826608,
"total_value_mid": 10007.08535608,
"total_value_exit_net": 10007.0544657625,
"total_value": 10007.08535608,
"base_cost_quote": 40.718616075,
"unrealized_pnl_exit_net": 0.4375836075
},
{
"timestamp": "2025-06-15T23:59:00+00:00",
"base_asset_bal": 35.7,
"quote_asset_bal": 9965.89826608,
"total_value_mid": 10007.09606608,
"total_value_exit_net": 10007.06516773,
"total_value": 10007.09606608,
"base_cost_quote": 40.718616075,
"unrealized_pnl_exit_net": 0.448285575
},
{
"timestamp": "2025-06-16T23:59:00+00:00",
"base_asset_bal": 22.5,
"quote_asset_bal": 9981.17855726,
"total_value_mid": 10007.16605726,
"total_value_exit_net": 10007.146566635,
"total_value": 10007.16605726,
"base_cost_quote": 25.453695965,
"unrealized_pnl_exit_net": 0.51431341
},
{
"timestamp": "2025-06-17T23:59:00+00:00",
"base_asset_bal": 40.1,
"quote_asset_bal": 9960.84279687,
"total_value_mid": 10006.90566687,
"total_value_exit_net": 10006.8711197175,
"total_value": 10006.90566687,
"base_cost_quote": 45.789456355,
"unrealized_pnl_exit_net": 0.2388664925
},
{
"timestamp": "2025-06-18T23:59:00+00:00",
"base_asset_bal": 48.9,
"quote_asset_bal": 9950.72609555,
"total_value_mid": 10006.83884555,
"total_value_exit_net": 10006.7967609875,
"total_value": 10006.83884555,
"base_cost_quote": 55.911322065,
"unrealized_pnl_exit_net": 0.1593433725
},
{
"timestamp": "2025-06-19T23:59:00+00:00",
"base_asset_bal": 48.9,
"quote_asset_bal": 9950.73072842,
"total_value_mid": 10007.04396842,
"total_value_exit_net": 10007.00173349,
"total_value": 10007.04396842,
"base_cost_quote": 55.917046355,
"unrealized_pnl_exit_net": 0.353958715
},
{
"timestamp": "2025-06-20T23:59:00+00:00",
"base_asset_bal": 40.1,
"quote_asset_bal": 9960.86863928,
"total_value_mid": 10007.01972928,
"total_value_exit_net": 10006.9851159625,
"total_value": 10007.01972928,
"base_cost_quote": 45.789456355,
"unrealized_pnl_exit_net": 0.3270203275
},
{
"timestamp": "2025-06-21T23:59:00+00:00",
"base_asset_bal": 40.1,
"quote_asset_bal": 9960.86863928,
"total_value_mid": 10007.01972928,
"total_value_exit_net": 10006.9851159625,
"total_value": 10007.01972928,
"base_cost_quote": 45.789456355,
"unrealized_pnl_exit_net": 0.3270203275
},
{
"timestamp": "2025-06-22T23:59:00+00:00",
"base_asset_bal": 48.9,
"quote_asset_bal": 9950.7519538,
"total_value_mid": 10006.9722838,
"total_value_exit_net": 10006.9301185525,
"total_value": 10006.9722838,
"base_cost_quote": 55.911322065,
"unrealized_pnl_exit_net": 0.2668426875
},
{
"timestamp": "2025-06-23T23:59:00+00:00",
"base_asset_bal": 31.3,
"quote_asset_bal": 9971.09484549,
"total_value_mid": 10007.36528549,
"total_value_exit_net": 10007.33808266,
"total_value": 10007.36528549,
"base_cost_quote": 35.599339495,
"unrealized_pnl_exit_net": 0.643897675
},
{
"timestamp": "2025-06-24T23:59:00+00:00",
"base_asset_bal": 18.1,
"quote_asset_bal": 9986.41470697,
"total_value_mid": 10007.41975697,
"total_value_exit_net": 10007.4040031825,
"total_value": 10007.41975697,
"base_cost_quote": 20.295230015,
"unrealized_pnl_exit_net": 0.6940661975
},
{
"timestamp": "2025-06-25T23:59:00+00:00",
"base_asset_bal": 31,
"quote_asset_bal": 9971.374935595,
"total_value_mid": 10007.573635595,
"total_value_exit_net": 10007.54648657,
"total_value": 10007.573635595,
"base_cost_quote": 35.33500139,
"unrealized_pnl_exit_net": 0.836549585
},
{
"timestamp": "2025-06-26T23:59:00+00:00",
"base_asset_bal": 35.9,
"quote_asset_bal": 9965.6155148625,
"total_value_mid": 10007.5790248625,
"total_value_exit_net": 10007.54755223,
"total_value": 10007.5790248625,
"base_cost_quote": 40.4244255975,
"unrealized_pnl_exit_net": 1.50761177
},
{
"timestamp": "2025-06-27T23:59:00+00:00",
"base_asset_bal": 36.1,
"quote_asset_bal": 9965.3900784475,
"total_value_mid": 10007.6559584475,
"total_value_exit_net": 10007.6242590375,
"total_value": 10007.6559584475,
"base_cost_quote": 40.4261468875,
"unrealized_pnl_exit_net": 1.8080337025
},
{
"timestamp": "2025-06-28T23:59:00+00:00",
"base_asset_bal": 36.1,
"quote_asset_bal": 9965.3900784475,
"total_value_mid": 10007.6703984475,
"total_value_exit_net": 10007.6386882075,
"total_value": 10007.6703984475,
"base_cost_quote": 40.4261468875,
"unrealized_pnl_exit_net": 1.8224628725
},
{
"timestamp": "2025-06-29T23:59:00+00:00",
"base_asset_bal": 31.9,
"quote_asset_bal": 9970.3117244425,
"total_value_mid": 10007.7208544425,
"total_value_exit_net": 10007.692797595,
"total_value": 10007.7208544425,
"base_cost_quote": 35.392664605,
"unrealized_pnl_exit_net": 1.9884085475
},
{
"timestamp": "2025-06-30T23:59:00+00:00",
"base_asset_bal": 32.2,
"quote_asset_bal": 9969.9319600175,
"total_value_mid": 10007.8764400175,
"total_value_exit_net": 10007.8479816575,
"total_value": 10007.8764400175,
"base_cost_quote": 35.435696855,
"unrealized_pnl_exit_net": 2.480324785
},
{
"timestamp": "2025-07-01T23:59:00+00:00",
"base_asset_bal": 36.8,
"quote_asset_bal": 9964.5011590175,
"total_value_mid": 10007.9214790175,
"total_value_exit_net": 10007.8889137775,
"total_value": 10007.9214790175,
"base_cost_quote": 40.5285636425,
"unrealized_pnl_exit_net": 2.8591911175
},
{
"timestamp": "2025-07-02T23:59:00+00:00",
"base_asset_bal": 36.9,
"quote_asset_bal": 9964.3887163925,
"total_value_mid": 10007.9270263925,
"total_value_exit_net": 10007.89437266,
"total_value": 10007.9270263925,
"base_cost_quote": 40.5285636425,
"unrealized_pnl_exit_net": 2.977092625
},
{
"timestamp": "2025-07-03T23:59:00+00:00",
"base_asset_bal": 45.7,
"quote_asset_bal": 9954.0448565575,
"total_value_mid": 10007.8063365575,
"total_value_exit_net": 10007.7660154475,
"total_value": 10007.8063365575,
"base_cost_quote": 50.6480275525,
"unrealized_pnl_exit_net": 3.0731313375
},
{
"timestamp": "2025-07-04T23:59:00+00:00",
"base_asset_bal": 45.7,
"quote_asset_bal": 9954.0448565575,
"total_value_mid": 10007.8017665575,
"total_value_exit_net": 10007.761448875,
"total_value": 10007.8017665575,
"base_cost_quote": 50.6480275525,
"unrealized_pnl_exit_net": 3.068564765
},
{
"timestamp": "2025-07-05T23:59:00+00:00",
"base_asset_bal": 45.7,
"quote_asset_bal": 9954.0448565575,
"total_value_mid": 10007.8063365575,
"total_value_exit_net": 10007.7660154475,
"total_value": 10007.8063365575,
"base_cost_quote": 50.6480275525,
"unrealized_pnl_exit_net": 3.0731313375
},
{
"timestamp": "2025-07-06T23:59:00+00:00",
"base_asset_bal": 45.7,
"quote_asset_bal": 9954.0448565575,
"total_value_mid": 10007.8611765575,
"total_value_exit_net": 10007.8208143175,
"total_value": 10007.8611765575,
"base_cost_quote": 50.6480275525,
"unrealized_pnl_exit_net": 3.1279302075
},
{
"timestamp": "2025-07-07T23:59:00+00:00",
"base_asset_bal": 50.2,
"quote_asset_bal": 9948.7853953475,
"total_value_mid": 10007.7001153475,
"total_value_exit_net": 10007.6559293075,
"total_value": 10007.7001153475,
"base_cost_quote": 55.683231125,
"unrealized_pnl_exit_net": 3.187302835
},
{
"timestamp": "2025-07-08T23:59:00+00:00",
"base_asset_bal": 58.9,
"quote_asset_bal": 9938.5861353125,
"total_value_mid": 10007.6228253125,
"total_value_exit_net": 10007.571047795,
"total_value": 10007.6228253125,
"base_cost_quote": 65.7704208475,
"unrealized_pnl_exit_net": 3.214491635
},
{
"timestamp": "2025-07-09T23:59:00+00:00",
"base_asset_bal": 54.7,
"quote_asset_bal": 9943.5090403625,
"total_value_mid": 10007.7104303625,
"total_value_exit_net": 10007.66227932,
"total_value": 10007.7104303625,
"base_cost_quote": 60.7356475975,
"unrealized_pnl_exit_net": 3.41759136
},
{
"timestamp": "2025-07-10T23:59:00+00:00",
"base_asset_bal": 38.8,
"quote_asset_bal": 9962.2763399,
"total_value_mid": 10008.0176599,
"total_value_exit_net": 10007.98335391,
"total_value": 10008.0176599,
"base_cost_quote": 40.508338485,
"unrealized_pnl_exit_net": 5.198675525
},
{
"timestamp": "2025-07-11T23:59:00+00:00",
"base_asset_bal": 43.9,
"quote_asset_bal": 9956.26771247,
"total_value_mid": 10007.85460247,
"total_value_exit_net": 10007.8159123025,
"total_value": 10007.85460247,
"base_cost_quote": 45.6218607525,
"unrealized_pnl_exit_net": 5.92633908
},
{
"timestamp": "2025-07-12T23:59:00+00:00",
"base_asset_bal": 39.8,
"quote_asset_bal": 9961.0791892875,
"total_value_mid": 10007.9118492875,
"total_value_exit_net": 10007.8767247925,
"total_value": 10007.9118492875,
"base_cost_quote": 40.585796535,
"unrealized_pnl_exit_net": 6.21173897
},
{
"timestamp": "2025-07-13T23:59:00+00:00",
"base_asset_bal": 40,
"quote_asset_bal": 9960.8883894375,
"total_value_mid": 10007.8003894375,
"total_value_exit_net": 10007.7652054375,
"total_value": 10007.8003894375,
"base_cost_quote": 40.551370735,
"unrealized_pnl_exit_net": 6.325445265
},
{
"timestamp": "2025-07-14T23:59:00+00:00",
"base_asset_bal": 45.3,
"quote_asset_bal": 9954.7744153575,
"total_value_mid": 10007.6757553575,
"total_value_exit_net": 10007.6360793525,
"total_value": 10007.6757553575,
"base_cost_quote": 45.5400994775,
"unrealized_pnl_exit_net": 7.3215645175
},
{
"timestamp": "2025-07-15T23:59:00+00:00",
"base_asset_bal": 53.9,
"quote_asset_bal": 9944.7370743725,
"total_value_mid": 10007.3311443725,
"total_value_exit_net": 10007.28419882,
"total_value": 10007.3311443725,
"base_cost_quote": 55.5829659825,
"unrealized_pnl_exit_net": 6.964158465
},
{
"timestamp": "2025-07-16T23:59:00+00:00",
"base_asset_bal": 54,
"quote_asset_bal": 9944.644640095,
"total_value_mid": 10007.468240095,
"total_value_exit_net": 10007.421122395,
"total_value": 10007.468240095,
"base_cost_quote": 55.468470175,
"unrealized_pnl_exit_net": 7.308012125
},
{
"timestamp": "2025-07-17T23:59:00+00:00",
"base_asset_bal": 58.4,
"quote_asset_bal": 9939.541284585,
"total_value_mid": 10007.425444585,
"total_value_exit_net": 10007.374531465,
"total_value": 10007.425444585,
"base_cost_quote": 60.582022465,
"unrealized_pnl_exit_net": 7.251224415
},
{
"timestamp": "2025-07-18T23:59:00+00:00",
"base_asset_bal": 58.3,
"quote_asset_bal": 9939.642802045,
"total_value_mid": 10007.416552045,
"total_value_exit_net": 10007.3657217325,
"total_value": 10007.416552045,
"base_cost_quote": 60.486030525,
"unrealized_pnl_exit_net": 7.2368891625
},
{
"timestamp": "2025-07-19T23:59:00+00:00",
"base_asset_bal": 58.3,
"quote_asset_bal": 9939.642802045,
"total_value_mid": 10007.416552045,
"total_value_exit_net": 10007.3657217325,
"total_value": 10007.416552045,
"base_cost_quote": 60.486030525,
"unrealized_pnl_exit_net": 7.2368891625
},
{
"timestamp": "2025-07-20T23:59:00+00:00",
"base_asset_bal": 58.3,
"quote_asset_bal": 9939.642802045,
"total_value_mid": 10007.457362045,
"total_value_exit_net": 10007.406501125,
"total_value": 10007.457362045,
"base_cost_quote": 60.486030525,
"unrealized_pnl_exit_net": 7.277668555
},
{
"timestamp": "2025-07-21T23:59:00+00:00",
"base_asset_bal": 41.5,
"quote_asset_bal": 9959.25678052,
"total_value_mid": 10007.77443052,
"total_value_exit_net": 10007.7380422825,
"total_value": 10007.77443052,
"base_cost_quote": 40.4265471875,
"unrealized_pnl_exit_net": 8.054714575
},
{
"timestamp": "2025-07-22T23:59:00+00:00",
"base_asset_bal": 28.9,
"quote_asset_bal": 9974.03472874,
"total_value_mid": 10007.95176874,
"total_value_exit_net": 10007.92633096,
"total_value": 10007.95176874,
"base_cost_quote": 25.3127603425,
"unrealized_pnl_exit_net": 8.5788418775
},
{
"timestamp": "2025-07-23T23:59:00+00:00",
"base_asset_bal": 33.4,
"quote_asset_bal": 9968.74764179,
"total_value_mid": 10008.05276179,
"total_value_exit_net": 10008.02328295,
"total_value": 10008.05276179,
"base_cost_quote": 30.375504555,
"unrealized_pnl_exit_net": 8.900136605
},
{
"timestamp": "2025-07-24T23:59:00+00:00",
"base_asset_bal": 33.4,
"quote_asset_bal": 9968.74764179,
"total_value_mid": 10007.99264179,
"total_value_exit_net": 10007.96320804,
"total_value": 10007.99264179,
"base_cost_quote": 30.375504555,
"unrealized_pnl_exit_net": 8.840061695
},
{
"timestamp": "2025-07-25T23:59:00+00:00",
"base_asset_bal": 37.8,
"quote_asset_bal": 9963.5888342975,
"total_value_mid": 10007.9887142975,
"total_value_exit_net": 10007.9554143875,
"total_value": 10007.9887142975,
"base_cost_quote": 35.422326835,
"unrealized_pnl_exit_net": 8.944253255
},
{
"timestamp": "2025-07-26T23:59:00+00:00",
"base_asset_bal": 37.8,
"quote_asset_bal": 9963.5888342975,
"total_value_mid": 10007.9811542975,
"total_value_exit_net": 10007.9478600575,
"total_value": 10007.9811542975,
"base_cost_quote": 35.422326835,
"unrealized_pnl_exit_net": 8.936698925
},
{
"timestamp": "2025-07-27T23:59:00+00:00",
"base_asset_bal": 33.6,
"quote_asset_bal": 9968.5234905275,
"total_value_mid": 10008.0270105275,
"total_value_exit_net": 10007.9973828875,
"total_value": 10008.0270105275,
"base_cost_quote": 30.375504555,
"unrealized_pnl_exit_net": 9.098387805
},
{
"timestamp": "2025-07-28T23:59:00+00:00",
"base_asset_bal": 50.8,
"quote_asset_bal": 9948.421835585,
"total_value_mid": 10007.334595585,
"total_value_exit_net": 10007.290411015,
"total_value": 10007.334595585,
"base_cost_quote": 50.4771594975,
"unrealized_pnl_exit_net": 8.3914159325
},
{
"timestamp": "2025-07-29T23:59:00+00:00",
"base_asset_bal": 68.4,
"quote_asset_bal": 9928.054371435,
"total_value_mid": 10007.070051435,
"total_value_exit_net": 10007.010789675,
"total_value": 10007.070051435,
"base_cost_quote": 70.8446236475,
"unrealized_pnl_exit_net": 8.1117945925
},
{
"timestamp": "2025-07-30T23:59:00+00:00",
"base_asset_bal": 81.6,
"quote_asset_bal": 9912.936753095,
"total_value_mid": 10006.230033095,
"total_value_exit_net": 10006.160063135,
"total_value": 10006.230033095,
"base_cost_quote": 85.9726011275,
"unrealized_pnl_exit_net": 7.2507089125
},
{
"timestamp": "2025-07-31T23:59:00+00:00",
"base_asset_bal": 90.4,
"quote_asset_bal": 9902.847326385,
"total_value_mid": 10006.066046385,
"total_value_exit_net": 10005.988632345,
"total_value": 10006.066046385,
"base_cost_quote": 96.0724503375,
"unrealized_pnl_exit_net": 7.0688556225
},
{
"timestamp": "2025-08-01T23:59:00+00:00",
"base_asset_bal": 64,
"quote_asset_bal": 9933.247407085,
"total_value_mid": 10007.333807085,
"total_value_exit_net": 10007.278242285,
"total_value": 10007.333807085,
"base_cost_quote": 65.7240260775,
"unrealized_pnl_exit_net": 8.3068091225
},
{
"timestamp": "2025-08-02T23:59:00+00:00",
"base_asset_bal": 64,
"quote_asset_bal": 9933.247407085,
"total_value_mid": 10007.346607085,
"total_value_exit_net": 10007.291032685,
"total_value": 10007.346607085,
"base_cost_quote": 65.7240260775,
"unrealized_pnl_exit_net": 8.3195995225
},
{
"timestamp": "2025-08-03T23:59:00+00:00",
"base_asset_bal": 59.6,
"quote_asset_bal": 9938.329552615,
"total_value_mid": 10007.316552615,
"total_value_exit_net": 10007.264812365,
"total_value": 10007.316552615,
"base_cost_quote": 60.6470211775,
"unrealized_pnl_exit_net": 8.2882385725
},
{
"timestamp": "2025-08-04T23:59:00+00:00",
"base_asset_bal": 59.6,
"quote_asset_bal": 9938.329552615,
"total_value_mid": 10007.346352615,
"total_value_exit_net": 10007.294590015,
"total_value": 10007.346352615,
"base_cost_quote": 60.6470211775,
"unrealized_pnl_exit_net": 8.3180162225
},
{
"timestamp": "2025-08-05T23:59:00+00:00",
"base_asset_bal": 59.6,
"quote_asset_bal": 9938.334683345,
"total_value_mid": 10007.333603345,
"total_value_exit_net": 10007.281854155,
"total_value": 10007.333603345,
"base_cost_quote": 60.6470211775,
"unrealized_pnl_exit_net": 8.3001496325
},
{
"timestamp": "2025-08-06T23:59:00+00:00",
"base_asset_bal": 50.8,
"quote_asset_bal": 9948.555568195,
"total_value_mid": 10007.768048195,
"total_value_exit_net": 10007.723638835,
"total_value": 10007.768048195,
"base_cost_quote": 50.4525010175,
"unrealized_pnl_exit_net": 8.7155696225
},
{
"timestamp": "2025-08-07T23:59:00+00:00",
"base_asset_bal": 55.3,
"quote_asset_bal": 9943.3040143375,
"total_value_mid": 10007.8667643375,
"total_value_exit_net": 10007.818342275,
"total_value": 10007.8667643375,
"base_cost_quote": 55.481680075,
"unrealized_pnl_exit_net": 9.0326478625
},
{
"timestamp": "2025-08-08T23:59:00+00:00",
"base_asset_bal": 55.3,
"quote_asset_bal": 9943.3040143375,
"total_value_mid": 10007.7616943375,
"total_value_exit_net": 10007.7133510775,
"total_value": 10007.7616943375,
"base_cost_quote": 55.481680075,
"unrealized_pnl_exit_net": 8.927656665
},
{
"timestamp": "2025-08-09T23:59:00+00:00",
"base_asset_bal": 47,
"quote_asset_bal": 9952.98926214,
"total_value_mid": 10007.93226214,
"total_value_exit_net": 10007.89105489,
"total_value": 10007.93226214,
"base_cost_quote": 45.462050985,
"unrealized_pnl_exit_net": 9.439741765
},
{
"timestamp": "2025-08-10T23:59:00+00:00",
"base_asset_bal": 47.2,
"quote_asset_bal": 9952.769515655,
"total_value_mid": 10007.861355655,
"total_value_exit_net": 10007.820036775,
"total_value": 10007.861355655,
"base_cost_quote": 45.4581780825,
"unrealized_pnl_exit_net": 9.5923430375
},
{
"timestamp": "2025-08-11T23:59:00+00:00",
"base_asset_bal": 39.4,
"quote_asset_bal": 9962.094272725,
"total_value_mid": 10007.853432725,
"total_value_exit_net": 10007.819113355,
"total_value": 10007.853432725,
"base_cost_quote": 35.3486416125,
"unrealized_pnl_exit_net": 10.3761990175
},
{
"timestamp": "2025-08-12T23:59:00+00:00",
"base_asset_bal": 31,
"quote_asset_bal": 9971.9053253925,
"total_value_mid": 10008.1474253925,
"total_value_exit_net": 10008.1202438175,
"total_value": 10008.1474253925,
"base_cost_quote": 25.214516715,
"unrealized_pnl_exit_net": 11.00040171
},
{
"timestamp": "2025-08-13T23:59:00+00:00",
"base_asset_bal": 35.8,
"quote_asset_bal": 9966.214845,
"total_value_mid": 10008.344285,
"total_value_exit_net": 10008.31268792,
"total_value": 10008.344285,
"base_cost_quote": 30.3452518825,
"unrealized_pnl_exit_net": 11.7525910375
},
{
"timestamp": "2025-08-14T23:59:00+00:00",
"base_asset_bal": 61.7,
"quote_asset_bal": 9935.922839145,
"total_value_mid": 10007.747809145,
"total_value_exit_net": 10007.6939404175,
"total_value": 10007.747809145,
"base_cost_quote": 60.525059775,
"unrealized_pnl_exit_net": 11.2460414975
},
{
"timestamp": "2025-08-15T23:59:00+00:00",
"base_asset_bal": 49.1,
"quote_asset_bal": 9950.6298606,
"total_value_mid": 10008.0032106,
"total_value_exit_net": 10007.9601805875,
"total_value": 10008.0032106,
"base_cost_quote": 45.4839974325,
"unrealized_pnl_exit_net": 11.846322555
},
{
"timestamp": "2025-08-16T23:59:00+00:00",
"base_asset_bal": 49.1,
"quote_asset_bal": 9950.6298606,
"total_value_mid": 10007.9737506,
"total_value_exit_net": 10007.9307426825,
"total_value": 10007.9737506,
"base_cost_quote": 45.4839974325,
"unrealized_pnl_exit_net": 11.81688465
},
{
"timestamp": "2025-08-17T23:59:00+00:00",
"base_asset_bal": 49.1,
"quote_asset_bal": 9950.6298606,
"total_value_mid": 10008.0621306,
"total_value_exit_net": 10008.0190563975,
"total_value": 10008.0621306,
"base_cost_quote": 45.4839974325,
"unrealized_pnl_exit_net": 11.905198365
},
{
"timestamp": "2025-08-18T23:59:00+00:00",
"base_asset_bal": 57.7,
"quote_asset_bal": 9940.58785474,
"total_value_mid": 10007.87182474,
"total_value_exit_net": 10007.8213617625,
"total_value": 10007.87182474,
"base_cost_quote": 55.5260032925,
"unrealized_pnl_exit_net": 11.70750373
},
{
"timestamp": "2025-08-19T23:59:00+00:00",
"base_asset_bal": 57.8,
"quote_asset_bal": 9940.4765290525,
"total_value_mid": 10007.7672890525,
"total_value_exit_net": 10007.7168209825,
"total_value": 10007.7672890525,
"base_cost_quote": 55.5260032925,
"unrealized_pnl_exit_net": 11.7142886375
},
{
"timestamp": "2025-08-20T23:59:00+00:00",
"base_asset_bal": 66.4,
"quote_asset_bal": 9930.455608995,
"total_value_mid": 10007.798328995,
"total_value_exit_net": 10007.740321955,
"total_value": 10007.798328995,
"base_cost_quote": 65.54692335,
"unrealized_pnl_exit_net": 11.73778961
},
{
"timestamp": "2025-08-21T23:59:00+00:00",
"base_asset_bal": 70.8,
"quote_asset_bal": 9925.342056705,
"total_value_mid": 10007.583336705,
"total_value_exit_net": 10007.521655745,
"total_value": 10007.583336705,
"base_cost_quote": 70.66047564,
"unrealized_pnl_exit_net": 11.5191234
},
{
"timestamp": "2025-08-22T23:59:00+00:00",
"base_asset_bal": 32.8,
"quote_asset_bal": 9969.821770135,
"total_value_mid": 10008.506090135,
"total_value_exit_net": 10008.477076895,
"total_value": 10008.506090135,
"base_cost_quote": 25.297138635,
"unrealized_pnl_exit_net": 13.358168125
},
{
"timestamp": "2025-08-23T23:59:00+00:00",
"base_asset_bal": 32.8,
"quote_asset_bal": 9969.821770135,
"total_value_mid": 10008.499530135,
"total_value_exit_net": 10008.470521815,
"total_value": 10008.499530135,
"base_cost_quote": 25.297138635,
"unrealized_pnl_exit_net": 13.351613045
},
{
"timestamp": "2025-08-24T23:59:00+00:00",
"base_asset_bal": 37.2,
"quote_asset_bal": 9964.6588663525,
"total_value_mid": 10008.2758663525,
"total_value_exit_net": 10008.2431536025,
"total_value": 10008.2758663525,
"base_cost_quote": 30.3478338175,
"unrealized_pnl_exit_net": 13.2364534325
},
{
"timestamp": "2025-08-25T23:59:00+00:00",
"base_asset_bal": 50.2,
"quote_asset_bal": 9949.4666407225,
"total_value_mid": 10007.7187207225,
"total_value_exit_net": 10007.6750316625,
"total_value": 10007.7187207225,
"base_cost_quote": 45.5400594475,
"unrealized_pnl_exit_net": 12.6683314925
},
{
"timestamp": "2025-08-26T23:59:00+00:00",
"base_asset_bal": 54.4,
"quote_asset_bal": 9944.5785063375,
"total_value_mid": 10007.8674663375,
"total_value_exit_net": 10007.8199996175,
"total_value": 10007.8674663375,
"base_cost_quote": 50.4447552125,
"unrealized_pnl_exit_net": 12.7967380675
},
{
"timestamp": "2025-08-27T23:59:00+00:00",
"base_asset_bal": 58.8,
"quote_asset_bal": 9939.4758360175,
"total_value_mid": 10007.9484360175,
"total_value_exit_net": 10007.8970815675,
"total_value": 10007.9484360175,
"base_cost_quote": 55.5631511325,
"unrealized_pnl_exit_net": 12.8580944175
},
{
"timestamp": "2025-08-28T23:59:00+00:00",
"base_asset_bal": 54.6,
"quote_asset_bal": 9944.3462007025,
"total_value_mid": 10008.1135407025,
"total_value_exit_net": 10008.0657151975,
"total_value": 10008.1135407025,
"base_cost_quote": 50.4757384325,
"unrealized_pnl_exit_net": 13.2437760625
},
{
"timestamp": "2025-08-29T23:59:00+00:00",
"base_asset_bal": 54.7,
"quote_asset_bal": 9944.2347580025,
"total_value_mid": 10008.0915380025,
"total_value_exit_net": 10008.0436454175,
"total_value": 10008.0915380025,
"base_cost_quote": 50.4757384325,
"unrealized_pnl_exit_net": 13.3331489825
},
{
"timestamp": "2025-08-30T23:59:00+00:00",
"base_asset_bal": 54.7,
"quote_asset_bal": 9944.2347580025,
"total_value_mid": 10008.0970080025,
"total_value_exit_net": 10008.049111315,
"total_value": 10008.0970080025,
"base_cost_quote": 50.4757384325,
"unrealized_pnl_exit_net": 13.33861488
},
{
"timestamp": "2025-08-31T23:59:00+00:00",
"base_asset_bal": 54.7,
"quote_asset_bal": 9944.2347580025,
"total_value_mid": 10008.1626480025,
"total_value_exit_net": 10008.114702085,
"total_value": 10008.1626480025,
"base_cost_quote": 50.4757384325,
"unrealized_pnl_exit_net": 13.40420565
},
{
"timestamp": "2025-09-01T23:59:00+00:00",
"base_asset_bal": 42.1,
"quote_asset_bal": 9958.9875251225,
"total_value_mid": 10008.2950451225,
"total_value_exit_net": 10008.2580644825,
"total_value": 10008.2950451225,
"base_cost_quote": 35.3877709375,
"unrealized_pnl_exit_net": 13.8827684225
},
{
"timestamp": "2025-09-02T23:59:00+00:00",
"base_asset_bal": 55.1,
"quote_asset_bal": 9943.8068634575,
"total_value_mid": 10007.9267334575,
"total_value_exit_net": 10007.878643555,
"total_value": 10007.9267334575,
"base_cost_quote": 50.457234565,
"unrealized_pnl_exit_net": 13.6145455325
},
{
"timestamp": "2025-09-03T23:59:00+00:00",
"base_asset_bal": 55.1,
"quote_asset_bal": 9943.8123810575,
"total_value_mid": 10008.0424510575,
"total_value_exit_net": 10007.994278505,
"total_value": 10008.0424510575,
"base_cost_quote": 50.457234565,
"unrealized_pnl_exit_net": 13.7246628825
},
{
"timestamp": "2025-09-04T23:59:00+00:00",
"base_asset_bal": 55.1,
"quote_asset_bal": 9943.8123810575,
"total_value_mid": 10008.0204110575,
"total_value_exit_net": 10007.972255035,
"total_value": 10008.0204110575,
"base_cost_quote": 50.457234565,
"unrealized_pnl_exit_net": 13.7026394125
},
{
"timestamp": "2025-09-05T23:59:00+00:00",
"base_asset_bal": 42.6,
"quote_asset_bal": 9958.4534501775,
"total_value_mid": 10008.3423101775,
"total_value_exit_net": 10008.3048935325,
"total_value": 10008.3423101775,
"base_cost_quote": 35.36926707,
"unrealized_pnl_exit_net": 14.482176285
},
{
"timestamp": "2025-09-06T23:59:00+00:00",
"base_asset_bal": 42.6,
"quote_asset_bal": 9958.4534501775,
"total_value_mid": 10008.3210101775,
"total_value_exit_net": 10008.2836095075,
"total_value": 10008.3210101775,
"base_cost_quote": 35.36926707,
"unrealized_pnl_exit_net": 14.46089226
},
{
"timestamp": "2025-09-07T23:59:00+00:00",
"base_asset_bal": 46.9,
"quote_asset_bal": 9953.4135130575,
"total_value_mid": 10008.3381030575,
"total_value_exit_net": 10008.296909615,
"total_value": 10008.3381030575,
"base_cost_quote": 40.40920419,
"unrealized_pnl_exit_net": 14.4741923675
},
{
"timestamp": "2025-09-08T23:59:00+00:00",
"base_asset_bal": 47.2,
"quote_asset_bal": 9953.0508822475,
"total_value_mid": 10008.5958422475,
"total_value_exit_net": 10008.5541835275,
"total_value": 10008.5958422475,
"base_cost_quote": 40.4354538625,
"unrealized_pnl_exit_net": 15.0678474175
},
{
"timestamp": "2025-09-09T23:59:00+00:00",
"base_asset_bal": 43.1,
"quote_asset_bal": 9957.8505392375,
"total_value_mid": 10008.2818492375,
"total_value_exit_net": 10008.244025755,
"total_value": 10008.2818492375,
"base_cost_quote": 35.4118689975,
"unrealized_pnl_exit_net": 14.98161752
},
{
"timestamp": "2025-09-10T23:59:00+00:00",
"base_asset_bal": 51.7,
"quote_asset_bal": 9947.7689437075,
"total_value_mid": 10008.2786237075,
"total_value_exit_net": 10008.2332414475,
"total_value": 10008.2786237075,
"base_cost_quote": 45.4934645275,
"unrealized_pnl_exit_net": 14.9708332125
},
{
"timestamp": "2025-09-11T23:59:00+00:00",
"base_asset_bal": 47.6,
"quote_asset_bal": 9952.58177631,
"total_value_mid": 10008.41657631,
"total_value_exit_net": 10008.37470021,
"total_value": 10008.41657631,
"base_cost_quote": 40.4569699875,
"unrealized_pnl_exit_net": 15.3359539125
},
{
"timestamp": "2025-09-12T23:59:00+00:00",
"base_asset_bal": 47.6,
"quote_asset_bal": 9952.58177631,
"total_value_mid": 10008.46417631,
"total_value_exit_net": 10008.42226451,
"total_value": 10008.46417631,
"base_cost_quote": 40.4569699875,
"unrealized_pnl_exit_net": 15.3835182125
},
{
"timestamp": "2025-09-13T23:59:00+00:00",
"base_asset_bal": 39.2,
"quote_asset_bal": 9962.45612499,
"total_value_mid": 10008.57100499,
"total_value_exit_net": 10008.53641883,
"total_value": 10008.57100499,
"base_cost_quote": 30.3581615575,
"unrealized_pnl_exit_net": 15.7221322825
},
{
"timestamp": "2025-09-14T23:59:00+00:00",
"base_asset_bal": 43.6,
"quote_asset_bal": 9957.2890398175,
"total_value_mid": 10008.4013198175,
"total_value_exit_net": 10008.3629856075,
"total_value": 10008.4013198175,
"base_cost_quote": 35.4127296425,
"unrealized_pnl_exit_net": 15.6612161475
},
{
"timestamp": "2025-09-15T23:59:00+00:00",
"base_asset_bal": 43.6,
"quote_asset_bal": 9957.2890398175,
"total_value_mid": 10008.5582798175,
"total_value_exit_net": 10008.5198278875,
"total_value": 10008.5582798175,
"base_cost_quote": 35.4127296425,
"unrealized_pnl_exit_net": 15.8180584275
},
{
"timestamp": "2025-09-16T23:59:00+00:00",
"base_asset_bal": 35.7,
"quote_asset_bal": 9966.54923003,
"total_value_mid": 10008.91085003,
"total_value_exit_net": 10008.879078815,
"total_value": 10008.91085003,
"base_cost_quote": 25.362547655,
"unrealized_pnl_exit_net": 16.96730113
},
{
"timestamp": "2025-09-17T23:59:00+00:00",
"base_asset_bal": 48.8,
"quote_asset_bal": 9951.013208485,
"total_value_mid": 10008.709448485,
"total_value_exit_net": 10008.666176305,
"total_value": 10008.709448485,
"base_cost_quote": 40.5581458125,
"unrealized_pnl_exit_net": 17.0948220075
},
{
"timestamp": "2025-09-18T23:59:00+00:00",
"base_asset_bal": 57.5,
"quote_asset_bal": 9940.76450292,
"total_value_mid": 10008.53975292,
"total_value_exit_net": 10008.4889214825,
"total_value": 10008.53975292,
"base_cost_quote": 50.6939619775,
"unrealized_pnl_exit_net": 17.030456585
},
{
"timestamp": "2025-09-19T23:59:00+00:00",
"base_asset_bal": 66.1,
"quote_asset_bal": 9930.6514938475,
"total_value_mid": 10008.2000138475,
"total_value_exit_net": 10008.1418524575,
"total_value": 10008.2000138475,
"base_cost_quote": 60.80697105,
"unrealized_pnl_exit_net": 16.68338756
},
{
"timestamp": "2025-09-20T23:59:00+00:00",
"base_asset_bal": 66.1,
"quote_asset_bal": 9930.6514938475,
"total_value_mid": 10008.1867938475,
"total_value_exit_net": 10008.1286423725,
"total_value": 10008.1867938475,
"base_cost_quote": 60.80697105,
"unrealized_pnl_exit_net": 16.670177475
},
{
"timestamp": "2025-09-21T23:59:00+00:00",
"base_asset_bal": 66.1,
"quote_asset_bal": 9930.6514938475,
"total_value_mid": 10008.1669638475,
"total_value_exit_net": 10008.108827245,
"total_value": 10008.1669638475,
"base_cost_quote": 60.80697105,
"unrealized_pnl_exit_net": 16.6503623475
},
{
"timestamp": "2025-09-22T23:59:00+00:00",
"base_asset_bal": 57.9,
"quote_asset_bal": 9940.3155089575,
"total_value_mid": 10008.5564489575,
"total_value_exit_net": 10008.5052682525,
"total_value": 10008.5564489575,
"base_cost_quote": 50.6939619775,
"unrealized_pnl_exit_net": 17.4957973175
},
{
"timestamp": "2025-09-23T23:59:00+00:00",
"base_asset_bal": 58,
"quote_asset_bal": 9940.1912667875,
"total_value_mid": 10008.6834667875,
"total_value_exit_net": 10008.6320976375,
"total_value": 10008.6834667875,
"base_cost_quote": 50.705580685,
"unrealized_pnl_exit_net": 17.735250165
},
{
"timestamp": "2025-09-24T23:59:00+00:00",
"base_asset_bal": 58,
"quote_asset_bal": 9940.1912667875,
"total_value_mid": 10008.2484667875,
"total_value_exit_net": 10008.1974238875,
"total_value": 10008.2484667875,
"base_cost_quote": 50.705580685,
"unrealized_pnl_exit_net": 17.300576415
},
{
"timestamp": "2025-09-25T23:59:00+00:00",
"base_asset_bal": 75.2,
"quote_asset_bal": 9920.0435673375,
"total_value_mid": 10007.6891673375,
"total_value_exit_net": 10007.6234331375,
"total_value": 10007.6891673375,
"base_cost_quote": 70.853280135,
"unrealized_pnl_exit_net": 16.726585665
},
{
"timestamp": "2025-09-26T23:59:00+00:00",
"base_asset_bal": 75.4,
"quote_asset_bal": 9919.8099770625,
"total_value_mid": 10007.9148770625,
"total_value_exit_net": 10007.8487983875,
"total_value": 10007.9148770625,
"base_cost_quote": 70.8640381975,
"unrealized_pnl_exit_net": 17.1747831275
},
{
"timestamp": "2025-09-27T23:59:00+00:00",
"base_asset_bal": 75.4,
"quote_asset_bal": 9919.8099770625,
"total_value_mid": 10007.9073370625,
"total_value_exit_net": 10007.8412640425,
"total_value": 10007.9073370625,
"base_cost_quote": 70.8640381975,
"unrealized_pnl_exit_net": 17.1672487825
},
{
"timestamp": "2025-09-28T23:59:00+00:00",
"base_asset_bal": 75.4,
"quote_asset_bal": 9919.8099770625,
"total_value_mid": 10007.9902770625,
"total_value_exit_net": 10007.9241418375,
"total_value": 10007.9902770625,
"base_cost_quote": 70.8640381975,
"unrealized_pnl_exit_net": 17.2501265775
},
{
"timestamp": "2025-09-29T23:59:00+00:00",
"base_asset_bal": 67,
"quote_asset_bal": 9929.6461344075,
"total_value_mid": 10008.1969344075,
"total_value_exit_net": 10008.1380213075,
"total_value": 10008.1969344075,
"base_cost_quote": 60.804389115,
"unrealized_pnl_exit_net": 17.687497785
},
{
"timestamp": "2025-09-30T23:59:00+00:00",
"base_asset_bal": 67,
"quote_asset_bal": 9929.6461344075,
"total_value_mid": 10008.2639344075,
"total_value_exit_net": 10008.2049710575,
"total_value": 10008.2639344075,
"base_cost_quote": 60.804389115,
"unrealized_pnl_exit_net": 17.754447535
},
{
"timestamp": "2025-10-01T23:59:00+00:00",
"base_asset_bal": 71.5,
"quote_asset_bal": 9924.3582719125,
"total_value_mid": 10008.2778219125,
"total_value_exit_net": 10008.21488225,
"total_value": 10008.2778219125,
"base_cost_quote": 65.8679939725,
"unrealized_pnl_exit_net": 17.988616365
},
{
"timestamp": "2025-10-02T23:59:00+00:00",
"base_asset_bal": 80.1,
"quote_asset_bal": 9914.2809796075,
"total_value_mid": 10008.2062396075,
"total_value_exit_net": 10008.1357956625,
"total_value": 10008.2062396075,
"base_cost_quote": 75.9452862775,
"unrealized_pnl_exit_net": 17.9095297775
},
{
"timestamp": "2025-10-03T23:59:00+00:00",
"base_asset_bal": 63.3,
"quote_asset_bal": 9934.0107911425,
"total_value_mid": 10008.3946211425,
"total_value_exit_net": 10008.33883327,
"total_value": 10008.3946211425,
"base_cost_quote": 55.76703393,
"unrealized_pnl_exit_net": 18.5610081975
},
{
"timestamp": "2025-10-04T23:59:00+00:00",
"base_asset_bal": 63.3,
"quote_asset_bal": 9934.0107911425,
"total_value_mid": 10008.5085611425,
"total_value_exit_net": 10008.452687815,
"total_value": 10008.5085611425,
"base_cost_quote": 55.76703393,
"unrealized_pnl_exit_net": 18.6748627425
},
{
"timestamp": "2025-10-05T23:59:00+00:00",
"base_asset_bal": 55,
"quote_asset_bal": 9943.81960618,
"total_value_mid": 10008.48860618,
"total_value_exit_net": 10008.44010443,
"total_value": 10008.48860618,
"base_cost_quote": 45.62002938,
"unrealized_pnl_exit_net": 19.00046887
},
{
"timestamp": "2025-10-06T23:59:00+00:00",
"base_asset_bal": 64.2,
"quote_asset_bal": 9933.0139761725,
"total_value_mid": 10008.3526761725,
"total_value_exit_net": 10008.2961721475,
"total_value": 10008.3526761725,
"base_cost_quote": 55.7528332875,
"unrealized_pnl_exit_net": 19.5293626875
},
{
"timestamp": "2025-10-07T23:59:00+00:00",
"base_asset_bal": 77.1,
"quote_asset_bal": 9917.90406223,
"total_value_mid": 10007.72556223,
"total_value_exit_net": 10007.658196105,
"total_value": 10007.72556223,
"base_cost_quote": 70.86274723,
"unrealized_pnl_exit_net": 18.891386645
},
{
"timestamp": "2025-10-08T23:59:00+00:00",
"base_asset_bal": 90.2,
"quote_asset_bal": 9902.6692546875,
"total_value_mid": 10007.5447946875,
"total_value_exit_net": 10007.4661380325,
"total_value": 10007.5447946875,
"base_cost_quote": 86.0975547725,
"unrealized_pnl_exit_net": 18.6993285725
},
{
"timestamp": "2025-10-09T23:59:00+00:00",
"base_asset_bal": 90.2,
"quote_asset_bal": 9902.6967993475,
"total_value_mid": 10007.0221193475,
"total_value_exit_net": 10006.9438753575,
"total_value": 10007.0221193475,
"base_cost_quote": 86.0755382725,
"unrealized_pnl_exit_net": 18.1715377375
},
{
"timestamp": "2025-10-10T23:59:00+00:00",
"base_asset_bal": 76.9,
"quote_asset_bal": 9918.3765607075,
"total_value_mid": 10006.2886407075,
"total_value_exit_net": 10006.2227066475,
"total_value": 10006.2886407075,
"base_cost_quote": 70.8845335575,
"unrealized_pnl_exit_net": 16.9616123825
},
{
"timestamp": "2025-10-11T23:59:00+00:00",
"base_asset_bal": 103.3,
"quote_asset_bal": 9888.1177215475,
"total_value_mid": 10006.1483015475,
"total_value_exit_net": 10006.0597786125,
"total_value": 10006.1483015475,
"base_cost_quote": 101.2162252775,
"unrealized_pnl_exit_net": 16.7258317875
},
{
"timestamp": "2025-10-12T23:59:00+00:00",
"base_asset_bal": 94.5,
"quote_asset_bal": 9898.1617082475,
"total_value_mid": 10007.5265582475,
"total_value_exit_net": 10007.44453461,
"total_value": 10007.5265582475,
"base_cost_quote": 91.2136889975,
"unrealized_pnl_exit_net": 18.069137365
},
{
"timestamp": "2025-10-13T23:59:00+00:00",
"base_asset_bal": 94.5,
"quote_asset_bal": 9898.1502086275,
"total_value_mid": 10007.3071586275,
"total_value_exit_net": 10007.225290915,
"total_value": 10007.3071586275,
"base_cost_quote": 91.2405491275,
"unrealized_pnl_exit_net": 17.83453316
},
{
"timestamp": "2025-10-14T23:59:00+00:00",
"base_asset_bal": 85.7,
"quote_asset_bal": 9908.3130386675,
"total_value_mid": 10007.6564786675,
"total_value_exit_net": 10007.5819710875,
"total_value": 10007.6564786675,
"base_cost_quote": 81.0931442775,
"unrealized_pnl_exit_net": 18.1757881425
},
{
"timestamp": "2025-10-15T23:59:00+00:00",
"base_asset_bal": 76.9,
"quote_asset_bal": 9918.5322884775,
"total_value_mid": 10008.0285084775,
"total_value_exit_net": 10007.9613863125,
"total_value": 10008.0285084775,
"base_cost_quote": 70.8845335575,
"unrealized_pnl_exit_net": 18.5445642775
},
{
"timestamp": "2025-10-16T23:59:00+00:00",
"base_asset_bal": 72.7,
"quote_asset_bal": 9923.4100044275,
"total_value_mid": 10008.4253844275,
"total_value_exit_net": 10008.3616228925,
"total_value": 10008.4253844275,
"base_cost_quote": 65.7898353975,
"unrealized_pnl_exit_net": 19.1617830675
},
{
"timestamp": "2025-10-17T23:59:00+00:00",
"base_asset_bal": 72.9,
"quote_asset_bal": 9923.18848928,
"total_value_mid": 10008.02221928,
"total_value_exit_net": 10007.9585939825,
"total_value": 10008.02221928,
"base_cost_quote": 65.7881141075,
"unrealized_pnl_exit_net": 18.981990595
},
{
"timestamp": "2025-10-18T23:59:00+00:00",
"base_asset_bal": 77.2,
"quote_asset_bal": 9918.1834082825,
"total_value_mid": 10007.9978882825,
"total_value_exit_net": 10007.9305274225,
"total_value": 10007.9978882825,
"base_cost_quote": 70.793195105,
"unrealized_pnl_exit_net": 18.953924035
},
{
"timestamp": "2025-10-19T23:59:00+00:00",
"base_asset_bal": 81.5,
"quote_asset_bal": 9913.173163415,
"total_value_mid": 10008.088063415,
"total_value_exit_net": 10008.01687724,
"total_value": 10008.088063415,
"base_cost_quote": 75.8034399725,
"unrealized_pnl_exit_net": 19.0402738525
},
{
"timestamp": "2025-10-20T23:59:00+00:00",
"base_asset_bal": 81.6,
"quote_asset_bal": 9913.05127114,
"total_value_mid": 10008.04183114,
"total_value_exit_net": 10007.97058822,
"total_value": 10008.04183114,
"base_cost_quote": 75.814198035,
"unrealized_pnl_exit_net": 19.105119045
},
{
"timestamp": "2025-10-21T23:59:00+00:00",
"base_asset_bal": 90.4,
"quote_asset_bal": 9902.82240524,
"total_value_mid": 10007.65024524,
"total_value_exit_net": 10007.57162436,
"total_value": 10007.65024524,
"base_cost_quote": 86.043063935,
"unrealized_pnl_exit_net": 18.706155185
},
{
"timestamp": "2025-10-22T23:59:00+00:00",
"base_asset_bal": 94.8,
"quote_asset_bal": 9897.72188454,
"total_value_mid": 10007.73728454,
"total_value_exit_net": 10007.65477299,
"total_value": 10007.73728454,
"base_cost_quote": 91.148690285,
"unrealized_pnl_exit_net": 18.784198165
},
{
"timestamp": "2025-10-23T23:59:00+00:00",
"base_asset_bal": 94.8,
"quote_asset_bal": 9897.72188454,
"total_value_mid": 10007.82260454,
"total_value_exit_net": 10007.740029,
"total_value": 10007.82260454,
"base_cost_quote": 91.148690285,
"unrealized_pnl_exit_net": 18.869454175
},
{
"timestamp": "2025-10-24T23:59:00+00:00",
"base_asset_bal": 86,
"quote_asset_bal": 9907.94948808,
"total_value_mid": 10007.92448808,
"total_value_exit_net": 10007.84950683,
"total_value": 10007.92448808,
"base_cost_quote": 80.931713295,
"unrealized_pnl_exit_net": 18.968305455
},
{
"timestamp": "2025-10-25T23:59:00+00:00",
"base_asset_bal": 86,
"quote_asset_bal": 9907.94948808,
"total_value_mid": 10007.96748808,
"total_value_exit_net": 10007.89247458,
"total_value": 10007.96748808,
"base_cost_quote": 80.931713295,
"unrealized_pnl_exit_net": 19.011273205
},
{
"timestamp": "2025-10-26T23:59:00+00:00",
"base_asset_bal": 81.6,
"quote_asset_bal": 9913.07252292,
"total_value_mid": 10008.01412292,
"total_value_exit_net": 10007.94291672,
"total_value": 10008.01412292,
"base_cost_quote": 75.814198035,
"unrealized_pnl_exit_net": 19.056195765
},
{
"timestamp": "2025-10-27T23:59:00+00:00",
"base_asset_bal": 81.6,
"quote_asset_bal": 9913.07252292,
"total_value_mid": 10008.16100292,
"total_value_exit_net": 10008.08968656,
"total_value": 10008.16100292,
"base_cost_quote": 75.814198035,
"unrealized_pnl_exit_net": 19.202965605
},
{
"timestamp": "2025-10-28T23:59:00+00:00",
"base_asset_bal": 81.6,
"quote_asset_bal": 9913.07252292,
"total_value_mid": 10008.12020292,
"total_value_exit_net": 10008.04891716,
"total_value": 10008.12020292,
"base_cost_quote": 75.814198035,
"unrealized_pnl_exit_net": 19.162196205
},
{
"timestamp": "2025-10-29T23:59:00+00:00",
"base_asset_bal": 90.5,
"quote_asset_bal": 9902.736056085,
"total_value_mid": 10007.716056085,
"total_value_exit_net": 10007.637321085,
"total_value": 10007.716056085,
"base_cost_quote": 86.039541295,
"unrealized_pnl_exit_net": 18.861723705
},
{
"timestamp": "2025-10-30T23:59:00+00:00",
"base_asset_bal": 99.3,
"quote_asset_bal": 9892.550596625,
"total_value_mid": 10007.430766625,
"total_value_exit_net": 10007.3446064975,
"total_value": 10007.430766625,
"base_cost_quote": 96.230098485,
"unrealized_pnl_exit_net": 18.5639113875
},
{
"timestamp": "2025-10-31T23:59:00+00:00",
"base_asset_bal": 103.7,
"quote_asset_bal": 9887.466546445,
"total_value_mid": 10007.260786445,
"total_value_exit_net": 10007.170940765,
"total_value": 10007.260786445,
"base_cost_quote": 101.314148665,
"unrealized_pnl_exit_net": 18.390245655
},
{
"timestamp": "2025-11-01T23:59:00+00:00",
"base_asset_bal": 103.7,
"quote_asset_bal": 9887.466546445,
"total_value_mid": 10007.312636445,
"total_value_exit_net": 10007.2227518775,
"total_value": 10007.312636445,
"base_cost_quote": 101.314148665,
"unrealized_pnl_exit_net": 18.4420567675
},
{
"timestamp": "2025-11-02T23:59:00+00:00",
"base_asset_bal": 99.3,
"quote_asset_bal": 9892.560848845,
"total_value_mid": 10007.103398845,
"total_value_exit_net": 10007.0174919325,
"total_value": 10007.103398845,
"base_cost_quote": 96.230098485,
"unrealized_pnl_exit_net": 18.2265446025
},
{
"timestamp": "2025-11-03T23:59:00+00:00",
"base_asset_bal": 103.7,
"quote_asset_bal": 9887.486485925,
"total_value_mid": 10006.990365925,
"total_value_exit_net": 10006.900738015,
"total_value": 10006.990365925,
"base_cost_quote": 101.304461405,
"unrealized_pnl_exit_net": 18.109790685
},
{
"timestamp": "2025-11-04T23:59:00+00:00",
"base_asset_bal": 108.1,
"quote_asset_bal": 9882.424452245,
"total_value_mid": 10006.588112245,
"total_value_exit_net": 10006.4949895,
"total_value": 10006.588112245,
"base_cost_quote": 106.366495085,
"unrealized_pnl_exit_net": 17.70404217
},
{
"timestamp": "2025-11-05T23:59:00+00:00",
"base_asset_bal": 112.5,
"quote_asset_bal": 9877.367702525,
"total_value_mid": 10006.675202525,
"total_value_exit_net": 10006.5782219,
"total_value": 10006.675202525,
"base_cost_quote": 111.423244805,
"unrealized_pnl_exit_net": 17.78727457
},
{
"timestamp": "2025-11-06T23:59:00+00:00",
"base_asset_bal": 103.7,
"quote_asset_bal": 9887.501835105,
"total_value_mid": 10007.306445105,
"total_value_exit_net": 10007.2165916475,
"total_value": 10007.306445105,
"base_cost_quote": 101.309745365,
"unrealized_pnl_exit_net": 18.4050111775
},
{
"timestamp": "2025-11-07T23:59:00+00:00",
"base_asset_bal": 99.3,
"quote_asset_bal": 9892.579411565,
"total_value_mid": 10007.519161565,
"total_value_exit_net": 10007.4329567525,
"total_value": 10007.519161565,
"base_cost_quote": 96.242427725,
"unrealized_pnl_exit_net": 18.6111174625
},
{
"timestamp": "2025-11-08T23:59:00+00:00",
"base_asset_bal": 99.3,
"quote_asset_bal": 9892.579411565,
"total_value_mid": 10007.519161565,
"total_value_exit_net": 10007.4329567525,
"total_value": 10007.519161565,
"base_cost_quote": 96.242427725,
"unrealized_pnl_exit_net": 18.6111174625
},
{
"timestamp": "2025-11-09T23:59:00+00:00",
"base_asset_bal": 99.3,
"quote_asset_bal": 9892.579411565,
"total_value_mid": 10007.290771565,
"total_value_exit_net": 10007.204738045,
"total_value": 10007.290771565,
"base_cost_quote": 96.242427725,
"unrealized_pnl_exit_net": 18.382898755
},
{
"timestamp": "2025-11-10T23:59:00+00:00",
"base_asset_bal": 99.3,
"quote_asset_bal": 9892.579411565,
"total_value_mid": 10007.400001565,
"total_value_exit_net": 10007.3138861225,
"total_value": 10007.400001565,
"base_cost_quote": 96.242427725,
"unrealized_pnl_exit_net": 18.4920468325
},
{
"timestamp": "2025-11-11T23:59:00+00:00",
"base_asset_bal": 94.9,
"quote_asset_bal": 9897.680023235,
"total_value_mid": 10007.659633235,
"total_value_exit_net": 10007.5771485275,
"total_value": 10007.659633235,
"base_cost_quote": 91.146928965,
"unrealized_pnl_exit_net": 18.7501963275
},
{
"timestamp": "2025-11-12T23:59:00+00:00",
"base_asset_bal": 94.9,
"quote_asset_bal": 9897.680023235,
"total_value_mid": 10007.669123235,
"total_value_exit_net": 10007.58663141,
"total_value": 10007.669123235,
"base_cost_quote": 91.146928965,
"unrealized_pnl_exit_net": 18.75967921
},
{
"timestamp": "2025-11-13T23:59:00+00:00",
"base_asset_bal": 81.7,
"quote_asset_bal": 9913.028902935,
"total_value_mid": 10008.054172935,
"total_value_exit_net": 10007.9829039825,
"total_value": 10008.054172935,
"base_cost_quote": 75.814198035,
"unrealized_pnl_exit_net": 19.1398030125
},
{
"timestamp": "2025-11-14T23:59:00+00:00",
"base_asset_bal": 81.8,
"quote_asset_bal": 9912.9177687225,
"total_value_mid": 10008.0429887225,
"total_value_exit_net": 10007.9716448075,
"total_value": 10008.0429887225,
"base_cost_quote": 75.814198035,
"unrealized_pnl_exit_net": 19.23967805
},
{
"timestamp": "2025-11-15T23:59:00+00:00",
"base_asset_bal": 86.2,
"quote_asset_bal": 9907.7998131325,
"total_value_mid": 10007.9728331325,
"total_value_exit_net": 10007.8977033675,
"total_value": 10007.9728331325,
"base_cost_quote": 80.932153625,
"unrealized_pnl_exit_net": 19.16573661
},
{
"timestamp": "2025-11-16T23:59:00+00:00",
"base_asset_bal": 86.2,
"quote_asset_bal": 9907.7998131325,
"total_value_mid": 10008.0762731325,
"total_value_exit_net": 10008.0010657875,
"total_value": 10008.0762731325,
"base_cost_quote": 80.932153625,
"unrealized_pnl_exit_net": 19.26909903
},
{
"timestamp": "2025-11-17T23:59:00+00:00",
"base_asset_bal": 82,
"quote_asset_bal": 9912.7138048675,
"total_value_mid": 10007.9486048675,
"total_value_exit_net": 10007.8771787675,
"total_value": 10007.9486048675,
"base_cost_quote": 75.9179457875,
"unrealized_pnl_exit_net": 19.2454281125
},
{
"timestamp": "2025-11-18T23:59:00+00:00",
"base_asset_bal": 82,
"quote_asset_bal": 9912.7138048675,
"total_value_mid": 10007.7436048675,
"total_value_exit_net": 10007.6723325175,
"total_value": 10007.7436048675,
"base_cost_quote": 75.9179457875,
"unrealized_pnl_exit_net": 19.0405818625
},
{
"timestamp": "2025-11-19T23:59:00+00:00",
"base_asset_bal": 90.8,
"quote_asset_bal": 9902.5236880075,
"total_value_mid": 10007.3886080075,
"total_value_exit_net": 10007.3099593175,
"total_value": 10007.3886080075,
"base_cost_quote": 86.1080626475,
"unrealized_pnl_exit_net": 18.6782086625
},
{
"timestamp": "2025-11-20T23:59:00+00:00",
"base_asset_bal": 99.6,
"quote_asset_bal": 9892.3573489675,
"total_value_mid": 10007.3455489675,
"total_value_exit_net": 10007.2593078175,
"total_value": 10007.3455489675,
"base_cost_quote": 96.2744016875,
"unrealized_pnl_exit_net": 18.6275571625
},
{
"timestamp": "2025-11-21T23:59:00+00:00",
"base_asset_bal": 86.4,
"quote_asset_bal": 9907.6950610275,
"total_value_mid": 10007.2192210275,
"total_value_exit_net": 10007.1445779075,
"total_value": 10007.2192210275,
"base_cost_quote": 80.9729341875,
"unrealized_pnl_exit_net": 18.4765826925
},
{
"timestamp": "2025-11-22T23:59:00+00:00",
"base_asset_bal": 86.4,
"quote_asset_bal": 9907.6950610275,
"total_value_mid": 10007.1673810275,
"total_value_exit_net": 10007.0927767875,
"total_value": 10007.1673810275,
"base_cost_quote": 80.9729341875,
"unrealized_pnl_exit_net": 18.4247815725
},
{
"timestamp": "2025-11-23T23:59:00+00:00",
"base_asset_bal": 90.8,
"quote_asset_bal": 9902.6281837175,
"total_value_mid": 10007.0935837175,
"total_value_exit_net": 10007.0152346675,
"total_value": 10007.0935837175,
"base_cost_quote": 86.0398114975,
"unrealized_pnl_exit_net": 18.3472394525
},
{
"timestamp": "2025-11-24T23:59:00+00:00",
"base_asset_bal": 90.8,
"quote_asset_bal": 9902.6170473175,
"total_value_mid": 10007.2095673175,
"total_value_exit_net": 10007.1311229275,
"total_value": 10007.2095673175,
"base_cost_quote": 86.0561037075,
"unrealized_pnl_exit_net": 18.4579719025
},
{
"timestamp": "2025-11-25T23:59:00+00:00",
"base_asset_bal": 86.4,
"quote_asset_bal": 9907.6884723575,
"total_value_mid": 10007.6100723575,
"total_value_exit_net": 10007.5351311575,
"total_value": 10007.6100723575,
"base_cost_quote": 80.9949506875,
"unrealized_pnl_exit_net": 18.8517081125
},
{
"timestamp": "2025-11-26T23:59:00+00:00",
"base_asset_bal": 86.4,
"quote_asset_bal": 9907.6863768575,
"total_value_mid": 10007.9017368575,
"total_value_exit_net": 10007.8265753375,
"total_value": 10007.9017368575,
"base_cost_quote": 81.0072799275,
"unrealized_pnl_exit_net": 19.1329185525
},
{
"timestamp": "2025-11-27T23:59:00+00:00",
"base_asset_bal": 86.4,
"quote_asset_bal": 9907.6809165675,
"total_value_mid": 10007.8876365675,
"total_value_exit_net": 10007.8124815275,
"total_value": 10007.8876365675,
"base_cost_quote": 81.0178478475,
"unrealized_pnl_exit_net": 19.1137171125
},
{
"timestamp": "2025-11-28T23:59:00+00:00",
"base_asset_bal": 86.4,
"quote_asset_bal": 9907.6860314575,
"total_value_mid": 10007.8149914575,
"total_value_exit_net": 10007.7398947375,
"total_value": 10007.8149914575,
"base_cost_quote": 81.0178478475,
"unrealized_pnl_exit_net": 19.0360154325
},
{
"timestamp": "2025-11-29T23:59:00+00:00",
"base_asset_bal": 86.4,
"quote_asset_bal": 9907.6860314575,
"total_value_mid": 10007.7890714575,
"total_value_exit_net": 10007.7139941775,
"total_value": 10007.7890714575,
"base_cost_quote": 81.0178478475,
"unrealized_pnl_exit_net": 19.0101148725
},
{
"timestamp": "2025-11-30T23:59:00+00:00",
"base_asset_bal": 86.4,
"quote_asset_bal": 9907.6860314575,
"total_value_mid": 10007.8668314575,
"total_value_exit_net": 10007.7916958575,
"total_value": 10007.8668314575,
"base_cost_quote": 81.0178478475,
"unrealized_pnl_exit_net": 19.0878165525
},
{
"timestamp": "2025-12-01T23:59:00+00:00",
"base_asset_bal": 86.2,
"quote_asset_bal": 9907.9007530025,
"total_value_mid": 10007.9444730025,
"total_value_exit_net": 10007.8694402125,
"total_value": 10007.9444730025,
"base_cost_quote": 80.8192790325,
"unrealized_pnl_exit_net": 19.1494081775
},
{
"timestamp": "2025-12-02T23:59:00+00:00",
"base_asset_bal": 90.6,
"quote_asset_bal": 9902.7894023625,
"total_value_mid": 10008.1209623625,
"total_value_exit_net": 10008.0419636925,
"total_value": 10008.1209623625,
"base_cost_quote": 85.9306296725,
"unrealized_pnl_exit_net": 19.3219316575
},
{
"timestamp": "2025-12-03T23:59:00+00:00",
"base_asset_bal": 77.8,
"quote_asset_bal": 9917.6992116125,
"total_value_mid": 10008.4529116125,
"total_value_exit_net": 10008.3848463375,
"total_value": 10008.4529116125,
"base_cost_quote": 70.8039531675,
"unrealized_pnl_exit_net": 19.8816815575
},
{
"timestamp": "2025-12-04T23:59:00+00:00",
"base_asset_bal": 77.8,
"quote_asset_bal": 9917.6992116125,
"total_value_mid": 10008.2506316125,
"total_value_exit_net": 10008.1827180475,
"total_value": 10008.2506316125,
"base_cost_quote": 70.8039531675,
"unrealized_pnl_exit_net": 19.6795532675
},
{
"timestamp": "2025-12-05T23:59:00+00:00",
"base_asset_bal": 82.1,
"quote_asset_bal": 9912.69326997,
"total_value_mid": 10008.15093997,
"total_value_exit_net": 10008.0793467175,
"total_value": 10008.15093997,
"base_cost_quote": 75.80989481,
"unrealized_pnl_exit_net": 19.5761819375
},
{
"timestamp": "2025-12-06T23:59:00+00:00",
"base_asset_bal": 82.1,
"quote_asset_bal": 9912.69326997,
"total_value_mid": 10008.15914997,
"total_value_exit_net": 10008.08755056,
"total_value": 10008.15914997,
"base_cost_quote": 75.80989481,
"unrealized_pnl_exit_net": 19.58438578
},
{
"timestamp": "2025-12-07T23:59:00+00:00",
"base_asset_bal": 82.1,
"quote_asset_bal": 9912.69326997,
"total_value_mid": 10008.21661997,
"total_value_exit_net": 10008.1449774575,
"total_value": 10008.21661997,
"base_cost_quote": 75.80989481,
"unrealized_pnl_exit_net": 19.6418126775
},
{
"timestamp": "2025-12-08T23:59:00+00:00",
"base_asset_bal": 82.2,
"quote_asset_bal": 9912.5821144825,
"total_value_mid": 10008.2218144825,
"total_value_exit_net": 10008.1500847075,
"total_value": 10008.2218144825,
"base_cost_quote": 75.80989481,
"unrealized_pnl_exit_net": 19.758075415
},
{
"timestamp": "2025-12-09T23:59:00+00:00",
"base_asset_bal": 82.2,
"quote_asset_bal": 9912.5821144825,
"total_value_mid": 10008.1971544825,
"total_value_exit_net": 10008.1254432025,
"total_value": 10008.1971544825,
"base_cost_quote": 75.80989481,
"unrealized_pnl_exit_net": 19.73343391
},
{
"timestamp": "2025-12-10T23:59:00+00:00",
"base_asset_bal": 73.8,
"quote_asset_bal": 9922.3813395475,
"total_value_mid": 10008.6904395475,
"total_value_exit_net": 10008.6257077225,
"total_value": 10008.6904395475,
"base_cost_quote": 65.7881141075,
"unrealized_pnl_exit_net": 20.4562540675
},
{
"timestamp": "2025-12-11T23:59:00+00:00",
"base_asset_bal": 61.3,
"quote_asset_bal": 9937.02350816,
"total_value_mid": 10008.96518816,
"total_value_exit_net": 10008.9112319,
"total_value": 10008.96518816,
"base_cost_quote": 50.698855645,
"unrealized_pnl_exit_net": 21.188868095
},
{
"timestamp": "2025-12-12T23:59:00+00:00",
"base_asset_bal": 61.3,
"quote_asset_bal": 9937.02350816,
"total_value_mid": 10008.91001816,
"total_value_exit_net": 10008.8561032775,
"total_value": 10008.91001816,
"base_cost_quote": 50.698855645,
"unrealized_pnl_exit_net": 21.1337394725
},
{
"timestamp": "2025-12-13T23:59:00+00:00",
"base_asset_bal": 61.3,
"quote_asset_bal": 9937.02350816,
"total_value_mid": 10008.92227816,
"total_value_exit_net": 10008.8683540825,
"total_value": 10008.92227816,
"base_cost_quote": 50.698855645,
"unrealized_pnl_exit_net": 21.1459902775
},
{
"timestamp": "2025-12-14T23:59:00+00:00",
"base_asset_bal": 61.3,
"quote_asset_bal": 9937.02350816,
"total_value_mid": 10008.92227816,
"total_value_exit_net": 10008.8683540825,
"total_value": 10008.92227816,
"base_cost_quote": 50.698855645,
"unrealized_pnl_exit_net": 21.1459902775
},
{
"timestamp": "2025-12-15T23:59:00+00:00",
"base_asset_bal": 61.4,
"quote_asset_bal": 9936.897991475,
"total_value_mid": 10009.036851475,
"total_value_exit_net": 10008.98274733,
"total_value": 10009.036851475,
"base_cost_quote": 50.7121956425,
"unrealized_pnl_exit_net": 21.3725602125
},
{
"timestamp": "2025-12-16T23:59:00+00:00",
"base_asset_bal": 57.3,
"quote_asset_bal": 9941.7324078575,
"total_value_mid": 10009.0713678575,
"total_value_exit_net": 10009.0208636375,
"total_value": 10009.0713678575,
"base_cost_quote": 45.65289401,
"unrealized_pnl_exit_net": 21.63556177
},
{
"timestamp": "2025-12-17T23:59:00+00:00",
"base_asset_bal": 61.7,
"quote_asset_bal": 9936.568707255,
"total_value_mid": 10009.053867255,
"total_value_exit_net": 10008.999503385,
"total_value": 10009.053867255,
"base_cost_quote": 50.7044498375,
"unrealized_pnl_exit_net": 21.7263462925
},
{
"timestamp": "2025-12-18T23:59:00+00:00",
"base_asset_bal": 61.7,
"quote_asset_bal": 9936.568707255,
"total_value_mid": 10008.936637255,
"total_value_exit_net": 10008.8823613075,
"total_value": 10008.936637255,
"base_cost_quote": 50.7044498375,
"unrealized_pnl_exit_net": 21.609204215
},
{
"timestamp": "2025-12-19T23:59:00+00:00",
"base_asset_bal": 66,
"quote_asset_bal": 9931.525327555,
"total_value_mid": 10008.864127555,
"total_value_exit_net": 10008.806123455,
"total_value": 10008.864127555,
"base_cost_quote": 55.7478295375,
"unrealized_pnl_exit_net": 21.5329663625
},
{
"timestamp": "2025-12-20T23:59:00+00:00",
"base_asset_bal": 66,
"quote_asset_bal": 9931.525327555,
"total_value_mid": 10008.817927555,
"total_value_exit_net": 10008.759958105,
"total_value": 10008.817927555,
"base_cost_quote": 55.7478295375,
"unrealized_pnl_exit_net": 21.4868010125
},
{
"timestamp": "2025-12-21T23:59:00+00:00",
"base_asset_bal": 66,
"quote_asset_bal": 9931.525327555,
"total_value_mid": 10008.870727555,
"total_value_exit_net": 10008.812718505,
"total_value": 10008.870727555,
"base_cost_quote": 55.7478295375,
"unrealized_pnl_exit_net": 21.5395614125
},
{
"timestamp": "2025-12-22T23:59:00+00:00",
"base_asset_bal": 57.6,
"quote_asset_bal": 9941.39589907,
"total_value_mid": 10009.17957907,
"total_value_exit_net": 10009.12874131,
"total_value": 10009.17957907,
"base_cost_quote": 45.65289401,
"unrealized_pnl_exit_net": 22.07994823
},
{
"timestamp": "2025-12-23T23:59:00+00:00",
"base_asset_bal": 49.2,
"quote_asset_bal": 9951.294169795,
"total_value_mid": 10009.360009795,
"total_value_exit_net": 10009.316460415,
"total_value": 10009.360009795,
"base_cost_quote": 35.5295571975,
"unrealized_pnl_exit_net": 22.4927334225
},
{
"timestamp": "2025-12-24T23:59:00+00:00",
"base_asset_bal": 53.5,
"quote_asset_bal": 9946.2142126825,
"total_value_mid": 10009.2532626825,
"total_value_exit_net": 10009.205983395,
"total_value": 10009.2532626825,
"base_cost_quote": 40.60951431,
"unrealized_pnl_exit_net": 22.3822564025
},
{
"timestamp": "2025-12-25T23:59:00+00:00",
"base_asset_bal": 53.5,
"quote_asset_bal": 9946.2142126825,
"total_value_mid": 10009.2693126825,
"total_value_exit_net": 10009.2220213575,
"total_value": 10009.2693126825,
"base_cost_quote": 40.60951431,
"unrealized_pnl_exit_net": 22.398294365
},
{
"timestamp": "2025-12-26T23:59:00+00:00",
"base_asset_bal": 53.5,
"quote_asset_bal": 9946.2142126825,
"total_value_mid": 10009.2211626825,
"total_value_exit_net": 10009.17390747,
"total_value": 10009.2211626825,
"base_cost_quote": 40.60951431,
"unrealized_pnl_exit_net": 22.3501804775
},
{
"timestamp": "2025-12-27T23:59:00+00:00",
"base_asset_bal": 53.5,
"quote_asset_bal": 9946.2142126825,
"total_value_mid": 10009.2639626825,
"total_value_exit_net": 10009.21667537,
"total_value": 10009.2639626825,
"base_cost_quote": 40.60951431,
"unrealized_pnl_exit_net": 22.3929483775
},
{
"timestamp": "2025-12-28T23:59:00+00:00",
"base_asset_bal": 53.5,
"quote_asset_bal": 9946.2142126825,
"total_value_mid": 10009.2800126825,
"total_value_exit_net": 10009.2327133325,
"total_value": 10009.2800126825,
"base_cost_quote": 40.60951431,
"unrealized_pnl_exit_net": 22.40898634
},
{
"timestamp": "2025-12-29T23:59:00+00:00",
"base_asset_bal": 53.5,
"quote_asset_bal": 9946.2142126825,
"total_value_mid": 10009.2586126825,
"total_value_exit_net": 10009.2113293825,
"total_value": 10009.2586126825,
"base_cost_quote": 40.60951431,
"unrealized_pnl_exit_net": 22.38760239
},
{
"timestamp": "2025-12-30T23:59:00+00:00",
"base_asset_bal": 53.5,
"quote_asset_bal": 9946.2142126825,
"total_value_mid": 10009.1302126825,
"total_value_exit_net": 10009.0830256825,
"total_value": 10009.1302126825,
"base_cost_quote": 40.60951431,
"unrealized_pnl_exit_net": 22.25929869
},
{
"timestamp": "2025-12-31T23:59:00+00:00",
"base_asset_bal": 49.5,
"quote_asset_bal": 9950.9490371125,
"total_value_mid": 10009.2946871125,
"total_value_exit_net": 10009.250927875,
"total_value": 10009.2946871125,
"base_cost_quote": 35.53687268,
"unrealized_pnl_exit_net": 22.7650180825
},
{
"timestamp": "2026-01-01T23:59:00+00:00",
"base_asset_bal": 49.5,
"quote_asset_bal": 9950.9490371125,
"total_value_mid": 10009.2105371125,
"total_value_exit_net": 10009.1668409875,
"total_value": 10009.2105371125,
"base_cost_quote": 35.53687268,
"unrealized_pnl_exit_net": 22.680931195
},
{
"timestamp": "2026-01-02T23:59:00+00:00",
"base_asset_bal": 62.4,
"quote_asset_bal": 9935.77715673,
"total_value_mid": 10008.90371673,
"total_value_exit_net": 10008.84887181,
"total_value": 10008.90371673,
"base_cost_quote": 50.7087530625,
"unrealized_pnl_exit_net": 22.3629620175
},
{
"timestamp": "2026-01-03T23:59:00+00:00",
"base_asset_bal": 62.4,
"quote_asset_bal": 9935.77715673,
"total_value_mid": 10008.87251673,
"total_value_exit_net": 10008.81769521,
"total_value": 10008.87251673,
"base_cost_quote": 50.7087530625,
"unrealized_pnl_exit_net": 22.3317854175
},
{
"timestamp": "2026-01-04T23:59:00+00:00",
"base_asset_bal": 66.7,
"quote_asset_bal": 9930.7359286425,
"total_value_mid": 10008.8216186425,
"total_value_exit_net": 10008.763054375,
"total_value": 10008.8216186425,
"base_cost_quote": 55.74998115,
"unrealized_pnl_exit_net": 22.2771445825
},
{
"timestamp": "2026-01-05T23:59:00+00:00",
"base_asset_bal": 66.9,
"quote_asset_bal": 9930.5124262675,
"total_value_mid": 10008.8590162675,
"total_value_exit_net": 10008.800256325,
"total_value": 10008.8590162675,
"base_cost_quote": 55.74998115,
"unrealized_pnl_exit_net": 22.5378489075
},
{
"timestamp": "2026-01-06T23:59:00+00:00",
"base_asset_bal": 66.9,
"quote_asset_bal": 9930.5124262675,
"total_value_mid": 10008.7185262675,
"total_value_exit_net": 10008.6598716925,
"total_value": 10008.7185262675,
"base_cost_quote": 55.74998115,
"unrealized_pnl_exit_net": 22.397464275
},
{
"timestamp": "2026-01-07T23:59:00+00:00",
"base_asset_bal": 71.2,
"quote_asset_bal": 9925.4810955975,
"total_value_mid": 10008.6711755975,
"total_value_exit_net": 10008.6087830375,
"total_value": 10008.6711755975,
"base_cost_quote": 60.78131182,
"unrealized_pnl_exit_net": 22.34637562
},
{
"timestamp": "2026-01-08T23:59:00+00:00",
"base_asset_bal": 75.5,
"quote_asset_bal": 9920.456219765,
"total_value_mid": 10008.511869765,
"total_value_exit_net": 10008.4458280275,
"total_value": 10008.511869765,
"base_cost_quote": 65.8061876525,
"unrealized_pnl_exit_net": 22.18342061
},
{
"timestamp": "2026-01-09T23:59:00+00:00",
"base_asset_bal": 84.1,
"quote_asset_bal": 9910.4241113225,
"total_value_mid": 10008.3585613225,
"total_value_exit_net": 10008.285110485,
"total_value": 10008.3585613225,
"base_cost_quote": 75.838296095,
"unrealized_pnl_exit_net": 22.0227030675
},
{
"timestamp": "2026-01-10T23:59:00+00:00",
"base_asset_bal": 84.1,
"quote_asset_bal": 9910.4241113225,
"total_value_mid": 10008.2996913225,
"total_value_exit_net": 10008.2262846375,
"total_value": 10008.2996913225,
"base_cost_quote": 75.838296095,
"unrealized_pnl_exit_net": 21.96387722
},
{
"timestamp": "2026-01-11T23:59:00+00:00",
"base_asset_bal": 84.1,
"quote_asset_bal": 9910.4241113225,
"total_value_mid": 10008.2996913225,
"total_value_exit_net": 10008.2262846375,
"total_value": 10008.2996913225,
"base_cost_quote": 75.838296095,
"unrealized_pnl_exit_net": 21.96387722
},
{
"timestamp": "2026-01-12T23:59:00+00:00",
"base_asset_bal": 71.5,
"quote_asset_bal": 9925.1466611225,
"total_value_mid": 10008.6515111225,
"total_value_exit_net": 10008.588882485,
"total_value": 10008.6515111225,
"base_cost_quote": 60.78131182,
"unrealized_pnl_exit_net": 22.6609095425
},
{
"timestamp": "2026-01-13T23:59:00+00:00",
"base_asset_bal": 80.1,
"quote_asset_bal": 9915.1046552625,
"total_value_mid": 10008.4451852625,
"total_value_exit_net": 10008.375179865,
"total_value": 10008.4451852625,
"base_cost_quote": 70.82331768,
"unrealized_pnl_exit_net": 22.4472069225
},
{
"timestamp": "2026-01-14T23:59:00+00:00",
"base_asset_bal": 80.1,
"quote_asset_bal": 9915.1046552625,
"total_value_mid": 10008.3730952625,
"total_value_exit_net": 10008.3031439325,
"total_value": 10008.3730952625,
"base_cost_quote": 70.82331768,
"unrealized_pnl_exit_net": 22.37517099
},
{
"timestamp": "2026-01-15T23:59:00+00:00",
"base_asset_bal": 84.5,
"quote_asset_bal": 9909.9889013225,
"total_value_mid": 10008.1103013225,
"total_value_exit_net": 10008.0367102725,
"total_value": 10008.1103013225,
"base_cost_quote": 75.93907162,
"unrealized_pnl_exit_net": 22.10873733
},
{
"timestamp": "2026-01-16T23:59:00+00:00",
"base_asset_bal": 88.9,
"quote_asset_bal": 9904.8788716725,
"total_value_mid": 10008.0473216725,
"total_value_exit_net": 10007.969945335,
"total_value": 10008.0473216725,
"base_cost_quote": 81.04910127,
"unrealized_pnl_exit_net": 22.0419723925
},
{
"timestamp": "2026-01-17T23:59:00+00:00",
"base_asset_bal": 88.9,
"quote_asset_bal": 9904.8788716725,
"total_value_mid": 10007.9228616725,
"total_value_exit_net": 10007.84557868,
"total_value": 10007.9228616725,
"base_cost_quote": 81.04910127,
"unrealized_pnl_exit_net": 21.9176057375
},
{
"timestamp": "2026-01-18T23:59:00+00:00",
"base_asset_bal": 88.8,
"quote_asset_bal": 9904.9897814475,
"total_value_mid": 10008.2020214475,
"total_value_exit_net": 10008.1246122675,
"total_value": 10008.2020214475,
"base_cost_quote": 80.943722295,
"unrealized_pnl_exit_net": 22.191108525
},
{
"timestamp": "2026-01-19T23:59:00+00:00",
"base_asset_bal": 88.7,
"quote_asset_bal": 9905.10081274,
"total_value_mid": 10008.38309274,
"total_value_exit_net": 10008.30563103,
"total_value": 10008.38309274,
"base_cost_quote": 80.8382132225,
"unrealized_pnl_exit_net": 22.3666050675
},
{
"timestamp": "2026-01-20T23:59:00+00:00",
"base_asset_bal": 63.5,
"quote_asset_bal": 9934.561021,
"total_value_mid": 10009.116371,
"total_value_exit_net": 10009.0604544875,
"total_value": 10009.116371,
"base_cost_quote": 50.7087530625,
"unrealized_pnl_exit_net": 23.790680425
},
{
"timestamp": "2026-01-21T23:59:00+00:00",
"base_asset_bal": 67.8,
"quote_asset_bal": 9929.520223235,
"total_value_mid": 10008.703843235,
"total_value_exit_net": 10008.64445552,
"total_value": 10008.703843235,
"base_cost_quote": 55.7495508275,
"unrealized_pnl_exit_net": 23.3746814575
},
{
"timestamp": "2026-01-22T23:59:00+00:00",
"base_asset_bal": 59.6,
"quote_asset_bal": 9939.1633981975,
"total_value_mid": 10009.2768381975,
"total_value_exit_net": 10009.2242531175,
"total_value": 10009.2768381975,
"base_cost_quote": 45.6584882025,
"unrealized_pnl_exit_net": 24.4023667175
},
{
"timestamp": "2026-01-23T23:59:00+00:00",
"base_asset_bal": 47.1,
"quote_asset_bal": 9953.9141791325,
"total_value_mid": 10009.6664491325,
"total_value_exit_net": 10009.62463493,
"total_value": 10009.6664491325,
"base_cost_quote": 30.4569155675,
"unrealized_pnl_exit_net": 25.25354023
},
{
"timestamp": "2026-01-24T23:59:00+00:00",
"base_asset_bal": 47.1,
"quote_asset_bal": 9953.9141791325,
"total_value_mid": 10009.6758691325,
"total_value_exit_net": 10009.634047865,
"total_value": 10009.6758691325,
"base_cost_quote": 30.4569155675,
"unrealized_pnl_exit_net": 25.262953165
},
{
"timestamp": "2026-01-25T23:59:00+00:00",
"base_asset_bal": 34.6,
"quote_asset_bal": 9968.740417275,
"total_value_mid": 10009.807157275,
"total_value_exit_net": 10009.77635722,
"total_value": 10009.807157275,
"base_cost_quote": 15.1770242375,
"unrealized_pnl_exit_net": 25.8589157075
},
{
"timestamp": "2026-01-26T23:59:00+00:00",
"base_asset_bal": 34.8,
"quote_asset_bal": 9968.5131811375,
"total_value_mid": 10009.8799411375,
"total_value_exit_net": 10009.8489160675,
"total_value": 10009.8799411375,
"base_cost_quote": 15.1770242375,
"unrealized_pnl_exit_net": 26.1587106925
},
{
"timestamp": "2026-01-27T23:59:00+00:00",
"base_asset_bal": 43.2,
"quote_asset_bal": 9958.3245180025,
"total_value_mid": 10010.3243580025,
"total_value_exit_net": 10010.2853581225,
"total_value": 10010.3243580025,
"base_cost_quote": 25.27714365,
"unrealized_pnl_exit_net": 26.68369647
},
{
"timestamp": "2026-01-28T23:59:00+00:00",
"base_asset_bal": 51.6,
"quote_asset_bal": 9948.2361570625,
"total_value_mid": 10010.1045570625,
"total_value_exit_net": 10010.0581557625,
"total_value": 10010.1045570625,
"base_cost_quote": 35.396227275,
"unrealized_pnl_exit_net": 26.425771425
},
{
"timestamp": "2026-01-29T23:59:00+00:00",
"base_asset_bal": 55.8,
"quote_asset_bal": 9943.2151194325,
"total_value_mid": 10010.0802594325,
"total_value_exit_net": 10010.0301105775,
"total_value": 10010.0802594325,
"base_cost_quote": 40.427397825,
"unrealized_pnl_exit_net": 26.38759332
},
{
"timestamp": "2026-01-30T23:59:00+00:00",
"base_asset_bal": 72.7,
"quote_asset_bal": 9923.054631245,
"total_value_mid": 10009.313181245,
"total_value_exit_net": 10009.2484873325,
"total_value": 10009.313181245,
"base_cost_quote": 60.5929606625,
"unrealized_pnl_exit_net": 25.600895425
},
{
"timestamp": "2026-01-31T23:59:00+00:00",
"base_asset_bal": 81.3,
"quote_asset_bal": 9912.84479961,
"total_value_mid": 10008.97391961,
"total_value_exit_net": 10008.90182277,
"total_value": 10008.97391961,
"base_cost_quote": 70.8027922975,
"unrealized_pnl_exit_net": 25.2542308625
},
{
"timestamp": "2026-02-01T23:59:00+00:00",
"base_asset_bal": 85.7,
"quote_asset_bal": 9907.63566949,
"total_value_mid": 10009.23301949,
"total_value_exit_net": 10009.1568214775,
"total_value": 10009.23301949,
"base_cost_quote": 75.8986713425,
"unrealized_pnl_exit_net": 25.622480645
},
{
"timestamp": "2026-02-02T23:59:00+00:00",
"base_asset_bal": 90.1,
"quote_asset_bal": 9902.45050978,
"total_value_mid": 10008.78652978,
"total_value_exit_net": 10008.706777765,
"total_value": 10008.78652978,
"base_cost_quote": 80.9704523275,
"unrealized_pnl_exit_net": 25.2858156575
},
{
"timestamp": "2026-02-03T23:59:00+00:00",
"base_asset_bal": 85.9,
"quote_asset_bal": 9907.41538333,
"total_value_mid": 10009.01790333,
"total_value_exit_net": 10008.94170144,
"total_value": 10009.01790333,
"base_cost_quote": 75.8926468275,
"unrealized_pnl_exit_net": 25.6336712825
},
{
"timestamp": "2026-02-04T23:59:00+00:00",
"base_asset_bal": 85.9,
"quote_asset_bal": 9907.41538333,
"total_value_mid": 10008.99213333,
"total_value_exit_net": 10008.9159507675,
"total_value": 10008.99213333,
"base_cost_quote": 75.8926468275,
"unrealized_pnl_exit_net": 25.60792061
},
{
"timestamp": "2026-02-05T23:59:00+00:00",
"base_asset_bal": 86,
"quote_asset_bal": 9907.3023769175,
"total_value_mid": 10008.6963769175,
"total_value_exit_net": 10008.6203314175,
"total_value": 10008.6963769175,
"base_cost_quote": 75.8926468275,
"unrealized_pnl_exit_net": 25.4253076725
},
{
"timestamp": "2026-02-06T23:59:00+00:00",
"base_asset_bal": 99,
"quote_asset_bal": 9891.9628768925,
"total_value_mid": 10008.7531768925,
"total_value_exit_net": 10008.6655841675,
"total_value": 10008.7531768925,
"base_cost_quote": 91.11960849,
"unrealized_pnl_exit_net": 25.583098785
},
{
"timestamp": "2026-02-07T23:59:00+00:00",
"base_asset_bal": 99,
"quote_asset_bal": 9891.9628768925,
"total_value_mid": 10008.6640768925,
"total_value_exit_net": 10008.5765509925,
"total_value": 10008.6640768925,
"base_cost_quote": 91.11960849,
"unrealized_pnl_exit_net": 25.49406561
},
{
"timestamp": "2026-02-08T23:59:00+00:00",
"base_asset_bal": 94.8,
"quote_asset_bal": 9896.9206157975,
"total_value_mid": 10008.9362957975,
"total_value_exit_net": 10008.8522840375,
"total_value": 10008.9362957975,
"base_cost_quote": 86.0491184725,
"unrealized_pnl_exit_net": 25.8825497675
},
{
"timestamp": "2026-02-09T23:59:00+00:00",
"base_asset_bal": 69.6,
"quote_asset_bal": 9926.8160374025,
"total_value_mid": 10009.6817974025,
"total_value_exit_net": 10009.6196480825,
"total_value": 10009.6817974025,
"base_cost_quote": 55.47341388,
"unrealized_pnl_exit_net": 27.3301968
},
{
"timestamp": "2026-02-10T23:59:00+00:00",
"base_asset_bal": 69.6,
"quote_asset_bal": 9926.8160374025,
"total_value_mid": 10009.5704374025,
"total_value_exit_net": 10009.5083716025,
"total_value": 10009.5704374025,
"base_cost_quote": 55.47341388,
"unrealized_pnl_exit_net": 27.21892032
},
{
"timestamp": "2026-02-11T23:59:00+00:00",
"base_asset_bal": 74,
"quote_asset_bal": 9921.5945816775,
"total_value_mid": 10009.5065816775,
"total_value_exit_net": 10009.4406476775,
"total_value": 10009.5065816775,
"base_cost_quote": 60.581341955,
"unrealized_pnl_exit_net": 27.264724045
},
{
"timestamp": "2026-02-12T23:59:00+00:00",
"base_asset_bal": 78.3,
"quote_asset_bal": 9916.4771865075,
"total_value_mid": 10009.4662665075,
"total_value_exit_net": 10009.3965246975,
"total_value": 10009.4662665075,
"base_cost_quote": 65.698737125,
"unrealized_pnl_exit_net": 27.220601065
},
{
"timestamp": "2026-02-13T23:59:00+00:00",
"base_asset_bal": 78.3,
"quote_asset_bal": 9916.4771865075,
"total_value_mid": 10009.4114565075,
"total_value_exit_net": 10009.341755805,
"total_value": 10009.4114565075,
"base_cost_quote": 65.698737125,
"unrealized_pnl_exit_net": 27.1658321725
},
{
"timestamp": "2026-02-14T23:59:00+00:00",
"base_asset_bal": 78.3,
"quote_asset_bal": 9916.4771865075,
"total_value_mid": 10009.2470265075,
"total_value_exit_net": 10009.1774491275,
"total_value": 10009.2470265075,
"base_cost_quote": 65.698737125,
"unrealized_pnl_exit_net": 27.001525495
},
{
"timestamp": "2026-02-15T23:59:00+00:00",
"base_asset_bal": 82.6,
"quote_asset_bal": 9911.378295205,
"total_value_mid": 10009.383195205,
"total_value_exit_net": 10009.30969153,
"total_value": 10009.383195205,
"base_cost_quote": 70.7976284275,
"unrealized_pnl_exit_net": 27.1337678975
},
{
"timestamp": "2026-02-16T23:59:00+00:00",
"base_asset_bal": 82.6,
"quote_asset_bal": 9911.378295205,
"total_value_mid": 10009.275815205,
"total_value_exit_net": 10009.202392065,
"total_value": 10009.275815205,
"base_cost_quote": 70.7976284275,
"unrealized_pnl_exit_net": 27.0264684325
},
{
"timestamp": "2026-02-17T23:59:00+00:00",
"base_asset_bal": 82.8,
"quote_asset_bal": 9911.15120317,
"total_value_mid": 10009.27748317,
"total_value_exit_net": 10009.20388846,
"total_value": 10009.27748317,
"base_cost_quote": 70.79805875,
"unrealized_pnl_exit_net": 27.25462654
},
{
"timestamp": "2026-02-18T23:59:00+00:00",
"base_asset_bal": 82.8,
"quote_asset_bal": 9911.15120317,
"total_value_mid": 10008.75584317,
"total_value_exit_net": 10008.68263969,
"total_value": 10008.75584317,
"base_cost_quote": 70.79805875,
"unrealized_pnl_exit_net": 26.73337777
},
{
"timestamp": "2026-02-19T23:59:00+00:00",
"base_asset_bal": 95.7,
"quote_asset_bal": 9895.9268234425,
"total_value_mid": 10008.5657234425,
"total_value_exit_net": 10008.4812442675,
"total_value": 10008.5657234425,
"base_cost_quote": 86.0224384775,
"unrealized_pnl_exit_net": 26.5319823475
},
{
"timestamp": "2026-02-20T23:59:00+00:00",
"base_asset_bal": 95.8,
"quote_asset_bal": 9895.814348905,
"total_value_mid": 10008.743388905,
"total_value_exit_net": 10008.658692125,
"total_value": 10008.743388905,
"base_cost_quote": 86.0224384775,
"unrealized_pnl_exit_net": 26.8219047425
},
{
"timestamp": "2026-02-21T23:59:00+00:00",
"base_asset_bal": 95.8,
"quote_asset_bal": 9895.814348905,
"total_value_mid": 10008.705068905,
"total_value_exit_net": 10008.620400865,
"total_value": 10008.705068905,
"base_cost_quote": 86.0224384775,
"unrealized_pnl_exit_net": 26.7836134825
},
{
"timestamp": "2026-02-22T23:59:00+00:00",
"base_asset_bal": 91.7,
"quote_asset_bal": 9900.6442222225,
"total_value_mid": 10009.1528322224,
"total_value_exit_net": 10009.0714507649,
"total_value": 10009.1528322224,
"base_cost_quote": 80.9670097475,
"unrealized_pnl_exit_net": 27.460218795
},
{
"timestamp": "2026-02-23T23:59:00+00:00",
"base_asset_bal": 96,
"quote_asset_bal": 9895.5715805925,
"total_value_mid": 10008.7843805924,
"total_value_exit_net": 10008.6994709924,
"total_value": 10008.7843805924,
"base_cost_quote": 86.0396513775,
"unrealized_pnl_exit_net": 27.0882390225
},
{
"timestamp": "2026-02-24T23:59:00+00:00",
"base_asset_bal": 100.3,
"quote_asset_bal": 9890.5045331549,
"total_value_mid": 10008.5676631549,
"total_value_exit_net": 10008.4791158074,
"total_value": 10008.5676631549,
"base_cost_quote": 91.106698815,
"unrealized_pnl_exit_net": 26.8678838375
},
{
"timestamp": "2026-02-25T23:59:00+00:00",
"base_asset_bal": 96.1,
"quote_asset_bal": 9895.4589145799,
"total_value_mid": 10008.9626245799,
"total_value_exit_net": 10008.8774967974,
"total_value": 10008.9626245799,
"base_cost_quote": 86.0396513775,
"unrealized_pnl_exit_net": 27.37893084
}
]
trades.json payload is intentionally not embedded in this report (deprecated). The CSV attachment below is a 98-row audit sample of the full ledger, not the complete trade list - fetch the canonical full population (1,723 closed trades) via GET /backtests/99bdb498-e08b-42f5-8024-b35ceee3c0b1/trades (paginate through all pages).98-row audit sample from 1,723 closed trades (RFC 4180 CSV)
98-row audit sample from 1,723 closed trades (RFC 4180 CSV)
id,symbol,buy_time,sell_time,buy_price,sell_price,buy_quantity,sell_quantity,quantity,profit,profit_percentage,buy_fee_in_quote,sell_fee_in_quote,fee_buy,fee_sell,fill_type
,,2024-04-24T14:11:00Z,2024-04-25T08:47:00Z,1.0688,1.0715,4.7,,,0.0051454425,0.1024302957,0.00376752,0.0037770375,,,TP
,,2024-04-25T05:59:00Z,2024-04-25T17:33:00Z,1.07,1.0727,4.7,,,0.0051369825,0.1021471963,0.00377175,0.0037812675,,,TP
,,2024-04-25T14:05:00Z,2024-04-25T16:42:00Z,1.0687,1.0714,4.7,,,0.0051461475,0.102453916,0.0037671675,0.003776685,,,TP
,,2024-04-25T17:54:00Z,2024-05-03T12:30:00Z,1.0721,1.0748,4.7,,,0.0051221775,0.1016532973,0.0037791525,0.00378867,,,TP
,,2024-04-26T08:43:00Z,2024-05-03T12:30:00Z,1.0733,1.076,4.7,,,0.0051137175,0.101371937,0.0037833825,0.0037929,,,TP
,,2024-04-26T18:37:00Z,2024-04-29T04:15:00Z,1.0687,1.0714,4.7,,,0.0051461475,0.102453916,0.0037671675,0.003776685,,,TP
,,2024-04-29T00:11:00Z,2024-05-03T03:38:00Z,1.0698,1.0725,4.7,,,0.0051383925,0.1021943354,0.003771045,0.0037805625,,,TP
,,2024-04-29T02:43:00Z,2024-05-03T12:21:00Z,1.0709,1.0736,4.7,,,0.0051306375,0.1019352881,0.0037749225,0.00378444,,,TP
,,2024-05-01T08:34:00Z,2024-05-01T18:55:00Z,1.0668,1.0695,4.7,,,0.0051595425,0.1029035433,0.00376047,0.0037699875,,,TP
,,2024-05-01T18:35:00Z,2024-05-01T18:55:00Z,1.0679,1.0706,4.7,,,0.0051517875,0.1026430377,0.0037643475,0.003773865,,,TP
,,2024-05-01T19:19:00Z,2024-05-02T18:49:00Z,1.0683,1.071,4.7,,,0.0051489675,0.1025484414,0.0037657575,0.003775275,,,TP
,,2024-05-03T14:00:00Z,2024-05-14T12:45:00Z,1.0774,1.0801,4.7,,,0.0050848125,0.1004153518,0.003797835,0.0038073525,,,TP
,,2024-05-03T15:18:00Z,2024-05-10T08:19:00Z,1.0754,1.0781,4.7,,,0.0050989125,0.1008810675,0.003790785,0.0038003025,,,TP
,,2024-05-13T15:04:00Z,2024-05-14T13:15:00Z,1.0789,1.0816,4.7,,,0.0050742375,0.1000671981,0.0038031225,0.00381264,,,TP
,,2024-05-14T12:49:00Z,2024-05-15T12:30:00Z,1.0802,1.083,4.7,,,0.00553472,0.1090168487,0.003807705,0.003817575,,,TP
,,2024-05-14T14:17:00Z,2024-05-15T12:30:00Z,1.0813,1.0841,4.7,,,0.005526965,0.1087533524,0.0038115825,0.0038214525,,,TP
,,2024-05-15T14:55:00Z,2024-05-15T18:12:00Z,1.0849,1.0877,4.7,,,0.005501585,0.1078947368,0.0038242725,0.0038341425,,,TP
,,2024-05-15T15:29:00Z,2024-05-15T20:54:00Z,1.086,1.0888,4.7,,,0.00549383,0.1076335175,0.00382815,0.00383802,,,TP
,,2024-05-15T17:38:00Z,2024-05-20T19:32:00Z,1.0885,1.0913,4.6,,,0.00535969,0.1070418006,0.003755325,0.003764985,,,TP
,,2024-05-16T14:35:00Z,2024-05-16T16:45:00Z,1.0868,1.0896,4.7,,,0.00548819,0.1074438719,0.00383097,0.00384084,,,TP
,,2024-05-17T13:32:00Z,2024-05-17T15:15:00Z,1.0857,1.0885,4.7,,,0.005495945,0.1077047066,0.0038270925,0.0038369625,,,TP
,,2024-05-17T14:28:00Z,2024-05-20T19:29:00Z,1.0868,1.0896,4.7,,,0.00548819,0.1074438719,0.00383097,0.00384084,,,TP
,,2024-05-20T19:39:00Z,2024-05-20T20:17:00Z,1.0925,1.0953,4.6,,,0.00533209,0.1061006865,0.003769125,0.003778785,,,TP
,,2024-05-20T20:00:00Z,2024-05-20T20:22:00Z,1.094,1.0968,4.6,,,0.00532174,0.105749543,0.0037743,0.00378396,,,TP
,,2024-05-20T20:36:00Z,2024-05-20T23:27:00Z,1.1011,1.1039,4.6,,,0.00527275,0.104100445,0.003798795,0.003808455,,,TP
,,2024-07-03T15:10:00Z,2024-07-07T09:21:00Z,1.0801,1.0829,4.7,,,0.005535425,0.1090408296,0.0038073525,0.0038172225,,,TP
,,2024-08-01T12:39:00Z,2024-08-02T11:18:00Z,1.0801,1.0829,4.7,,,0.005535425,0.1090408296,0.0038073525,0.0038172225,,,TP
,,2024-08-21T18:34:00Z,2024-08-21T21:44:00Z,1.1162,1.119,4.5,,,0.0050562,0.1006629636,0.003767175,0.003776625,,,TP
,,2024-08-21T21:27:00Z,2024-08-25T04:31:00Z,1.1176,1.1204,4.5,,,0.00504675,0.1003489621,0.0037719,0.00378135,,,TP
,,2024-08-21T21:51:00Z,2024-08-23T18:04:00Z,1.1159,1.1187,4.5,,,0.005058225,0.1007303522,0.0037661625,0.0037756125,,,TP
,,2024-08-24T16:27:00Z,2024-08-25T07:58:00Z,1.1196,1.1224,4.5,,,0.00503325,0.0999017506,0.00377865,0.0037881,,,TP
,,2024-08-26T14:39:00Z,2024-09-05T09:41:00Z,1.1162,1.119,4.5,,,0.0050562,0.1006629636,0.003767175,0.003776625,,,TP
,,2024-09-18T18:01:00Z,2024-09-24T02:26:00Z,1.1163,1.1191,4.5,,,0.005055525,0.1006405088,0.0037675125,0.0037769625,,,TP
,,2024-09-18T18:34:00Z,2024-09-25T13:09:00Z,1.118,1.1208,4.5,,,0.00504405,0.1002593918,0.00377325,0.0037827,,,TP
,,2024-09-24T19:08:00Z,2024-09-25T02:52:00Z,1.1164,1.1192,4.5,,,0.00505485,0.100618058,0.00376785,0.0037773,,,TP
,,2024-09-26T15:24:00Z,2024-09-30T08:59:00Z,1.1169,1.1197,4.5,,,0.005051475,0.1005058644,0.0037695375,0.0037789875,,,TP
,,2024-09-27T13:00:00Z,2025-03-17T12:46:00Z,1.1191,1.1219,4.5,,,0.005036625,0.1000134036,0.0037769625,0.0037864125,,,TP
,,2024-10-24T04:48:00Z,2024-10-24T19:34:00Z,1.0801,1.0829,4.7,,,0.005535425,0.1090408296,0.0038073525,0.0038172225,,,TP
,,2024-11-03T02:33:00Z,2024-11-03T22:15:00Z,1.0803,1.0831,4.7,,,0.005534015,0.1089928724,0.0038080575,0.0038179275,,,TP
,,2024-11-07T14:44:00Z,2024-11-10T06:17:00Z,1.0802,1.083,4.7,,,0.00553472,0.1090168487,0.003807705,0.003817575,,,TP
,,2024-12-18T20:04:00Z,2024-12-22T22:38:00Z,1.0406,1.0433,4.9,,,0.0055716675,0.1092710936,0.003824205,0.0038341275,,,TP
,,2024-12-23T16:05:00Z,2024-12-24T19:29:00Z,1.0405,1.0432,4.9,,,0.0055724025,0.1092960115,0.0038238375,0.00383376,,,TP
,,2024-12-24T19:29:00Z,2024-12-27T11:27:00Z,1.041,1.0437,4.9,,,0.0055687275,0.1091714697,0.003825675,0.0038355975,,,TP
,,2024-12-30T14:02:00Z,2024-12-31T07:24:00Z,1.0416,1.0443,4.9,,,0.0055643175,0.1090221774,0.00382788,0.0038378025,,,TP
,,2024-12-31T16:14:00Z,2024-12-31T21:30:00Z,1.0412,1.0439,4.9,,,0.0055672575,0.1091216865,0.00382641,0.0038363325,,,TP
,,2024-12-31T17:39:00Z,2024-12-31T18:08:00Z,1.0401,1.0428,4.9,,,0.0055753425,0.1093957312,0.0038223675,0.00383229,,,TP
,,2024-12-31T23:03:00Z,2024-12-31T23:04:00Z,1.0407,1.0434,4.9,,,0.0055709325,0.1092461805,0.0038245725,0.003834495,,,TP
,,2024-12-31T23:04:00Z,2025-01-18T19:13:00Z,1.0416,1.0443,4.9,,,0.0055643175,0.1090221774,0.00382788,0.0038378025,,,TP
,,2025-01-20T14:03:00Z,2025-01-20T20:07:00Z,1.0411,1.0438,4.9,,,0.0055679925,0.1091465757,0.0038260425,0.003835965,,,TP
,,2025-01-21T00:50:00Z,2025-01-21T16:43:00Z,1.0404,1.0431,4.9,,,0.0055731375,0.1093209343,0.00382347,0.0038333925,,,TP
,,2025-01-21T23:28:00Z,2025-01-22T09:57:00Z,1.0411,1.0438,4.9,,,0.0055679925,0.1091465757,0.0038260425,0.003835965,,,TP
,,2025-01-23T04:18:00Z,2025-01-24T02:17:00Z,1.0406,1.0433,4.9,,,0.0055716675,0.1092710936,0.003824205,0.0038341275,,,TP
,,2025-01-29T15:41:00Z,2025-01-30T13:56:00Z,1.041,1.0437,4.9,,,0.0055687275,0.1091714697,0.003825675,0.0038355975,,,TP
,,2025-01-30T20:39:00Z,2025-02-13T20:17:00Z,1.0416,1.0443,4.9,,,0.0055643175,0.1090221774,0.00382788,0.0038378025,,,TP
,,2025-02-28T01:06:00Z,2025-03-03T10:01:00Z,1.0412,1.0439,4.9,,,0.0055672575,0.1091216865,0.00382641,0.0038363325,,,TP
,,2025-03-06T19:52:00Z,2025-03-07T07:44:00Z,1.0802,1.083,4.7,,,0.00553472,0.1090168487,0.003807705,0.003817575,,,TP
,,2025-03-25T09:07:00Z,2025-03-25T09:08:00Z,1.0803,1.0831,4.7,,,0.005534015,0.1089928724,0.0038080575,0.0038179275,,,TP
,,2025-03-31T14:57:00Z,2025-03-31T23:18:00Z,1.0801,1.0829,4.7,,,0.005535425,0.1090408296,0.0038073525,0.0038172225,,,TP
,,2025-04-10T14:55:00Z,2025-04-10T15:27:00Z,1.1159,1.1187,4.5,,,0.005058225,0.1007303522,0.0037661625,0.0037756125,,,TP
,,2025-04-10T15:02:00Z,2025-04-10T15:38:00Z,1.1173,1.1201,4.5,,,0.005048775,0.1004161819,0.0037708875,0.0037803375,,,TP
,,2025-04-10T16:08:00Z,2025-04-10T18:17:00Z,1.119,1.1218,4.5,,,0.0050373,0.1000357462,0.003776625,0.003786075,,,TP
,,2025-04-10T19:47:00Z,2025-04-10T20:00:00Z,1.1172,1.12,4.5,,,0.00504945,0.1004385965,0.00377055,0.00378,,,TP
,,2025-04-10T20:21:00Z,2025-04-10T22:16:00Z,1.1185,1.1213,4.5,,,0.005040675,0.100147519,0.0037749375,0.0037843875,,,TP
,,2025-05-12T07:02:00Z,2025-05-14T08:04:00Z,1.1195,1.1223,4.5,,,0.005033925,0.0999240732,0.0037783125,0.0037877625,,,TP
,,2025-05-12T07:22:00Z,2025-05-13T22:57:00Z,1.1168,1.1196,4.5,,,0.00505215,0.1005282951,0.0037692,0.00377865,,,TP
,,2025-05-14T16:40:00Z,2025-05-19T07:27:00Z,1.1193,1.1221,4.5,,,0.005035275,0.0999687305,0.0037776375,0.0037870875,,,TP
,,2025-05-15T00:30:00Z,2025-05-15T06:44:00Z,1.1181,1.1209,4.5,,,0.005043375,0.1002370092,0.0037735875,0.0037830375,,,TP
,,2025-05-15T19:36:00Z,2025-05-16T05:11:00Z,1.1178,1.1206,4.5,,,0.0050454,0.1003041689,0.003772575,0.003782025,,,TP
,,2025-05-18T22:04:00Z,2025-05-19T07:08:00Z,1.118,1.1208,4.5,,,0.00504405,0.1002593918,0.00377325,0.0037827,,,TP
,,2025-10-13T02:34:00Z,2025-10-15T15:43:00Z,1.1601,1.1631,4.4,,,0.00553344,0.1084044479,0.00382833,0.00383823,,,TP
,,2026-01-27T15:01:00Z,2026-01-27T16:38:00Z,1.1965,1.1995,4.2,,,0.0050526,0.1005432511,0.003768975,0.003778425,,,TP
,,2026-01-27T15:16:00Z,2026-01-28T02:16:00Z,1.1977,1.2007,4.2,,,0.00504504,0.1002922268,0.003772755,0.003782205,,,TP
,,2026-01-27T16:33:00Z,2026-01-28T01:23:00Z,1.1989,1.2019,4.2,,,0.00503748,0.1000417049,0.003776535,0.003785985,,,TP
,,2026-01-28T15:08:00Z,2026-01-28T23:31:00Z,1.1958,1.1988,4.2,,,0.00505701,0.1006899147,0.00376677,0.00377622,,,TP
,,2026-01-28T16:40:00Z,2026-01-28T22:34:00Z,1.1946,1.1976,4.2,,,0.00506457,0.1009417378,0.00376299,0.00377244,,,TP
,,2026-01-28T19:05:00Z,2026-01-28T20:05:00Z,1.193,1.196,4.2,,,0.00507465,0.10127829,0.00375795,0.0037674,,,TP
,,2026-01-29T15:17:00Z,2026-01-29T18:40:00Z,1.1949,1.1979,4.2,,,0.00506268,0.1008787346,0.003763935,0.003773385,,,TP
,,2026-01-29T15:41:00Z,2026-01-29T16:50:00Z,1.1937,1.1967,4.2,,,0.00507024,0.1011309374,0.003760155,0.003769605,,,TP
,,2026-01-30T02:18:00Z,2026-01-30T11:56:00Z,1.193,1.196,4.2,,,0.00507465,0.10127829,0.00375795,0.0037674,,,TP
,,2026-01-30T17:24:00Z,2026-02-09T15:01:00Z,1.1897,1.1927,4.3,,,0.00509544,0.1019752879,0.0038367825,0.003757005,,,TP
,,2026-01-31T17:10:00Z,2026-02-09T12:58:00Z,1.1857,1.1887,4.3,,,0.00512064,0.1028253352,0.0038238825,0.003744405,,,TP
,,2026-01-31T17:43:00Z,2026-02-09T13:25:00Z,1.1869,1.1899,4.3,,,0.00511308,0.1025697194,0.0038277525,0.003748185,,,TP
,,2026-02-01T00:03:00Z,2026-02-01T22:09:00Z,1.183,1.186,4.3,,,0.00513765,0.1034023669,0.003815175,0.0037359,,,TP
,,2026-02-01T05:43:00Z,2026-02-02T00:08:00Z,1.1842,1.1872,4.3,,,0.00513009,0.1031455835,0.003819045,0.00373968,,,TP
,,2026-02-02T14:53:00Z,2026-02-09T07:32:00Z,1.1828,1.1858,4.3,,,0.00513891,0.1034452147,0.00381453,0.00373527,,,TP
,,2026-02-02T16:22:00Z,2026-02-03T17:16:00Z,1.18,1.183,4.3,,,0.00515655,0.1040466102,0.0038055,0.00372645,,,TP
,,2026-02-05T04:28:00Z,2026-02-05T13:56:00Z,1.1807,1.1837,4.3,,,0.00515214,0.1038959939,0.0038077575,0.003728655,,,TP
,,2026-02-06T00:19:00Z,2026-02-06T01:49:00Z,1.1763,1.1793,4.3,,,0.00517986,0.1048457026,0.0037935675,0.003714795,,,TP
,,2026-02-06T00:50:00Z,2026-02-08T23:05:00Z,1.1783,1.1813,4.3,,,0.00516726,0.1044131376,0.0038000175,0.003721095,,,TP
,,2026-02-06T02:18:00Z,2026-02-09T03:48:00Z,1.1795,1.1825,4.3,,,0.0051597,0.1041543027,0.0038038875,0.003724875,,,TP
,,2026-02-06T05:17:00Z,2026-02-09T06:06:00Z,1.1807,1.1837,4.3,,,0.00515214,0.1038959939,0.0038077575,0.003728655,,,TP
,,2026-02-11T13:30:00Z,2026-02-11T17:09:00Z,1.1856,1.1886,4.3,,,0.00512127,0.1028466599,0.00382356,0.00374409,,,TP
,,2026-02-15T09:23:00Z,2026-02-17T18:25:00Z,1.1849,1.1879,4.3,,,0.00512568,0.1029960334,0.0038213025,0.003741885,,,TP
,,2026-02-17T16:24:00Z,2026-02-17T18:25:00Z,1.1826,1.1856,4.3,,,0.00514017,0.1034880771,0.003813885,0.00373464,,,TP
,,2026-02-19T06:21:00Z,2026-02-22T23:40:00Z,1.1796,1.1826,4.3,,,0.00515907,0.1041327569,0.00380421,0.00372519,,,TP
,,2026-02-19T15:48:00Z,2026-02-22T23:16:00Z,1.1775,1.1805,4.3,,,0.0051723,0.1045859873,0.0037974375,0.003718575,,,TP
,,2026-02-20T08:45:00Z,2026-02-20T15:14:00Z,1.1757,1.1787,4.3,,,0.00518364,0.1049757591,0.0037916325,0.003712905,,,TP
,,2026-02-24T15:35:00Z,2026-02-25T17:10:00Z,1.1775,1.1805,4.3,,,0.0051723,0.1045859873,0.0037974375,0.003718575,,,TP
Frequently Asked Questions
_null_; metrics that can’t be derived locally render as “not available”.What strategy was tested and on which trading pair?
What strategy was tested and on which trading pair?
bt.mode_name, bt.symbol, bt.config.from, bt.config.toWhat is the current status of this backtest?
What is the current status of this backtest?
bt.status, bt.error_messageWhat was the total return?
What was the total return?
bt.return_pct, bt.start_balance, bt.final_value, bt.total_profitWhat was the annualized growth rate (CAGR)?
What was the annualized growth rate (CAGR)?
derived from equity series (eqStats.cagrPct, eqStats.durationDays)Did it beat Buy & Hold of EURUSDT?
Did it beat Buy & Hold of EURUSDT?
bt.return_pct, opts.tokenReturnPct, outperformDeltaWhat was the worst drawdown?
What was the worst drawdown?
derived from equity series (eqStats.maxDrawdownPct, .maxDrawdownAbs, .underwaterDays, .recoveryDays)How many trades did it take and what was the win rate?
How many trades did it take and what was the win rate?
bt.fulfilled_trades, bt.win_rate, bt.active_orders, derived tradesPerMonthWhat was the average, best, and worst trade?
What was the average, best, and worst trade?
bt.avg_profit, bt.max_profit, bt.min_profitWhat was the profit factor and expectancy?
What was the profit factor and expectancy?
derived from trades (stats.profitFactor, .expectancy, .payoffRatio)What were the longest winning and losing streaks?
What were the longest winning and losing streaks?
derived from trades (stats.consecWinsMax, .consecLossesMax)How much was paid in fees?
How much was paid in fees?
Sum(buy_fee_in_quote + sell_fee_in_quote) over every row of GET /backtests/{id}/trades - the API summary field bt.total_fees is used only for cross-checking, not as the source of truth.Source: derived from trades[].buy_fee_in_quote + trades[].sell_fee_in_quote (analyzeTrades -> stats.totalFees / .buyFees / .sellFees)Is the risk-adjusted return any good?
Is the risk-adjusted return any good?
derived from equity series (eqStats.sharpeAnnualized, .sortinoAnnualized)How volatile was the equity curve?
How volatile was the equity curve?
derived from equity series (eqStats.volatilityAnnualizedPct)How long does the strategy hold positions?
How long does the strategy hold positions?
derived from trades (stats.medianHoldingHours, .avgHoldingHours, .minHoldingHours, .maxHoldingHours)How much of the time was capital deployed?
How much of the time was capital deployed?
derived from equity series (eqStats.timeInMarketPct)What were the best and worst months?
What were the best and worst months?
derived from trades (stats.bestMonth, .worstMonth)When did the backtest run and how long did it take?
When did the backtest run and how long did it take?
bt.created_at, bt.started_at, bt.completed_at, bt.elapsed_secWhat configuration parameters were used?
What configuration parameters were used?
bt.start_balance, bt.data_file, bt.config.timeframe, bt.config.fee_pct, bt.is_duplicateWhere can I find a one-line summary written by the engine?
Where can I find a one-line summary written by the engine?
Engine summary: Backtest EURUSDT (Mode: 3LongTimeLong.json)
Period: 2024-04-24 00:00:01 to 2026-02-25 23:59:59
Starting balance: 10,000.00 USDT
Final value: 10,008.88 USDT
P&L: +8.88 USDT (+0.09%)
Result: PROFIT
Completed trades: 1723
Open orders at end: 17
Win rate: 100.0%
Avg. profit/trade: 0.005267 USDT
Best trade: 0.005575 USDT
Worst trade: 0.005033 USDT
Total profit (trades only): 9.075603 USDT
Max drawdown: -0.04%
Profit factor: inf (no losing trades)
Sharpe ratio: 0.79
Total fees: 13.06 USDT
Avg hold time: 110.7h
TP / SL / TSL: 1723 / 0 / 0
Strategy parameters:
Buy trigger: -0.1% from last buy
Buy splits: 9
Sell targets: [0.25, 0.35, 0.5, 0.75, 1.0, 2.5, 5.0, 10.0, 15.0]
Investment per buy: 25.0 USDT
Fees: maker 7.5 bps / taker 7.5 bps
Elapsed: 129.4s
bt.summary_textAre these results guaranteed for live trading?
Are these results guaranteed for live trading?
static disclaimerGlossary
| Term | Definition |
|---|---|
| Return % | Total percentage change of portfolio value over the backtest window: (final_value - start_balance) / start_balance x 100. |
| CAGR | Compound Annual Growth Rate. Annualized return assuming compounding: (final/start)^(365.25/days) - 1. |
| Win Rate | Share of closed trades with positive net P&L (after fees): wins / (wins + losses) x 100. |
| Max Drawdown | Largest peak-to-trough decline of equity, measured in % of the previous peak. The single most important risk metric. |
| Drawdown Duration | Number of days spent below the previous equity peak before recovering (or end of window if not recovered). |
| Sharpe Ratio (annualized) | Mean daily return divided by standard deviation of daily returns, scaled by 365. Risk-adjusted return - higher is better, > 1 is decent. |
| Sortino Ratio (annualized) | Like Sharpe but only penalizes downside volatility. Often more representative for asymmetric strategies. |
| Volatility (ann.) | Standard deviation of daily returns x 365, expressed as a percentage. |
| Time in Market | Fraction of the period where the strategy held base-asset exposure (not 100% cash). |
| Buy & Hold | Reference benchmark: simply buying the underlying token at the start and holding to the end of the window. |
| Outperformance (pp) | Strategy return minus Buy & Hold return, in percentage points (not percent change). |
| Fulfilled Trades | Round-trip trades that have both an entry fill and an exit fill within the window. |
| Active Orders | Open positions still pending exit at the end of the backtest - their unrealized P&L is included in final_value. |
| Lookahead Bias | Using information that wouldn’t have been available at trade time. The validator flags trades whose buy_time precedes the configured from date. |
How to Read This Report
GET /backtests/{id} * Fields used: return_pct, fulfilled_trades, win_rateCheck the headline return
Reproduce This Run
GET /backtests/{id} * Fields used: symbol, mode_name, config (replayed verbatim)X-API-Key. Payload fields are validated against ENGINE.md Section 20; non-engine keys are stripped so the replay produces the exact same run.curl -X POST https://uncoded-backtest-api-production.up.railway.app/backtests \
-H "X-API-Key: $UNCODED_API_KEY" \
-H "Content-Type: application/json" \
-d '{"symbol":"EURUSDT","mode_name":"3LongTimeLong.json","interval":"1m","from":"2024-04-24 00:00:01","to":"2026-02-25 23:59:59","canBuy":true,"canSell":true,"canBuyUp":true,"startBal":10000,"stepSize":0.1,"stopLoss":false,"tickSize":0.0001,"buySplits":9,"buyVolumes":[20,15,10,10,10,10,5,5,5],"canBuyDown":false,"minNotional":5,"buyPercentage":0.1,"fees_in_quote":true,"intrabar_mode":"OLHC","maker_fee_bps":7.5,"taker_fee_bps":7.5,"sellPercentages":[0.25,0.35,0.5,0.75,1,2.5,5,10,15],"triggerCoolDown":1,"investmentPerBuy":25,"assumed_spread_bps":0,"stopLossPercentage":5,"investmentPercentMode":false,"minInvestmentPerQuote":25,"order_latency_seconds":2,"trailingStopLossPercentages":[0,0,0,0,0,0,0,0,0],"sellCancelDistancePercentage":1,"dontBuyBelowQuoteAssetBalance":1,"investmentPerFreeQuotePercent":0.01,"sellActivateDistancePercentage":0.1}'
Structured Data (JSON-LD)
Dataset markup with 35 PropertyValue KPIs. Every numeric value is finite + range-validated; invalid / null fields are omitted so the JSON stays schema.org-compliant.{
"@context": "https://schema.org",
"@type": "Dataset",
"name": "EURUSDT LongTimeLong Backtest",
"alternateName": "EURUSDT-3LongTimeLong.json-99bdb498-e08b-42f5-8024-b35ceee3c0b1",
"description": "Backtest of the LongTimeLong strategy on EURUSDT: +0.09% return over 2024-04-24 to 2026-02-25.",
"identifier": "99bdb498-e08b-42f5-8024-b35ceee3c0b1",
"license": "https://creativecommons.org/licenses/by/4.0/",
"isAccessibleForFree": true,
"inLanguage": "en",
"creativeWorkStatus": "completed",
"creator": {
"@type": "Organization",
"name": "uncoded.ch",
"url": "https://uncoded.ch/backtesting"
},
"publisher": {
"@type": "Organization",
"name": "uncoded.ch",
"url": "https://uncoded.ch"
},
"keywords": [
"EURUSDT",
"LongTimeLong",
"crypto backtest",
"trading strategy",
"quantitative finance",
"algorithmic trading"
],
"about": [
{
"@type": "Thing",
"name": "EURUSDT",
"description": "Trading pair: EURUSDT"
},
{
"@type": "Thing",
"name": "LongTimeLong",
"description": "Trading strategy: LongTimeLong"
}
],
"measurementTechnique": "Historical OHLCV replay with deterministic order-fill simulation (TP / SL / Trailing-SL)",
"variableMeasured": [
{
"@type": "PropertyValue",
"name": "Return",
"value": 0.0888,
"unitText": "%",
"unitCode": "P1",
"description": "Total percentage return over the backtest window"
},
{
"@type": "PropertyValue",
"name": "Win Rate",
"value": 100,
"unitText": "%",
"unitCode": "P1",
"description": "Share of closed trades with positive net P&L",
"minValue": 0,
"maxValue": 100
},
{
"@type": "PropertyValue",
"name": "Net Profit",
"value": 9.07560323,
"unitText": "USDT",
"description": "Total realized profit in quote currency"
},
{
"@type": "PropertyValue",
"name": "Final Portfolio Value",
"value": 10008.8774968,
"unitText": "USDT"
},
{
"@type": "PropertyValue",
"name": "Initial Capital",
"value": 10000,
"unitText": "USDT"
},
{
"@type": "PropertyValue",
"name": "Fulfilled Trades",
"value": 1723,
"unitText": "trades",
"minValue": 0
},
{
"@type": "PropertyValue",
"name": "Active Orders",
"value": 17,
"unitText": "orders",
"description": "Open positions still pending exit at end of window",
"minValue": 0
},
{
"@type": "PropertyValue",
"name": "Best Trade Profit",
"value": 0.00557534,
"unitText": "USDT"
},
{
"@type": "PropertyValue",
"name": "Worst Trade Profit",
"value": 0.00503325,
"unitText": "USDT"
},
{
"@type": "PropertyValue",
"name": "Average Trade Profit",
"value": 0.00526733,
"unitText": "USDT"
},
{
"@type": "PropertyValue",
"name": "Engine Elapsed Time",
"value": 129.36,
"unitText": "seconds",
"unitCode": "SEC",
"minValue": 0
},
{
"@type": "PropertyValue",
"name": "CAGR",
"value": 0.04824180061842043,
"unitText": "%",
"unitCode": "P1",
"description": "Compound Annual Growth Rate"
},
{
"@type": "PropertyValue",
"name": "Max Drawdown",
"value": -0.03957430936457866,
"unitText": "%",
"unitCode": "P1",
"description": "Largest peak-to-trough decline of equity (negative)",
"maxValue": 0
},
{
"@type": "PropertyValue",
"name": "Max Drawdown (absolute)",
"value": -3.957922364999831,
"unitText": "USDT",
"maxValue": 0
},
{
"@type": "PropertyValue",
"name": "Drawdown Duration",
"value": 106,
"unitText": "days",
"minValue": 0
},
{
"@type": "PropertyValue",
"name": "Recovery Duration",
"value": 38,
"unitText": "days",
"minValue": 0
},
{
"@type": "PropertyValue",
"name": "Sharpe Ratio (annualized)",
"value": 0.7871279125979439,
"description": "Mean / std of daily returns x 365"
},
{
"@type": "PropertyValue",
"name": "Sortino Ratio (annualized)",
"value": 0.80866635235965,
"description": "Like Sharpe but only penalizes downside volatility"
},
{
"@type": "PropertyValue",
"name": "Volatility (annualized)",
"value": 0.061304337458111736,
"unitText": "%",
"unitCode": "P1",
"minValue": 0
},
{
"@type": "PropertyValue",
"name": "Time in Market",
"value": 99.85141158989599,
"unitText": "%",
"unitCode": "P1",
"minValue": 0,
"maxValue": 100
},
{
"@type": "PropertyValue",
"name": "Backtest Duration",
"value": 672,
"unitText": "days",
"minValue": 0
},
{
"@type": "PropertyValue",
"name": "Equity Samples",
"value": 673,
"unitText": "points",
"minValue": 0
},
{
"@type": "PropertyValue",
"name": "Expectancy per Trade",
"value": 0.0052475594642857155,
"unitText": "USDT"
},
{
"@type": "PropertyValue",
"name": "Average Win",
"value": 0.0052475594642857155,
"unitText": "USDT"
},
{
"@type": "PropertyValue",
"name": "Average Loss",
"value": 0,
"unitText": "USDT"
},
{
"@type": "PropertyValue",
"name": "Median Trade Profit",
"value": 0.0051461475,
"unitText": "USDT"
},
{
"@type": "PropertyValue",
"name": "Gross Profit",
"value": 0.5142608275000001,
"unitText": "USDT",
"minValue": 0
},
{
"@type": "PropertyValue",
"name": "Gross Loss",
"value": 0,
"unitText": "USDT",
"maxValue": 0
},
{
"@type": "PropertyValue",
"name": "Total Fees Paid",
"value": 0.7430530124999999,
"unitText": "USDT",
"minValue": 0
},
{
"@type": "PropertyValue",
"name": "Total Volume Traded",
"value": 992.9881700000005,
"unitText": "USDT",
"minValue": 0
},
{
"@type": "PropertyValue",
"name": "Longest Winning Streak",
"value": 98,
"unitText": "trades",
"minValue": 0
},
{
"@type": "PropertyValue",
"name": "Longest Losing Streak",
"value": 0,
"unitText": "trades",
"minValue": 0
},
{
"@type": "PropertyValue",
"name": "Median Holding Time",
"value": 19.15,
"unitText": "hours",
"minValue": 0
},
{
"@type": "PropertyValue",
"name": "Mean Holding Time",
"value": 95.40697278911564,
"unitText": "hours",
"minValue": 0
},
{
"@type": "PropertyValue",
"name": "Trades per Month",
"value": 77.9206056639154,
"unitText": "trades/month",
"minValue": 0
}
],
"dateCreated": "2026-05-08T13:39:05.092Z",
"dateModified": "2026-05-15T13:00:56.275Z",
"temporalCoverage": "2024-04-23T22:00:01.000Z/2026-02-25T22:59:59.000Z"
}
[!] Disclaimer
Backtester: uncoded.ch/backtesting * Generated 2026-05-15 13:00:56 UTC