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.
AUCTIONUSDT * LongTimeLong
AUCTIONUSDT | 3LongTimeLong.json | 2024-04-24 - 2026-02-25 | -5.93% | 124,175 closed trades | 100.0% closed WR | 235 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 | 1,836.32 USDT | Sum of all winning trades before fees. |
| Gross Loss | 0.00 USDT | Absolute sum of all losing trades. |
| Total Fees | 945.92 USDT | Buy + sell fees across all trades. |
| Fee Drag | 51.5% of gross profit | What share of edge the exchange consumed. |
| Avg Hold Time | 14.6 h | Mean duration a position is open. |
Exit Mix (Fill Types)
| Exit Type | Count | Share | What It Means |
|---|---|---|---|
| TP (Take Profit) | 124,175 | 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 AUCTIONUSDT, 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 51.5% 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="d5be7668-7735-4a5a-8a58-327ff1cf19c7" */}
...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 AUCTIONUSDT, 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 AUCTIONUSDT 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: AUCTIONUSDT is a deeply-liquid USDT-quoted pair on Binance, so the simulated fills here translate well to live execution at retail size. The high trade frequency means cumulative slippage and exchange-side latency will erode a few percent of the headline return over a full year - budget for that gap. 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 -5.93% return on AUCTIONUSDT a good backtest result?
Is a -5.93% return on AUCTIONUSDT 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 AUCTIONUSDT backtest?
What is the annualised return for this AUCTIONUSDT 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 AUCTIONUSDT?
How is this backtest different from others on AUCTIONUSDT?
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 | AUCTIONUSDT |
| 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 | 9,406.97 USDT |
| Avg Profit / Trade | +0.0072 USDT |
| Trades / Month | 5615.7 |
| Status | completed |
| Created | 2026-05-08 13:39:09 UTC |
| Started | 2026-05-10 10:23:12 UTC |
| Completed | 2026-05-10 10:35:15 UTC |
| Compute Time | 9m 47s |
| Backtest ID | d5be7668-7735-4a5a-8a58-327ff1cf19c7 |
| Engine summary: |
Backtest AUCTIONUSDT (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: 9,406.97 USDT
P&L: -593.03 USDT (-5.93%)
Result: LOSS
Completed trades: 124175
Open orders at end: 235
Win rate: 100.0%
Avg. profit/trade: 0.007171 USDT
Best trade: 0.017444 USDT
Worst trade: 0.004991 USDT
Total profit (trades only): 890.406284 USDT
Max drawdown: -27.47%
Profit factor: inf (no losing trades)
Sharpe ratio: -0.11
Total fees: 945.92 USDT
Avg hold time: 14.6h
TP / SL / TSL: 124175 / 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: 586.6s
Verifiable Claims
| Claim | Evidence | Source |
|---|---|---|
| Strategy returned -5.93% over the tested window | return_pct = -5.9303 | GET /backtests/{id} -> return_pct |
| Capital grew from 10,000.00 to 9,406.97 USDT | final_value - start_balance = -593.03 USDT | GET /backtests/{id} -> start_balance, final_value |
| Roughly 124175 of 124175 trades were profitable | win_rate = 100% | GET /backtests/{id} -> win_rate, fulfilled_trades |
| Worst peak-to-trough loss was 27.47% | max_drawdown_pct = 27.4692 | derived client-side from /equity series |
| Risk-adjusted return (Sharpe, annualized, rf=0) = -0.11 | sharpe_annualized = -0.1097 | 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.01 |
stopLoss | false |
tickSize | 0.01 |
buySplits | 9 |
{
"to": "2026-02-25 23:59:59",
"from": "2024-04-24 00:00:01",
"canBuy": true,
"symbol": "AUCTIONUSDT",
"canSell": true,
"canBuyUp": true,
"startBal": 10000,
"stepSize": 0.01,
"stopLoss": false,
"tickSize": 0.01,
"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.01 | 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.01 | 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: AUCTIONUSDT
canSell: true
canBuyUp: true
startBal: 10000
stepSize: 0.01
stopLoss: false
tickSize: 0.01
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 | AUCTIONUSDT | 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 11,461 | #
| :
| :
| :
| # #:
| # ##:## #::#
|###:## # ####### #:::::# ::::## ## #
|::::::##:#:::::::#::::::: #::::::#::# #:######
|:::::::::::::::::::::::::#:::::::::::##::::::::#### ###
9,234 |:::::::::::::::::::::::::::::::::::::::::::::::::::######:::
+------------------------------------------------------------
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 | 12,617.32 USDT @ 2025-03-21 23:59:00 UTC |
| Trough | 9,151.45 USDT @ 2025-12-18 23:59:00 UTC |
| Drawdown Duration | 272.0 days |
| Recovery | not yet recovered within window |
| All-time Peak | 12,617.32 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) | 8,639.84 | 8,639.84 | 91.8% |
| AUCTION | 152.93000000 | 0.00 | 0.0% |
| Other (open positions, fee reserves, …) | - | 767.13 | 8.2% |
| Total | - | 9,406.97 | 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) | +1.00 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 | +1.00 USDT | Gross Profit - Gross Loss |
| Closed-trade buy fees | 0.38 USDT | Sum buy_fee_in_quote over matched-pair rows of /trades |
| Closed-trade sell fees | 0.38 USDT | Sum sell_fee_in_quote over matched-pair rows of /trades |
| Closed-trade fees subtotal | 0.76 USDT | buy + sell on matched pairs |
| Open-position buy fees | 945.16 USDT | bt.total_fees - closed-trade subtotal - buy-side fees on the 235 orders still open at end of window (no matching sell row yet) |
| Total Fees Paid (authoritative) | 945.92 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 | 94877.31% | 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/d5be7668-7735-4a5a-8a58-327ff1cf19c7/trades |
| Closed-trade sell fees | Sum row.sell_fee_in_quote | sell_fee_in_quote per row | GET /backtests/d5be7668-7735-4a5a-8a58-327ff1cf19c7/trades |
| (A) Closed-trade subtotal | Sum (buy_fee_in_quote + sell_fee_in_quote) | both fee fields, matched-pair rows only | GET /backtests/d5be7668-7735-4a5a-8a58-327ff1cf19c7/trades |
| (B) Total Fees Paid (engine) | direct read | total_fees (scalar) | GET /backtests/d5be7668-7735-4a5a-8a58-327ff1cf19c7 |
| (C) = (B) - (A) Open-position buy fees | bt.total_fees - closed_subtotal | derived | - |
| Open orders count | direct read | active_orders | GET /backtests/d5be7668-7735-4a5a-8a58-327ff1cf19c7 |
| Numerical walk-through for this run: |
(A) Closed-trade subtotal = 0.377183 + 0.378112
= 0.755295 USDT
(B) bt.total_fees = 945.917714 USDT <- authoritative
(C) Open-position buy fees = (B) - (A)
= 945.917714 - 0.755295
= 945.162419 USDT
Identity check: (A) + (C) ?= (B)
0.755295 + 945.162419 = 945.917714 USDT
vs bt.total_fees = 945.917714 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 235 open orders.Holding Period Distribution
| Min | Median | Avg | Max |
|---|---|---|---|
| 0.0h | 0.1h | 37.3h | 2834.6h |
Trade Timeline
| First Trade | Last Trade |
|---|---|
| 2024-04-24 00:06:00 UTC | 2026-02-25 23:52:00 UTC |
Breakdown by Exit Type
| Type | Count | Cumulative Profit | Avg Return |
|---|---|---|---|
TP | 100 | +1.00 USDT | +0.20% |
Monthly Performance
GET /backtests/{id}/trades * Fields used: sell_time (bucket key), profit| Month | Trades | Wins | Win Rate | Net P&L (USDT) |
|---|---|---|---|---|
| 2024-04 | 25 | 25 | 100.0% | +0.15 |
| 2024-06 | 9 | 9 | 100.0% | +0.04 |
| 2024-08 | 1 | 1 | 100.0% | +0.00 |
| 2024-12 | 15 | 15 | 100.0% | +0.07 |
| 2025-10 | 1 | 1 | 100.0% | +0.02 |
| 2026-02 | 49 | 49 | 100.0% | +0.71 |
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 | 2025-10-10 -> 2026-02-06 | 4.020000 | 4.040000 | +0.0174 | +0.35% |
| 2 | TP | 2026-02-06 -> 2026-02-06 | 4.020000 | 4.040000 | +0.0174 | +0.35% |
| 3 | TP | 2026-02-06 -> 2026-02-06 | 4.020000 | 4.040000 | +0.0174 | +0.35% |
| 4 | TP | 2026-02-06 -> 2026-02-06 | 4.040000 | 4.060000 | +0.0173 | +0.34% |
| 5 | TP | 2026-02-06 -> 2026-02-06 | 4.070000 | 4.090000 | +0.0171 | +0.34% |
| 6 | TP | 2026-02-06 -> 2026-02-06 | 4.070000 | 4.090000 | +0.0171 | +0.34% |
| 7 | TP | 2026-02-06 -> 2026-02-06 | 4.090000 | 4.110000 | +0.0170 | +0.34% |
| 8 | TP | 2026-02-06 -> 2026-02-06 | 4.090000 | 4.110000 | +0.0170 | +0.34% |
| 9 | TP | 2025-10-10 -> 2025-10-10 | 4.120000 | 4.140000 | +0.0168 | +0.34% |
| 10 | TP | 2026-02-06 -> 2026-02-06 | 4.120000 | 4.140000 | +0.0168 | +0.34% |
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 | -27.47% @ 2025-12-18 23:59:00 UTC |
| Mean | -13.38% |
| Std Dev | 10.64% |
| Last | -25.44% |
| Points | 673 |
| Across 673 points the series ranged from -27.47% (2025-12-18 23:59:00 UTC) to 0.00% (2024-04-24 23:59:00 UTC), averaging -13.38%. 0% of points were positive, 96% negative. The most recent value is -25.44%. | |
| 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.046903247140675605},{"timestamp":"2024-05-17T23:59:00+00:00","drawdown":-0.7061229567759649},{"timestamp":"2024-05-28T23:59:00+00:00","drawdown":0},{"timestamp":"2024-06-09T23:59:00+00:00","drawdown":-1.1374419448194208},{"timestamp":"2024-06-20T23:59:00+00:00","drawdown":-2.621757224294616},{"timestamp":"2024-07-01T23:59:00+00:00","drawdown":-2.584579146366086},{"timestamp":"2024-07-13T23:59:00+00:00","drawdown":-4.210462608812345},{"timestamp":"2024-07-24T23:59:00+00:00","drawdown":-3.1624182397347806},{"timestamp":"2024-08-05T23:59:00+00:00","drawdown":-5.120881348153204},{"timestamp":"2024-08-16T23:59:00+00:00","drawdown":-3.5473778194402126},{"timestamp":"2024-08-27T23:59:00+00:00","drawdown":-3.0493506666896275},{"timestamp":"2024-09-08T23:59:00+00:00","drawdown":-4.701066440648144},{"timestamp":"2024-09-19T23:59:00+00:00","drawdown":-2.5717807823370245},{"timestamp":"2024-09-30T23:59:00+00:00","drawdown":-3.0236189010295464},{"timestamp":"2024-10-12T23:59:00+00:00","drawdown":-3.895619704403737},{"timestamp":"2024-10-23T23:59:00+00:00","drawdown":-4.1518685075633766},{"timestamp":"2024-11-04T23:59:00+00:00","drawdown":-5.930584672377861},{"timestamp":"2024-11-15T23:59:00+00:00","drawdown":-3.166309539989645},{"timestamp":"2024-11-26T23:59:00+00:00","drawdown":-1.7541234830763248},{"timestamp":"2024-12-08T23:59:00+00:00","drawdown":-0.30568299578073443},{"timestamp":"2024-12-19T23:59:00+00:00","drawdown":-2.9258269875319463},{"timestamp":"2024-12-31T23:59:00+00:00","drawdown":-1.2351824906971482},{"timestamp":"2025-01-11T23:59:00+00:00","drawdown":-3.152432551043845},{"timestamp":"2025-01-22T23:59:00+00:00","drawdown":-4.835391180906921},{"timestamp":"2025-02-03T23:59:00+00:00","drawdown":-9.179163713172086},{"timestamp":"2025-02-14T23:59:00+00:00","drawdown":-6.582515080131373},{"timestamp":"2025-02-26T23:59:00+00:00","drawdown":-1.6597138032699184},{"timestamp":"2025-03-09T23:59:00+00:00","drawdown":-0.42739407253361666},{"timestamp":"2025-03-20T23:59:00+00:00","drawdown":0},{"timestamp":"2025-04-01T23:59:00+00:00","drawdown":-19.070369146390554},{"timestamp":"2025-04-12T23:59:00+00:00","drawdown":-20.61612560028268},{"timestamp":"2025-04-23T23:59:00+00:00","drawdown":-21.504637516389412},{"timestamp":"2025-05-05T23:59:00+00:00","drawdown":-22.146991122021024},{"timestamp":"2025-05-16T23:59:00+00:00","drawdown":-21.44725142797698},{"timestamp":"2025-05-28T23:59:00+00:00","drawdown":-21.512069028532796},{"timestamp":"2025-06-08T23:59:00+00:00","drawdown":-22.96296835568784},{"timestamp":"2025-06-19T23:59:00+00:00","drawdown":-24.124390967047567},{"timestamp":"2025-07-01T23:59:00+00:00","drawdown":-25.48037931847315},{"timestamp":"2025-07-12T23:59:00+00:00","drawdown":-23.291095196303722},{"timestamp":"2025-07-24T23:59:00+00:00","drawdown":-22.351413403526674},{"timestamp":"2025-08-04T23:59:00+00:00","drawdown":-22.36745490700768},{"timestamp":"2025-08-15T23:59:00+00:00","drawdown":-22.326248227345722},{"timestamp":"2025-08-27T23:59:00+00:00","drawdown":-22.21305319240297},{"timestamp":"2025-09-07T23:59:00+00:00","drawdown":-22.686076106747542},{"timestamp":"2025-09-19T23:59:00+00:00","drawdown":-22.650739497987573},{"timestamp":"2025-09-30T23:59:00+00:00","drawdown":-23.91383349733713},{"timestamp":"2025-10-11T23:59:00+00:00","drawdown":-27.218937571778223},{"timestamp":"2025-10-23T23:59:00+00:00","drawdown":-23.738961146985048},{"timestamp":"2025-11-03T23:59:00+00:00","drawdown":-25.29125657092078},{"timestamp":"2025-11-14T23:59:00+00:00","drawdown":-25.48280242223954},{"timestamp":"2025-11-26T23:59:00+00:00","drawdown":-26.095804332342766},{"timestamp":"2025-12-07T23:59:00+00:00","drawdown":-26.211808749772274},{"timestamp":"2025-12-19T23:59:00+00:00","drawdown":-26.92974227646478},{"timestamp":"2025-12-30T23:59:00+00:00","drawdown":-26.83308612417142},{"timestamp":"2026-01-10T23:59:00+00:00","drawdown":-25.85451951273151},{"timestamp":"2026-01-22T23:59:00+00:00","drawdown":-26.819770818914883},{"timestamp":"2026-02-02T23:59:00+00:00","drawdown":-25.49852320865985},{"timestamp":"2026-02-14T23:59:00+00:00","drawdown":-25.02883317086327},{"timestamp":"2026-02-25T23:59:00+00:00","drawdown":-25.443969303138115}]
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 | 2,968.69 USDT @ 2025-03-21 23:59:00 UTC |
| Worst Unrealized | -602.46 USDT @ 2025-12-18 23:59:00 UTC |
| Mean | 123.06 USDT |
| Std Dev | 410.77 USDT |
| Last | -432.25 USDT |
| Points | 673 |
| Sum | 82,819.36 USDT |
| Across 673 points the series ranged from -602.46 USDT (2025-12-18 23:59:00 UTC) to 2,968.69 USDT (2025-03-21 23:59:00 UTC), averaging 123.06 USDT. 68% of points were positive, 32% negative. The most recent value is -432.25 USDT. | |
| Showing 60 of 673 points (down-sampled for readability). |
[{"timestamp":"2024-04-24T23:59:00+00:00","pnl":4.0727694},{"timestamp":"2024-05-05T23:59:00+00:00","pnl":30.4143135},{"timestamp":"2024-05-17T23:59:00+00:00","pnl":38.057375375},{"timestamp":"2024-05-28T23:59:00+00:00","pnl":218.33530425},{"timestamp":"2024-06-09T23:59:00+00:00","pnl":231.655301325},{"timestamp":"2024-06-20T23:59:00+00:00","pnl":118.3888919},{"timestamp":"2024-07-01T23:59:00+00:00","pnl":111.62088055},{"timestamp":"2024-07-13T23:59:00+00:00","pnl":-65.377327775},{"timestamp":"2024-07-24T23:59:00+00:00","pnl":30.69000455},{"timestamp":"2024-08-05T23:59:00+00:00","pnl":-51.2874945001},{"timestamp":"2024-08-16T23:59:00+00:00","pnl":94.9249423999},{"timestamp":"2024-08-27T23:59:00+00:00","pnl":298.6276522499},{"timestamp":"2024-09-08T23:59:00+00:00","pnl":119.3857448499},{"timestamp":"2024-09-19T23:59:00+00:00","pnl":327.6908289249},{"timestamp":"2024-09-30T23:59:00+00:00","pnl":272.2544541499},{"timestamp":"2024-10-12T23:59:00+00:00","pnl":173.8626451749},{"timestamp":"2024-10-23T23:59:00+00:00","pnl":140.8876614749},{"timestamp":"2024-11-04T23:59:00+00:00","pnl":-50.9477692251},{"timestamp":"2024-11-15T23:59:00+00:00","pnl":214.2236271499},{"timestamp":"2024-11-26T23:59:00+00:00","pnl":340.5621143249},{"timestamp":"2024-12-08T23:59:00+00:00","pnl":628.0952390749},{"timestamp":"2024-12-19T23:59:00+00:00","pnl":391.5102399499},{"timestamp":"2024-12-31T23:59:00+00:00","pnl":779.19125365},{"timestamp":"2025-01-11T23:59:00+00:00","pnl":634.034293},{"timestamp":"2025-01-22T23:59:00+00:00","pnl":442.891101425},{"timestamp":"2025-02-03T23:59:00+00:00","pnl":-18.68269405},{"timestamp":"2025-02-14T23:59:00+00:00","pnl":248.094037375},{"timestamp":"2025-02-26T23:59:00+00:00","pnl":753.237682325},{"timestamp":"2025-03-09T23:59:00+00:00","pnl":856.86013375},{"timestamp":"2025-03-20T23:59:00+00:00","pnl":2615.8593274001},{"timestamp":"2025-04-01T23:59:00+00:00","pnl":624.9391684751},{"timestamp":"2025-04-12T23:59:00+00:00","pnl":400.6500657751},{"timestamp":"2025-04-23T23:59:00+00:00","pnl":279.4115001251},{"timestamp":"2025-05-05T23:59:00+00:00","pnl":190.8591739751},{"timestamp":"2025-05-16T23:59:00+00:00","pnl":265.3539659001},{"timestamp":"2025-05-28T23:59:00+00:00","pnl":250.9502421001},{"timestamp":"2025-06-08T23:59:00+00:00","pnl":61.7895195},{"timestamp":"2025-06-19T23:59:00+00:00","pnl":-90.83511725},{"timestamp":"2025-07-01T23:59:00+00:00","pnl":-250.33597705},{"timestamp":"2025-07-12T23:59:00+00:00","pnl":24.3100675001},{"timestamp":"2025-07-24T23:59:00+00:00","pnl":126.7443634001},{"timestamp":"2025-08-04T23:59:00+00:00","pnl":115.2080029751},{"timestamp":"2025-08-15T23:59:00+00:00","pnl":115.0655029751},{"timestamp":"2025-08-27T23:59:00+00:00","pnl":121.5779540001},{"timestamp":"2025-09-07T23:59:00+00:00","pnl":58.3349137251},{"timestamp":"2025-09-19T23:59:00+00:00","pnl":58.5766670251},{"timestamp":"2025-09-30T23:59:00+00:00","pnl":-95.6860709249},{"timestamp":"2025-10-11T23:59:00+00:00","pnl":-505.012289375},{"timestamp":"2025-10-23T23:59:00+00:00","pnl":-71.3405655749},{"timestamp":"2025-11-03T23:59:00+00:00","pnl":-280.6852699},{"timestamp":"2025-11-14T23:59:00+00:00","pnl":-320.875261875},{"timestamp":"2025-11-26T23:59:00+00:00","pnl":-409.537985775},{"timestamp":"2025-12-07T23:59:00+00:00","pnl":-437.400456525},{"timestamp":"2025-12-19T23:59:00+00:00","pnl":-534.995765225},{"timestamp":"2025-12-30T23:59:00+00:00","pnl":-527.6232956},{"timestamp":"2026-01-10T23:59:00+00:00","pnl":-417.052934625},{"timestamp":"2026-01-22T23:59:00+00:00","pnl":-544.989997325},{"timestamp":"2026-02-02T23:59:00+00:00","pnl":-410.270979325},{"timestamp":"2026-02-14T23:59:00+00:00","pnl":-373.5661431},{"timestamp":"2026-02-25T23:59:00+00:00","pnl":-432.247542575}]
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 | 12,617.32 USDT @ 2025-03-21 23:59:00 UTC |
| Trough Total Equity | 9,151.45 USDT @ 2025-12-18 23:59:00 UTC |
| Mean | 9,841.10 USDT |
| Std Dev | 388.63 USDT |
| Last | 9,406.97 USDT |
| Points | 673 |
| Sum | 6,623,059.14 USDT |
| Across 673 points the series ranged from 9,151.45 USDT (2025-12-18 23:59:00 UTC) to 12,617.32 USDT (2025-03-21 23:59:00 UTC), averaging 9,841.10 USDT. 100% of points were positive, 0% negative. The most recent value is 9,406.97 USDT. | |
| Showing 60 of 673 points (down-sampled for readability). |
[{"timestamp":"2024-04-24T23:59:00+00:00","quote":9780.484271275,"base":212.8551388249998,"total":9993.3394101},{"timestamp":"2024-05-05T23:59:00+00:00","quote":9588.214134725,"base":402.1865336999999,"total":9990.400668425},{"timestamp":"2024-05-17T23:59:00+00:00","quote":9400.0774916999,"base":557.3638633499995,"total":9957.4413550499},{"timestamp":"2024-05-28T23:59:00+00:00","quote":9651.4786103749,"base":407.01610880000044,"total":10058.4947191749},{"timestamp":"2024-06-09T23:59:00+00:00","quote":9313.27367485,"base":774.6728592749005,"total":10087.9465341249},{"timestamp":"2024-06-20T23:59:00+00:00","quote":8989.9318852499,"base":946.5549509499997,"total":9936.4868361999},{"timestamp":"2024-07-01T23:59:00+00:00","quote":8964.9661262498,"base":975.3143651999999,"total":9940.2804914498},{"timestamp":"2024-07-13T23:59:00+00:00","quote":8651.288107725,"base":1123.0870524999991,"total":9774.375160225},{"timestamp":"2024-07-24T23:59:00+00:00","quote":8799.454531825,"base":1081.8631935999001,"total":9881.3177254249},{"timestamp":"2024-08-05T23:59:00+00:00","quote":8418.2381691749,"base":1263.2377605749007,"total":9681.4759297498},{"timestamp":"2024-08-16T23:59:00+00:00","quote":8563.77182465,"base":1278.2645819999998,"total":9842.03640665},{"timestamp":"2024-08-27T23:59:00+00:00","quote":8860.1897132501,"base":1123.6997926000004,"total":9983.8895058501},{"timestamp":"2024-09-08T23:59:00+00:00","quote":8524.3798098252,"base":1289.4175110249016,"total":9813.7973208501},{"timestamp":"2024-09-19T23:59:00+00:00","quote":8900.6331817753,"base":1132.4360355000008,"total":10033.0692172753},{"timestamp":"2024-09-30T23:59:00+00:00","quote":8792.5509030754,"base":1193.9884365500002,"total":9986.5393396254},{"timestamp":"2024-10-12T23:59:00+00:00","quote":8695.0394446505,"base":1201.7020470000007,"total":9896.7414916505},{"timestamp":"2024-10-23T23:59:00+00:00","quote":8635.6705305007,"base":1234.6826929500003,"total":9870.3532234507},{"timestamp":"2024-11-04T23:59:00+00:00","quote":8355.3920466008,"base":1331.7906073498998,"total":9687.1826539507},{"timestamp":"2024-11-15T23:59:00+00:00","quote":8734.432443801,"base":1237.4127438749983,"total":9971.845187676},{"timestamp":"2024-11-26T23:59:00+00:00","quote":9022.7275443263,"base":1094.5432763998997,"total":10117.2708207262},{"timestamp":"2024-12-08T23:59:00+00:00","quote":9542.6554208011,"base":868.7857216498996,"total":10411.441142451},{"timestamp":"2024-12-19T23:59:00+00:00","quote":8959.7849982509,"base":1202.9144370248996,"total":10162.6994352758},{"timestamp":"2024-12-31T23:59:00+00:00","quote":9186.304866576,"base":1197.9338752499007,"total":10384.2387418259},{"timestamp":"2025-01-11T23:59:00+00:00","quote":8819.9402208011,"base":1362.7167953000007,"total":10182.6570161011},{"timestamp":"2025-01-22T23:59:00+00:00","quote":8560.0311146013,"base":1445.6778278250003,"total":10005.7089424263},{"timestamp":"2025-02-03T23:59:00+00:00","quote":8048.6725341263,"base":1500.3275098000004,"total":9549.0000439263},{"timestamp":"2025-02-14T23:59:00+00:00","quote":8394.0194636762,"base":1427.9949999,"total":9822.0144635762},{"timestamp":"2025-02-26T23:59:00+00:00","quote":8985.7887875264,"base":1353.8142771999992,"total":10339.6030647264},{"timestamp":"2025-03-09T23:59:00+00:00","quote":9148.4847394265,"base":1320.6857422499997,"total":10469.1704816765},{"timestamp":"2025-03-20T23:59:00+00:00","quote":9455.9372253765,"base":2804.5962740251,"total":12260.5334994016},{"timestamp":"2025-04-01T23:59:00+00:00","quote":8597.7622694515,"base":1613.3888501501006,"total":10211.1511196016},{"timestamp":"2025-04-12T23:59:00+00:00","quote":8516.1878615516,"base":1499.9302080000998,"total":10016.1180695517},{"timestamp":"2025-04-23T23:59:00+00:00","quote":8383.4782270766,"base":1520.5334439750986,"total":9904.0116710517},{"timestamp":"2025-05-05T23:59:00+00:00","quote":8254.1893201766,"base":1568.7745360001009,"total":9822.9638561767},{"timestamp":"2025-05-16T23:59:00+00:00","quote":8318.3862041018,"base":1592.8660538000004,"total":9911.2522579018},{"timestamp":"2025-05-28T23:59:00+00:00","quote":8304.2552274268,"base":1598.818785899999,"total":9903.0740133268},{"timestamp":"2025-06-08T23:59:00+00:00","quote":8183.7516493268,"base":1536.2577419,"total":9720.0093912268},{"timestamp":"2025-06-19T23:59:00+00:00","quote":8053.4418509017,"base":1520.0271240001002,"total":9573.4689749018},{"timestamp":"2025-07-01T23:59:00+00:00","quote":7844.6699341517,"base":1557.7096409001006,"total":9402.3795750518},{"timestamp":"2025-07-12T23:59:00+00:00","quote":8194.9084855017,"base":1483.700089725,"total":9678.6085752267},{"timestamp":"2025-07-24T23:59:00+00:00","quote":8373.4229538767,"base":1423.748287325101,"total":9797.1712412018},{"timestamp":"2025-08-04T23:59:00+00:00","quote":8550.4557525268,"base":1244.6914807251014,"total":9795.1472332519},{"timestamp":"2025-08-15T23:59:00+00:00","quote":8581.1261137518,"base":1219.2202984501,"total":9800.3464122019},{"timestamp":"2025-08-27T23:59:00+00:00","quote":8588.9218628769,"base":1225.7067299749997,"total":9814.6285928519},{"timestamp":"2025-09-07T23:59:00+00:00","quote":8491.4100375269,"base":1263.5357369250996,"total":9754.945774452},{"timestamp":"2025-09-19T23:59:00+00:00","quote":8500.649982052,"base":1258.7543256750996,"total":9759.4043077271},{"timestamp":"2025-09-30T23:59:00+00:00","quote":8374.5296056771,"base":1225.506080575,"total":9600.0356862521},{"timestamp":"2025-10-11T23:59:00+00:00","quote":8170.4113301271,"base":1012.6087734001003,"total":9183.0201035272},{"timestamp":"2025-10-23T23:59:00+00:00","quote":8518.7670123771,"base":1103.3328792500997,"total":9622.0998916272},{"timestamp":"2025-11-03T23:59:00+00:00","quote":8401.233232177,"base":1025.0085665750994,"total":9426.2417987521},{"timestamp":"2025-11-14T23:59:00+00:00","quote":8382.150560877,"base":1019.9232834000995,"total":9402.0738442771},{"timestamp":"2025-11-26T23:59:00+00:00","quote":8297.8216858521,"base":1026.9077411251,"total":9324.7294269772},{"timestamp":"2025-12-07T23:59:00+00:00","quote":8326.1253070272,"base":983.9674705000998,"total":9310.0927775273},{"timestamp":"2025-12-19T23:59:00+00:00","quote":8232.4966163273,"base":987.0121852499997,"total":9219.5088015773},{"timestamp":"2025-12-30T23:59:00+00:00","quote":8292.5882839522,"base":939.1159344001007,"total":9231.7042183523},{"timestamp":"2026-01-10T23:59:00+00:00","quote":8421.2540716273,"base":933.9190350001008,"total":9355.1731066274},{"timestamp":"2026-01-22T23:59:00+00:00","quote":8336.9439879524,"base":896.4402651751006,"total":9233.3842531275},{"timestamp":"2026-02-02T23:59:00+00:00","quote":8661.1529212275,"base":738.9373809999997,"total":9400.0903022275},{"timestamp":"2026-02-14T23:59:00+00:00","quote":8703.9007150776,"base":755.4518858250012,"total":9459.3526009026},{"timestamp":"2026-02-25T23:59:00+00:00","quote":8639.8407249275,"base":767.1328185500988,"total":9406.9735434776}]
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 | 24.71% @ 2025-03-21 23:59:00 UTC |
| Min Exposure | 1.56% @ 2024-05-09 23:59:00 UTC |
| Mean | 11.92% |
| Std Dev | 3.10% |
| Last | 8.15% |
| Points | 673 |
| Across 673 points the series ranged from 1.56% (2024-05-09 23:59:00 UTC) to 24.71% (2025-03-21 23:59:00 UTC), averaging 11.92%. 100% of points were positive, 0% negative. The most recent value is 8.15%. | |
| Showing 60 of 673 points (down-sampled for readability). |
[{"timestamp":"2024-04-24T23:59:00+00:00","exposure":2.129970073966194},{"timestamp":"2024-05-05T23:59:00+00:00","exposure":4.025729768487905},{"timestamp":"2024-05-17T23:59:00+00:00","exposure":5.597460667617524},{"timestamp":"2024-05-28T23:59:00+00:00","exposure":4.046491251062545},{"timestamp":"2024-06-09T23:59:00+00:00","exposure":7.679192753989959},{"timestamp":"2024-06-20T23:59:00+00:00","exposure":9.526052482670014},{"timestamp":"2024-07-01T23:59:00+00:00","exposure":9.811738874359968},{"timestamp":"2024-07-13T23:59:00+00:00","exposure":11.490116085068976},{"timestamp":"2024-07-24T23:59:00+00:00","exposure":10.948572079776735},{"timestamp":"2024-08-05T23:59:00+00:00","exposure":13.047987411641962},{"timestamp":"2024-08-16T23:59:00+00:00","exposure":12.987805868471597},{"timestamp":"2024-08-27T23:59:00+00:00","exposure":11.255130497403481},{"timestamp":"2024-09-08T23:59:00+00:00","exposure":13.13882352436038},{"timestamp":"2024-09-19T23:59:00+00:00","exposure":11.287035013673897},{"timestamp":"2024-09-30T23:59:00+00:00","exposure":11.95597790129756},{"timestamp":"2024-10-12T23:59:00+00:00","exposure":12.14240109245887},{"timestamp":"2024-10-23T23:59:00+00:00","exposure":12.509002109636278},{"timestamp":"2024-11-04T23:59:00+00:00","exposure":13.747966306867962},{"timestamp":"2024-11-15T23:59:00+00:00","exposure":12.409064928166872},{"timestamp":"2024-11-26T23:59:00+00:00","exposure":10.818562592568174},{"timestamp":"2024-12-08T23:59:00+00:00","exposure":8.34452896350308},{"timestamp":"2024-12-19T23:59:00+00:00","exposure":11.836564140128528},{"timestamp":"2024-12-31T23:59:00+00:00","exposure":11.536077944980523},{"timestamp":"2025-01-11T23:59:00+00:00","exposure":13.382723125656055},{"timestamp":"2025-01-22T23:59:00+00:00","exposure":14.448529695832185},{"timestamp":"2025-02-03T23:59:00+00:00","exposure":15.711880855569719},{"timestamp":"2025-02-14T23:59:00+00:00","exposure":14.538718153954605},{"timestamp":"2025-02-26T23:59:00+00:00","exposure":13.093484041167331},{"timestamp":"2025-03-09T23:59:00+00:00","exposure":12.614998910959653},{"timestamp":"2025-03-20T23:59:00+00:00","exposure":22.87499376892518},{"timestamp":"2025-04-01T23:59:00+00:00","exposure":15.800264154870804},{"timestamp":"2025-04-12T23:59:00+00:00","exposure":14.975165004891297},{"timestamp":"2025-04-23T23:59:00+00:00","exposure":15.352702465198472},{"timestamp":"2025-05-05T23:59:00+00:00","exposure":15.970480589864454},{"timestamp":"2025-05-16T23:59:00+00:00","exposure":16.07128960450057},{"timestamp":"2025-05-28T23:59:00+00:00","exposure":16.144671682231508},{"timestamp":"2025-06-08T23:59:00+00:00","exposure":15.805105530933062},{"timestamp":"2025-06-19T23:59:00+00:00","exposure":15.877495691322194},{"timestamp":"2025-07-01T23:59:00+00:00","exposure":16.567185237163955},{"timestamp":"2025-07-12T23:59:00+00:00","exposure":15.329683788666362},{"timestamp":"2025-07-24T23:59:00+00:00","exposure":14.5322384622365},{"timestamp":"2025-08-04T23:59:00+00:00","exposure":12.70722584444374},{"timestamp":"2025-08-15T23:59:00+00:00","exposure":12.44058370153235},{"timestamp":"2025-08-27T23:59:00+00:00","exposure":12.488569673107094},{"timestamp":"2025-09-07T23:59:00+00:00","exposure":12.952770483197082},{"timestamp":"2025-09-19T23:59:00+00:00","exposure":12.897860217538781},{"timestamp":"2025-09-30T23:59:00+00:00","exposure":12.765640885377202},{"timestamp":"2025-10-11T23:59:00+00:00","exposure":11.026968927261272},{"timestamp":"2025-10-23T23:59:00+00:00","exposure":11.466653762451372},{"timestamp":"2025-11-03T23:59:00+00:00","exposure":10.873989745423208},{"timestamp":"2025-11-14T23:59:00+00:00","exposure":10.847854423318653},{"timestamp":"2025-11-26T23:59:00+00:00","exposure":11.012734998553123},{"timestamp":"2025-12-07T23:59:00+00:00","exposure":10.568825617669464},{"timestamp":"2025-12-19T23:59:00+00:00","exposure":10.705691664192987},{"timestamp":"2025-12-30T23:59:00+00:00","exposure":10.172725557358863},{"timestamp":"2026-01-10T23:59:00+00:00","exposure":9.982915594993031},{"timestamp":"2026-01-22T23:59:00+00:00","exposure":9.70868579276836},{"timestamp":"2026-02-02T23:59:00+00:00","exposure":7.860960450825635},{"timestamp":"2026-02-14T23:59:00+00:00","exposure":7.986295867149691},{"timestamp":"2026-02-25T23:59:00+00:00","exposure":8.15493755780781}]
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 | 510.64 USDT @ 2026-01-25 23:59:00 UTC |
| Worst Day | -1,269.24 USDT @ 2025-03-22 23:59:00 UTC |
| Mean | -0.8726 USDT |
| Std Dev | 94.34 USDT |
| Last | 28.52 USDT |
| Points | 672 |
| Sum | -586.37 USDT |
| Across 672 points the series ranged from -1,269.24 USDT (2025-03-22 23:59:00 UTC) to 510.64 USDT (2026-01-25 23:59:00 UTC), averaging -0.8726 USDT. 51% of points were positive, 49% negative. The most recent value is 28.52 USDT. | |
| Showing 60 of 672 points (down-sampled for readability). |
[{"timestamp":"2024-04-25T23:59:00+00:00","delta":-1.3507332999997743},{"timestamp":"2024-05-06T23:59:00+00:00","delta":-15.425967725099326},{"timestamp":"2024-05-18T23:59:00+00:00","delta":-5.65540344999863},{"timestamp":"2024-05-29T23:59:00+00:00","delta":134.8073617250011},{"timestamp":"2024-06-09T23:59:00+00:00","delta":14.230349350000324},{"timestamp":"2024-06-21T23:59:00+00:00","delta":-8.279745874999207},{"timestamp":"2024-07-02T23:59:00+00:00","delta":16.636022175000107},{"timestamp":"2024-07-14T23:59:00+00:00","delta":15.207447349999711},{"timestamp":"2024-07-25T23:59:00+00:00","delta":69.42097775000002},{"timestamp":"2024-08-05T23:59:00+00:00","delta":-113.62037317499926},{"timestamp":"2024-08-17T23:59:00+00:00","delta":132.46031497500007},{"timestamp":"2024-08-28T23:59:00+00:00","delta":1.2186288499997318},{"timestamp":"2024-09-08T23:59:00+00:00","delta":9.398894375000964},{"timestamp":"2024-09-20T23:59:00+00:00","delta":-14.572818125001504},{"timestamp":"2024-10-01T23:59:00+00:00","delta":-105.92538840000088},{"timestamp":"2024-10-13T23:59:00+00:00","delta":-0.3808917250007653},{"timestamp":"2024-10-24T23:59:00+00:00","delta":52.31464057499943},{"timestamp":"2024-11-04T23:59:00+00:00","delta":-38.7973595250005},{"timestamp":"2024-11-16T23:59:00+00:00","delta":44.81801957500102},{"timestamp":"2024-11-27T23:59:00+00:00","delta":90.65006410000024},{"timestamp":"2024-12-08T23:59:00+00:00","delta":6.2525568999990355},{"timestamp":"2024-12-20T23:59:00+00:00","delta":201.64440577500136},{"timestamp":"2024-12-31T23:59:00+00:00","delta":72.80672412500098},{"timestamp":"2025-01-12T23:59:00+00:00","delta":-28.47462857500068},{"timestamp":"2025-01-23T23:59:00+00:00","delta":-24.583902450000096},{"timestamp":"2025-02-03T23:59:00+00:00","delta":53.786042499999894},{"timestamp":"2025-02-15T23:59:00+00:00","delta":-58.99267402500118},{"timestamp":"2025-02-26T23:59:00+00:00","delta":-22.84147912499975},{"timestamp":"2025-03-09T23:59:00+00:00","delta":17.309335624899177},{"timestamp":"2025-03-21T23:59:00+00:00","delta":356.78726667500086},{"timestamp":"2025-04-01T23:59:00+00:00","delta":-67.40403139999944},{"timestamp":"2025-04-13T23:59:00+00:00","delta":-101.87172959999953},{"timestamp":"2025-04-24T23:59:00+00:00","delta":63.4881169500004},{"timestamp":"2025-05-05T23:59:00+00:00","delta":28.13942599999973},{"timestamp":"2025-05-17T23:59:00+00:00","delta":-34.49756737500138},{"timestamp":"2025-05-28T23:59:00+00:00","delta":-23.395031000000017},{"timestamp":"2025-06-08T23:59:00+00:00","delta":-30.477536999998847},{"timestamp":"2025-06-20T23:59:00+00:00","delta":-48.421863550000126},{"timestamp":"2025-07-01T23:59:00+00:00","delta":-74.97328177499912},{"timestamp":"2025-07-13T23:59:00+00:00","delta":278.7277099999992},{"timestamp":"2025-07-24T23:59:00+00:00","delta":-14.011093649998656},{"timestamp":"2025-08-04T23:59:00+00:00","delta":38.60226957499981},{"timestamp":"2025-08-16T23:59:00+00:00","delta":9.831143749999683},{"timestamp":"2025-08-27T23:59:00+00:00","delta":17.655415949999224},{"timestamp":"2025-09-07T23:59:00+00:00","delta":1.470402799999647},{"timestamp":"2025-09-19T23:59:00+00:00","delta":-30.548374474999946},{"timestamp":"2025-09-30T23:59:00+00:00","delta":-32.46506587499971},{"timestamp":"2025-10-12T23:59:00+00:00","delta":126.03759727499892},{"timestamp":"2025-10-23T23:59:00+00:00","delta":36.71803505000025},{"timestamp":"2025-11-03T23:59:00+00:00","delta":-98.35171597499902},{"timestamp":"2025-11-15T23:59:00+00:00","delta":1.772411199999624},{"timestamp":"2025-11-26T23:59:00+00:00","delta":7.835728474999996},{"timestamp":"2025-12-07T23:59:00+00:00","delta":-24.294424850000723},{"timestamp":"2025-12-19T23:59:00+00:00","delta":68.06346477499937},{"timestamp":"2025-12-30T23:59:00+00:00","delta":6.063586975000362},{"timestamp":"2026-01-11T23:59:00+00:00","delta":-22.82675234999988},{"timestamp":"2026-01-22T23:59:00+00:00","delta":-16.063628750000134},{"timestamp":"2026-02-02T23:59:00+00:00","delta":142.71043547499903},{"timestamp":"2026-02-14T23:59:00+00:00","delta":18.93306180000036},{"timestamp":"2026-02-25T23:59:00+00:00","delta":28.51551167499929}]
Monthly Returns
GET /backtests/{id}/equity * Fields used: timestamp, total_value_exit_net * Transform: monthlyReturns(equity)returnPct).| Stat | Value |
|---|---|
| Best Month | 5.02% @ 2025-02 |
| Worst Month | -3.84% @ 2025-01 |
| Mean | 0.09% |
| Std Dev | 2.39% |
| Last | 1.62% |
| Points | 23 |
| Across 23 points the series ranged from -3.84% (2025-01) to 5.02% (2025-02), averaging 0.09%. 52% of points were positive, 48% negative. The most recent value is 1.62%. | |
| Full series - 23 points. |
[{"month":"2024-04","returnPct":-0.40884560554108024},{"month":"2024-05","returnPct":2.437003983408337},{"month":"2024-06","returnPct":-2.6485769735060853},{"month":"2024-07","returnPct":1.342938178805157},{"month":"2024-08","returnPct":-1.14559833576372},{"month":"2024-09","returnPct":1.0367625323189147},{"month":"2024-10","returnPct":-0.5080000508822059},{"month":"2024-11","returnPct":4.970424289380544},{"month":"2024-12","returnPct":0.3101627643822371},{"month":"2025-01","returnPct":-3.836285733909849},{"month":"2025-02","returnPct":5.0204024118503305},{"month":"2025-03","returnPct":1.4111252026585424},{"month":"2025-04","returnPct":-3.4230227393651322},{"month":"2025-05","returnPct":-1.6627359650933742},{"month":"2025-06","returnPct":-2.6892609719950187},{"month":"2025-07","returnPct":3.7929621730681498},{"month":"2025-08","returnPct":0.45674577421324125},{"month":"2025-09","returnPct":-1.3682126408954118},{"month":"2025-10","returnPct":-2.4866643315761943},{"month":"2025-11","returnPct":-0.6885371481256061},{"month":"2025-12","returnPct":0.028517276218660337},{"month":"2026-01","returnPct":0.6188900652964244},{"month":"2026-02","returnPct":1.61593970300774}]
Cumulative Trade Profit
GET /backtests/{id}/trades * Fields used: sell_time, profit * Transform: cumulativeProfit(trades)cumProfit).| Stat | Value |
|---|---|
| Peak Cum. | 890.41 USDT @ 2026-02-25 |
| Trough Cum. | 1.49 USDT @ 2024-04-24 |
| Mean | 475.02 USDT |
| Std Dev | 264.77 USDT |
| Last | 890.41 USDT |
| Points | 673 |
| Sum | 319,685.33 USDT |
| Across 673 points the series ranged from 1.49 USDT (2024-04-24) to 890.41 USDT (2026-02-25), averaging 475.02 USDT. 100% of points were positive, 0% negative. The most recent value is 890.41 USDT. | |
| Showing 60 of 673 points (down-sampled for readability). |
[{"timestamp":"2024-04-24","cumProfit":1.486098},{"timestamp":"2024-05-05","cumProfit":15.208841000000001},{"timestamp":"2024-05-17","cumProfit":32.344336},{"timestamp":"2024-05-28","cumProfit":52.029397},{"timestamp":"2024-06-09","cumProfit":70.294913},{"timestamp":"2024-06-20","cumProfit":89.75052900000001},{"timestamp":"2024-07-01","cumProfit":100.31219600000004},{"timestamp":"2024-07-13","cumProfit":115.39246000000004},{"timestamp":"2024-07-24","cumProfit":126.26769300000004},{"timestamp":"2024-08-05","cumProfit":153.418076},{"timestamp":"2024-08-16","cumProfit":167.76611599999998},{"timestamp":"2024-08-27","cumProfit":187.282482},{"timestamp":"2024-09-08","cumProfit":196.43220399999998},{"timestamp":"2024-09-19","cumProfit":207.39901699999996},{"timestamp":"2024-09-30","cumProfit":216.3055119999999},{"timestamp":"2024-10-12","cumProfit":224.8994729999999},{"timestamp":"2024-10-23","cumProfit":231.48618799999986},{"timestamp":"2024-11-04","cumProfit":240.1510489999999},{"timestamp":"2024-11-15","cumProfit":259.64218499999987},{"timestamp":"2024-11-26","cumProfit":278.7293309999999},{"timestamp":"2024-12-08","cumProfit":305.24322499999994},{"timestamp":"2024-12-19","cumProfit":333.1640529999999},{"timestamp":"2024-12-31","cumProfit":364.73822199999984},{"timestamp":"2025-01-11","cumProfit":377.62620199999986},{"timestamp":"2025-01-22","cumProfit":391.82131999999996},{"timestamp":"2025-02-03","cumProfit":405.834474},{"timestamp":"2025-02-14","cumProfit":427.424468},{"timestamp":"2025-02-26","cumProfit":454.0959869999999},{"timestamp":"2025-03-09","cumProfit":480.90650199999993},{"timestamp":"2025-03-20","cumProfit":523.0951889999999},{"timestamp":"2025-04-01","cumProfit":560.387629},{"timestamp":"2025-04-12","cumProfit":589.6436819999999},{"timestamp":"2025-04-23","cumProfit":598.7758499999999},{"timestamp":"2025-05-05","cumProfit":606.280361},{"timestamp":"2025-05-16","cumProfit":620.07397},{"timestamp":"2025-05-28","cumProfit":626.2994489999999},{"timestamp":"2025-06-08","cumProfit":632.3955529999998},{"timestamp":"2025-06-19","cumProfit":638.4797739999998},{"timestamp":"2025-07-01","cumProfit":645.4329289999998},{"timestamp":"2025-07-12","cumProfit":652.6706219999998},{"timestamp":"2025-07-24","cumProfit":668.7989909999998},{"timestamp":"2025-08-04","cumProfit":678.3113439999998},{"timestamp":"2025-08-15","cumProfit":683.653022},{"timestamp":"2025-08-27","cumProfit":691.4227510000001},{"timestamp":"2025-09-07","cumProfit":694.9829739999999},{"timestamp":"2025-09-19","cumProfit":699.199754},{"timestamp":"2025-09-30","cumProfit":705.452582},{"timestamp":"2025-10-11","cumProfit":712.867939},{"timestamp":"2025-10-23","cumProfit":740.9972309999999},{"timestamp":"2025-11-03","cumProfit":754.4838429999999},{"timestamp":"2025-11-14","cumProfit":770.505879},{"timestamp":"2025-11-26","cumProfit":781.8241850000002},{"timestamp":"2025-12-07","cumProfit":795.0500060000002},{"timestamp":"2025-12-19","cumProfit":802.0613380000003},{"timestamp":"2025-12-30","cumProfit":806.8842850000002},{"timestamp":"2026-01-10","cumProfit":819.7828130000003},{"timestamp":"2026-01-22","cumProfit":825.9310220000003},{"timestamp":"2026-02-02","cumProfit":859.4749180000003},{"timestamp":"2026-02-14","cumProfit":884.1039330000003},{"timestamp":"2026-02-25","cumProfit":890.4062750000002}]
Daily Trade Profit
GET /backtests/{id}/trades * Fields used: sell_time, profit * Transform: dailyTradeProfit(trades)profit).| Stat | Value |
|---|---|
| Best Day | 6.94 USDT @ 2025-10-20 |
| Worst Day | 0.0989 USDT @ 2025-12-28 |
| Mean | 1.32 USDT |
| Std Dev | 1.06 USDT |
| Last | 0.6863 USDT |
| Points | 673 |
| Sum | 890.41 USDT |
| Across 673 points the series ranged from 0.0989 USDT (2025-12-28) to 6.94 USDT (2025-10-20), averaging 1.32 USDT. 100% of points were positive, 0% negative. The most recent value is 0.6863 USDT. | |
| Showing 60 of 673 points (down-sampled for readability). |
[{"day":"2024-04-24","profit":1.486098},{"day":"2024-05-05","profit":0.911545},{"day":"2024-05-17","profit":0.625301},{"day":"2024-05-28","profit":1.804541},{"day":"2024-06-09","profit":0.497868},{"day":"2024-06-20","profit":1.390742},{"day":"2024-07-01","profit":1.066429},{"day":"2024-07-13","profit":0.425452},{"day":"2024-07-24","profit":1.609949},{"day":"2024-08-05","profit":4.672182},{"day":"2024-08-16","profit":1.255233},{"day":"2024-08-27","profit":0.81342},{"day":"2024-09-08","profit":0.389095},{"day":"2024-09-19","profit":0.976754},{"day":"2024-09-30","profit":0.86992},{"day":"2024-10-12","profit":0.212516},{"day":"2024-10-23","profit":1.179092},{"day":"2024-11-04","profit":0.443446},{"day":"2024-11-15","profit":1.659957},{"day":"2024-11-26","profit":2.307282},{"day":"2024-12-08","profit":0.90419},{"day":"2024-12-19","profit":3.172939},{"day":"2024-12-31","profit":2.277337},{"day":"2025-01-11","profit":0.434327},{"day":"2025-01-22","profit":0.772075},{"day":"2025-02-03","profit":3.807806},{"day":"2025-02-14","profit":2.884865},{"day":"2025-02-26","profit":3.490624},{"day":"2025-03-09","profit":3.836995},{"day":"2025-03-20","profit":3.395645},{"day":"2025-04-01","profit":1.706624},{"day":"2025-04-12","profit":1.312995},{"day":"2025-04-23","profit":0.912338},{"day":"2025-05-05","profit":0.365331},{"day":"2025-05-16","profit":0.733543},{"day":"2025-05-28","profit":0.391838},{"day":"2025-06-08","profit":0.135815},{"day":"2025-06-19","profit":0.400643},{"day":"2025-07-01","profit":0.477554},{"day":"2025-07-12","profit":1.711923},{"day":"2025-07-24","profit":1.222762},{"day":"2025-08-04","profit":0.48654},{"day":"2025-08-15","profit":0.627602},{"day":"2025-08-27","profit":0.912352},{"day":"2025-09-07","profit":0.123574},{"day":"2025-09-19","profit":0.300241},{"day":"2025-09-30","profit":0.540427},{"day":"2025-10-11","profit":2.469911},{"day":"2025-10-23","profit":1.975126},{"day":"2025-11-03","profit":2.100695},{"day":"2025-11-14","profit":1.470407},{"day":"2025-11-26","profit":0.429752},{"day":"2025-12-07","profit":0.595946},{"day":"2025-12-19","profit":0.598868},{"day":"2025-12-30","profit":0.307693},{"day":"2026-01-10","profit":1.23722},{"day":"2026-01-22","profit":0.570975},{"day":"2026-02-02","profit":6.250913},{"day":"2026-02-14","profit":1.228593},{"day":"2026-02-25","profit":0.686255}]
Trades per Day
GET /backtests/{id}/trades * Fields used: sell_time * Transform: tradesPerDay(trades)count).| Stat | Value |
|---|---|
| Busiest Day | 850 trades @ 2025-10-20 |
| Quietest Day | 8 trades @ 2025-12-28 |
| Mean | 185 trades |
| Std Dev | 158 trades |
| Last | 54 trades |
| Points | 673 |
| Sum | 124175 trades |
| Across 673 points the series ranged from 8 trades (2025-12-28) to 850 trades (2025-10-20), averaging 185 trades. The most recent value is 54 trades. | |
| Showing 60 of 673 points (down-sampled for readability). |
[{"day":"2024-04-24","count":238},{"day":"2024-05-05","count":116},{"day":"2024-05-17","count":101},{"day":"2024-05-28","count":278},{"day":"2024-06-09","count":68},{"day":"2024-06-20","count":203},{"day":"2024-07-01","count":143},{"day":"2024-07-13","count":63},{"day":"2024-07-24","count":226},{"day":"2024-08-05","count":578},{"day":"2024-08-16","count":193},{"day":"2024-08-27","count":138},{"day":"2024-09-08","count":48},{"day":"2024-09-19","count":174},{"day":"2024-09-30","count":151},{"day":"2024-10-12","count":29},{"day":"2024-10-23","count":157},{"day":"2024-11-04","count":80},{"day":"2024-11-15","count":220},{"day":"2024-11-26","count":397},{"day":"2024-12-08","count":139},{"day":"2024-12-19","count":473},{"day":"2024-12-31","count":349},{"day":"2025-01-11","count":79},{"day":"2025-01-22","count":107},{"day":"2025-02-03","count":432},{"day":"2025-02-14","count":483},{"day":"2025-02-26","count":544},{"day":"2025-03-09","count":507},{"day":"2025-03-20","count":581},{"day":"2025-04-01","count":298},{"day":"2025-04-12","count":155},{"day":"2025-04-23","count":169},{"day":"2025-05-05","count":62},{"day":"2025-05-16","count":96},{"day":"2025-05-28","count":73},{"day":"2025-06-08","count":20},{"day":"2025-06-19","count":47},{"day":"2025-07-01","count":48},{"day":"2025-07-12","count":228},{"day":"2025-07-24","count":169},{"day":"2025-08-04","count":63},{"day":"2025-08-15","count":82},{"day":"2025-08-27","count":123},{"day":"2025-09-07","count":15},{"day":"2025-09-19","count":37},{"day":"2025-09-30","count":51},{"day":"2025-10-11","count":249},{"day":"2025-10-23","count":324},{"day":"2025-11-03","count":271},{"day":"2025-11-14","count":166},{"day":"2025-11-26","count":41},{"day":"2025-12-07","count":55},{"day":"2025-12-19","count":44},{"day":"2025-12-30","count":24},{"day":"2026-01-10","count":120},{"day":"2026-01-22","count":43},{"day":"2026-02-02","count":525},{"day":"2026-02-14","count":110},{"day":"2026-02-25","count":54}]
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 | 945.92 USDT @ 2026-02-25 |
| Start | 1.81 USDT @ 2024-04-24 |
| Mean | 535.73 USDT |
| Std Dev | 293.30 USDT |
| Last | 945.92 USDT |
| Points | 673 |
| Sum | 360,546.36 USDT |
| Across 673 points the series ranged from 1.81 USDT (2024-04-24) to 945.92 USDT (2026-02-25), averaging 535.73 USDT. 100% of points were positive, 0% negative. The most recent value is 945.92 USDT. | |
| Showing 60 of 673 points (down-sampled for readability). |
[{"index":0,"timestamp":"2024-04-24","cumFees":1.805559},{"index":11,"timestamp":"2024-05-05","cumFees":17.129744000000002},{"index":23,"timestamp":"2024-05-17","cumFees":36.95792000000001},{"index":34,"timestamp":"2024-05-28","cumFees":58.928087000000005},{"index":46,"timestamp":"2024-06-09","cumFees":81.12457000000002},{"index":57,"timestamp":"2024-06-20","cumFees":103.33005800000002},{"index":68,"timestamp":"2024-07-01","cumFees":114.88599100000002},{"index":80,"timestamp":"2024-07-13","cumFees":130.83811400000005},{"index":91,"timestamp":"2024-07-24","cumFees":143.58758100000006},{"index":103,"timestamp":"2024-08-05","cumFees":174.19357800000006},{"index":114,"timestamp":"2024-08-16","cumFees":191.025138},{"index":125,"timestamp":"2024-08-27","cumFees":213.76634800000002},{"index":137,"timestamp":"2024-09-08","cumFees":223.87862599999997},{"index":148,"timestamp":"2024-09-19","cumFees":236.48061299999998},{"index":159,"timestamp":"2024-09-30","cumFees":247.96601799999996},{"index":171,"timestamp":"2024-10-12","cumFees":256.638457},{"index":182,"timestamp":"2024-10-23","cumFees":263.43094199999996},{"index":194,"timestamp":"2024-11-04","cumFees":272.354081},{"index":205,"timestamp":"2024-11-15","cumFees":293.831344},{"index":216,"timestamp":"2024-11-26","cumFees":316.8750969999999},{"index":228,"timestamp":"2024-12-08","cumFees":348.8436},{"index":239,"timestamp":"2024-12-19","cumFees":382.772307},{"index":251,"timestamp":"2024-12-31","cumFees":420.69881300000003},{"index":262,"timestamp":"2025-01-11","cumFees":436.10427899999996},{"index":273,"timestamp":"2025-01-22","cumFees":452.20156099999997},{"index":285,"timestamp":"2025-02-03","cumFees":465.6915629999999},{"index":296,"timestamp":"2025-02-14","cumFees":486.10057499999994},{"index":308,"timestamp":"2025-02-26","cumFees":516.149218},{"index":319,"timestamp":"2025-03-09","cumFees":546.5741520000001},{"index":330,"timestamp":"2025-03-20","cumFees":600.6062280000001},{"index":342,"timestamp":"2025-04-01","cumFees":646.3459480000001},{"index":353,"timestamp":"2025-04-12","cumFees":677.7774950000003},{"index":364,"timestamp":"2025-04-23","cumFees":688.6747270000001},{"index":376,"timestamp":"2025-05-05","cumFees":697.043316},{"index":387,"timestamp":"2025-05-16","cumFees":711.574307},{"index":399,"timestamp":"2025-05-28","cumFees":719.664127},{"index":410,"timestamp":"2025-06-08","cumFees":726.496224},{"index":421,"timestamp":"2025-06-19","cumFees":732.313903},{"index":433,"timestamp":"2025-07-01","cumFees":737.863644},{"index":444,"timestamp":"2025-07-12","cumFees":744.3419869999999},{"index":456,"timestamp":"2025-07-24","cumFees":762.964518},{"index":467,"timestamp":"2025-08-04","cumFees":773.2480650000001},{"index":478,"timestamp":"2025-08-15","cumFees":778.8095870000001},{"index":490,"timestamp":"2025-08-27","cumFees":786.479358},{"index":501,"timestamp":"2025-09-07","cumFees":789.8224349999999},{"index":513,"timestamp":"2025-09-19","cumFees":793.797755},{"index":524,"timestamp":"2025-09-30","cumFees":798.981938},{"index":535,"timestamp":"2025-10-11","cumFees":804.641202},{"index":547,"timestamp":"2025-10-23","cumFees":831.270138},{"index":558,"timestamp":"2025-11-03","cumFees":846.222327},{"index":569,"timestamp":"2025-11-14","cumFees":860.9936910000001},{"index":581,"timestamp":"2025-11-26","cumFees":869.5481850000001},{"index":592,"timestamp":"2025-12-07","cumFees":880.1969640000002},{"index":604,"timestamp":"2025-12-19","cumFees":884.7592310000001},{"index":615,"timestamp":"2025-12-30","cumFees":887.6606840000002},{"index":626,"timestamp":"2026-01-10","cumFees":896.6447560000001},{"index":638,"timestamp":"2026-01-22","cumFees":900.7171480000001},{"index":649,"timestamp":"2026-02-02","cumFees":927.3297190000001},{"index":661,"timestamp":"2026-02-14","cumFees":942.0268570000002},{"index":672,"timestamp":"2026-02-25","cumFees":945.9177150000002}]
Profit Distribution (%)
GET /backtests/{id}/trades * Fields used: profit_percentage * Transform: profitDistribution(trades, 30)count).| Stat | Value |
|---|---|
| Most Populated Bin | 7887 trades @ 0.13% |
| Least Populated Bin | 0 trades @ 0.33% |
| Mean | 2070 trades |
| Std Dev | 2783 trades |
| Last | 4 trades |
| Points | 60 |
| Sum | 124175 trades |
| Across 60 points the series ranged from 0 trades (0.33%) to 7887 trades (0.13%), averaging 2070 trades. The most recent value is 4 trades. | |
| Full series - 60 points. |
[{"bin":"0.10%","count":7604,"from":0.099812},{"bin":"0.10%","count":7567,"from":0.103935},{"bin":"0.11%","count":6964,"from":0.108057},{"bin":"0.11%","count":6919,"from":0.112179},{"bin":"0.12%","count":7097,"from":0.116301},{"bin":"0.12%","count":7083,"from":0.120423},{"bin":"0.12%","count":7312,"from":0.124545},{"bin":"0.13%","count":7887,"from":0.128667},{"bin":"0.13%","count":7294,"from":0.132789},{"bin":"0.14%","count":6705,"from":0.136912},{"bin":"0.14%","count":6474,"from":0.141034},{"bin":"0.15%","count":6319,"from":0.145156},{"bin":"0.15%","count":5795,"from":0.149278},{"bin":"0.15%","count":5099,"from":0.1534},{"bin":"0.16%","count":4610,"from":0.157522},{"bin":"0.16%","count":3178,"from":0.161644},{"bin":"0.17%","count":2000,"from":0.165766},{"bin":"0.17%","count":1975,"from":0.169888},{"bin":"0.17%","count":1858,"from":0.174011},{"bin":"0.18%","count":1872,"from":0.178133},{"bin":"0.18%","count":999,"from":0.182255},{"bin":"0.19%","count":855,"from":0.186377},{"bin":"0.19%","count":780,"from":0.190499},{"bin":"0.19%","count":698,"from":0.194621},{"bin":"0.20%","count":991,"from":0.198743},{"bin":"0.20%","count":875,"from":0.202865},{"bin":"0.21%","count":742,"from":0.206987},{"bin":"0.21%","count":753,"from":0.21111},{"bin":"0.22%","count":810,"from":0.215232},{"bin":"0.22%","count":564,"from":0.219354},{"bin":"0.22%","count":478,"from":0.223476},{"bin":"0.23%","count":379,"from":0.227598},{"bin":"0.23%","count":438,"from":0.23172},{"bin":"0.24%","count":271,"from":0.235842},{"bin":"0.24%","count":266,"from":0.239964},{"bin":"0.24%","count":450,"from":0.244086},{"bin":"0.25%","count":224,"from":0.248209},{"bin":"0.25%","count":594,"from":0.252331},{"bin":"0.26%","count":295,"from":0.256453},{"bin":"0.26%","count":303,"from":0.260575},{"bin":"0.26%","count":191,"from":0.264697},{"bin":"0.27%","count":107,"from":0.268819},{"bin":"0.27%","count":58,"from":0.272941},{"bin":"0.28%","count":28,"from":0.277063},{"bin":"0.28%","count":35,"from":0.281185},{"bin":"0.29%","count":82,"from":0.285308},{"bin":"0.29%","count":25,"from":0.28943},{"bin":"0.29%","count":24,"from":0.293552},{"bin":"0.30%","count":63,"from":0.297674},{"bin":"0.30%","count":64,"from":0.301796},{"bin":"0.31%","count":52,"from":0.305918},{"bin":"0.31%","count":34,"from":0.31004},{"bin":"0.31%","count":20,"from":0.314162},{"bin":"0.32%","count":1,"from":0.318285},{"bin":"0.32%","count":3,"from":0.322407},{"bin":"0.33%","count":1,"from":0.326529},{"bin":"0.33%","count":0,"from":0.330651},{"bin":"0.33%","count":4,"from":0.334773},{"bin":"0.34%","count":2,"from":0.338895},{"bin":"0.34%","count":4,"from":0.343017}]
Rolling Win Rate (50 Trades)
GET /backtests/{id}/trades * Fields used: profit * Transform: rollingWinRate(trades, 50)winRate).| Stat | Value |
|---|---|
| Hottest Window | 100.00% @ 1241 |
| Coldest Window | 100.00% @ 1241 |
| Mean | 100.00% |
| Std Dev | 0.00% |
| Last | 100.00% |
| Points | 1000 |
| Across 1000 points the series ranged from 100.00% (1241) to 100.00% (1241), 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":1241,"winRate":100},{"index":3333,"winRate":100},{"index":5425,"winRate":100},{"index":7517,"winRate":100},{"index":9609,"winRate":100},{"index":11701,"winRate":100},{"index":13793,"winRate":100},{"index":15885,"winRate":100},{"index":17854,"winRate":100},{"index":19946,"winRate":100},{"index":22038,"winRate":100},{"index":24130,"winRate":100},{"index":26222,"winRate":100},{"index":28314,"winRate":100},{"index":30406,"winRate":100},{"index":32497,"winRate":100},{"index":34589,"winRate":100},{"index":36681,"winRate":100},{"index":38773,"winRate":100},{"index":40865,"winRate":100},{"index":42957,"winRate":100},{"index":45049,"winRate":100},{"index":47141,"winRate":100},{"index":49110,"winRate":100},{"index":51202,"winRate":100},{"index":53294,"winRate":100},{"index":55386,"winRate":100},{"index":57478,"winRate":100},{"index":59570,"winRate":100},{"index":61662,"winRate":100},{"index":63754,"winRate":100},{"index":65846,"winRate":100},{"index":67938,"winRate":100},{"index":70030,"winRate":100},{"index":72122,"winRate":100},{"index":74214,"winRate":100},{"index":76306,"winRate":100},{"index":78275,"winRate":100},{"index":80367,"winRate":100},{"index":82459,"winRate":100},{"index":84551,"winRate":100},{"index":86643,"winRate":100},{"index":88735,"winRate":100},{"index":90827,"winRate":100},{"index":92919,"winRate":100},{"index":95010,"winRate":100},{"index":97102,"winRate":100},{"index":99194,"winRate":100},{"index":101286,"winRate":100},{"index":103378,"winRate":100},{"index":105470,"winRate":100},{"index":107562,"winRate":100},{"index":109531,"winRate":100},{"index":111623,"winRate":100},{"index":113715,"winRate":100},{"index":115807,"winRate":100},{"index":117899,"winRate":100},{"index":119991,"winRate":100},{"index":122083,"winRate":100},{"index":124175,"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.9970 USDT @ 2026-02-25 23:52:00 UTC |
| Trough Net | 0.0063 USDT @ 2024-04-24 00:27:00 UTC |
| Mean | 0.4078 USDT |
| Std Dev | 0.3048 USDT |
| Last | 0.9970 USDT |
| Points | 100 |
| Sum | 40.78 USDT |
| Across 100 points the series ranged from 0.0063 USDT (2024-04-24 00:27:00 UTC) to 0.9970 USDT (2026-02-25 23:52:00 UTC), averaging 0.4078 USDT. 100% of points were positive, 0% negative. The most recent value is 0.9970 USDT. | |
| Showing 60 of 100 points (down-sampled for readability). |
[{"timestamp":"2024-04-24T00:27:00Z","net":0.0062741,"gross":0.014},{"timestamp":"2024-04-24T00:31:00Z","net":0.0187719,"gross":0.042},{"timestamp":"2024-04-24T00:34:00Z","net":0.0249872,"gross":0.056},{"timestamp":"2024-04-24T00:37:00Z","net":0.036913100000000004,"gross":0.083},{"timestamp":"2024-04-24T00:37:00Z","net":0.048843050000000006,"gross":0.11},{"timestamp":"2024-04-24T00:49:00Z","net":0.054783725000000005,"gross":0.1235},{"timestamp":"2024-04-24T00:49:00Z","net":0.06668937500000001,"gross":0.15050000000000002},{"timestamp":"2024-04-24T01:02:00Z","net":0.07862337500000001,"gross":0.17750000000000005},{"timestamp":"2024-04-24T01:03:00Z","net":0.08456000000000001,"gross":0.19100000000000006},{"timestamp":"2024-04-24T01:06:00Z","net":0.09640085000000001,"gross":0.21800000000000008},{"timestamp":"2024-04-24T01:17:00Z","net":0.10823360000000001,"gross":0.2450000000000001},{"timestamp":"2024-04-24T01:19:00Z","net":0.11414592500000001,"gross":0.2585000000000001},{"timestamp":"2024-04-24T01:30:00Z","net":0.125938175,"gross":0.28550000000000014},{"timestamp":"2024-04-24T02:31:00Z","net":0.13814395000000002,"gross":0.31300000000000017},{"timestamp":"2024-04-24T04:47:00Z","net":0.14401982500000002,"gross":0.3265000000000002},{"timestamp":"2024-06-09T03:00:00Z","net":0.15489442500000003,"gross":0.3525000000000002},{"timestamp":"2024-06-11T16:07:00Z","net":0.16487567500000003,"gross":0.3775000000000002},{"timestamp":"2024-06-14T16:36:00Z","net":0.17485692500000002,"gross":0.40250000000000025},{"timestamp":"2024-06-15T05:44:00Z","net":0.17984755000000002,"gross":0.41500000000000026},{"timestamp":"2024-06-17T22:23:00Z","net":0.18982880000000002,"gross":0.4400000000000003},{"timestamp":"2024-08-21T01:18:00Z","net":0.19981005000000002,"gross":0.4650000000000003},{"timestamp":"2024-12-01T14:10:00Z","net":0.20480067500000002,"gross":0.4775000000000003},{"timestamp":"2024-12-04T18:39:00Z","net":0.214781925,"gross":0.5025000000000003},{"timestamp":"2024-12-05T12:28:00Z","net":0.224763175,"gross":0.5275000000000002},{"timestamp":"2024-12-05T20:48:00Z","net":0.2297538,"gross":0.5400000000000001},{"timestamp":"2024-12-13T19:06:00Z","net":0.23973505,"gross":0.5650000000000001},{"timestamp":"2024-12-14T15:00:00Z","net":0.2497163,"gross":0.59},{"timestamp":"2024-12-14T15:41:00Z","net":0.25470692500000003,"gross":0.6024999999999999},{"timestamp":"2024-12-17T02:28:00Z","net":0.2646881750000001,"gross":0.6274999999999998},{"timestamp":"2024-12-21T08:05:00Z","net":0.27466942500000013,"gross":0.6524999999999997},{"timestamp":"2025-10-10T21:37:00Z","net":0.2915115250000001,"gross":0.6768999999999997},{"timestamp":"2026-02-02T03:43:00Z","net":0.3229301250000001,"gross":0.7233644249999996},{"timestamp":"2026-02-06T00:12:00Z","net":0.3550527250000001,"gross":0.7705966749999996},{"timestamp":"2026-02-06T00:14:00Z","net":0.3724964750000001,"gross":0.7955966749999996},{"timestamp":"2026-02-06T00:15:00Z","net":0.40697572500000007,"gross":0.8451966749999996},{"timestamp":"2026-02-06T00:18:00Z","net":0.44149187500000003,"gross":0.8947966749999996},{"timestamp":"2026-02-06T00:19:00Z","net":0.458758875,"gross":0.9195966749999996},{"timestamp":"2026-02-06T00:26:00Z","net":0.492866775,"gross":0.9687966749999996},{"timestamp":"2026-02-06T00:31:00Z","net":0.526130875,"gross":1.0171966749999994},{"timestamp":"2026-02-06T00:33:00Z","net":0.542570875,"gross":1.0411966749999995},{"timestamp":"2026-02-06T00:35:00Z","net":0.574554675,"gross":1.0882604249999994},{"timestamp":"2026-02-06T00:37:00Z","net":0.606196375,"gross":1.1349244749999994},{"timestamp":"2026-02-06T00:44:00Z","net":0.621896975,"gross":1.1581567249999993},{"timestamp":"2026-02-06T01:03:00Z","net":0.653674175,"gross":1.2050207749999993},{"timestamp":"2026-02-06T04:06:00Z","net":0.685092775,"gross":1.2514851999999992},{"timestamp":"2026-02-25T14:47:00Z","net":0.710403375,"gross":1.2918851999999992},{"timestamp":"2026-02-25T14:49:00Z","net":0.7230435249999999,"gross":1.3120851999999992},{"timestamp":"2026-02-25T15:07:00Z","net":0.7481535249999999,"gross":1.3522851999999992},{"timestamp":"2026-02-25T15:32:00Z","net":0.7734489749999999,"gross":1.3926851999999992},{"timestamp":"2026-02-25T15:58:00Z","net":0.7860891249999998,"gross":1.4128851999999992},{"timestamp":"2026-02-25T16:25:00Z","net":0.8110291249999998,"gross":1.4528851999999992},{"timestamp":"2026-02-25T16:50:00Z","net":0.8359091249999998,"gross":1.4928851999999992},{"timestamp":"2026-02-25T16:58:00Z","net":0.8483191249999998,"gross":1.5128851999999993},{"timestamp":"2026-02-25T17:29:00Z","net":0.8731391249999999,"gross":1.5528851999999993},{"timestamp":"2026-02-25T18:28:00Z","net":0.897805325,"gross":1.5926851999999994},{"timestamp":"2026-02-25T20:02:00Z","net":0.9100763749999999,"gross":1.6124851999999994},{"timestamp":"2026-02-25T21:31:00Z","net":0.9347574249999999,"gross":1.6522851999999995},{"timestamp":"2026-02-25T21:36:00Z","net":0.9592698249999999,"gross":1.6918851999999995},{"timestamp":"2026-02-25T23:05:00Z","net":0.9716798249999999,"gross":1.7118851999999996},{"timestamp":"2026-02-25T23:52:00Z","net":0.9969904249999999,"gross":1.7522851999999995}]
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) | 10.41 @ 2025-03-21 23:59:00 UTC |
| Worst Sharpe (30d) | -8.21 @ 2025-02-05 23:59:00 UTC |
| Mean | -0.35 |
| Std Dev | 2.89 |
| Last | -2.29 |
| Points | 643 |
| Across 643 points the series ranged from -8.21 (2025-02-05 23:59:00 UTC) to 10.41 (2025-03-21 23:59:00 UTC), averaging -0.35. The most recent value is -2.29. | |
| Showing 60 of 643 points (down-sampled for readability). |
[{"timestamp":"2024-05-24T23:59:00+00:00","sharpe30":0.7888539062830247,"sharpe90":-0.36816280082435554},{"timestamp":"2024-06-04T23:59:00+00:00","sharpe30":1.8019650129828828,"sharpe90":-0.6253226857888754},{"timestamp":"2024-06-15T23:59:00+00:00","sharpe30":2.7491998800872612,"sharpe90":-0.43198112153541063},{"timestamp":"2024-06-26T23:59:00+00:00","sharpe30":-1.658513632328919,"sharpe90":0.22942681048188346},{"timestamp":"2024-07-07T23:59:00+00:00","sharpe30":-4.448617977932735,"sharpe90":-0.9798511946676741},{"timestamp":"2024-07-17T23:59:00+00:00","sharpe30":-2.286334998868153,"sharpe90":-0.437656374045015},{"timestamp":"2024-07-28T23:59:00+00:00","sharpe30":1.2835935978570525,"sharpe90":0.5492401607218462},{"timestamp":"2024-08-08T23:59:00+00:00","sharpe30":1.1670491538300791,"sharpe90":0.4736246388048245},{"timestamp":"2024-08-19T23:59:00+00:00","sharpe30":0.8540708150173338,"sharpe90":-0.19018007562640601},{"timestamp":"2024-08-30T23:59:00+00:00","sharpe30":-0.5388423474607734,"sharpe90":-0.6915886116695398},{"timestamp":"2024-09-10T23:59:00+00:00","sharpe30":0.6860312653221535,"sharpe90":0.7965670295275681},{"timestamp":"2024-09-21T23:59:00+00:00","sharpe30":-1.7043982269369786,"sharpe90":-1.003022713066762},{"timestamp":"2024-10-02T23:59:00+00:00","sharpe30":-1.2663655256365236,"sharpe90":1.9886153591283084},{"timestamp":"2024-10-12T23:59:00+00:00","sharpe30":0.08668480967350754,"sharpe90":1.2571750087642888},{"timestamp":"2024-10-23T23:59:00+00:00","sharpe30":-2.5832862354457364,"sharpe90":1.0978652098890556},{"timestamp":"2024-11-03T23:59:00+00:00","sharpe30":-3.5678763570090575,"sharpe90":1.3897005629165884},{"timestamp":"2024-11-14T23:59:00+00:00","sharpe30":-0.23141976027202518,"sharpe90":0.4963879339333448},{"timestamp":"2024-11-25T23:59:00+00:00","sharpe30":3.1353664336230374,"sharpe90":0.24043668536857313},{"timestamp":"2024-12-06T23:59:00+00:00","sharpe30":7.68952490733398,"sharpe90":-1.2646773948378973},{"timestamp":"2024-12-17T23:59:00+00:00","sharpe30":3.1872968935387878,"sharpe90":-0.5050292019298461},{"timestamp":"2024-12-28T23:59:00+00:00","sharpe30":1.4444732688226414,"sharpe90":0.44298093046151615},{"timestamp":"2025-01-08T23:59:00+00:00","sharpe30":-0.08175002666502694,"sharpe90":0.7032609621530935},{"timestamp":"2025-01-18T23:59:00+00:00","sharpe30":-0.44021207935948775,"sharpe90":3.2643330535790644},{"timestamp":"2025-01-29T23:59:00+00:00","sharpe30":-5.2443795497251555,"sharpe90":0.08664078463598092},{"timestamp":"2025-02-09T23:59:00+00:00","sharpe30":-5.721819277781904,"sharpe90":-0.3447361206148628},{"timestamp":"2025-02-20T23:59:00+00:00","sharpe30":0.11904291152777036,"sharpe90":-0.21918314250492532},{"timestamp":"2025-03-03T23:59:00+00:00","sharpe30":1.8982701741366754,"sharpe90":0.15058088965902464},{"timestamp":"2025-03-14T23:59:00+00:00","sharpe30":8.519482269960116,"sharpe90":0.46504782470613915},{"timestamp":"2025-03-25T23:59:00+00:00","sharpe30":0.9433174121751547,"sharpe90":-0.24924868748661927},{"timestamp":"2025-04-05T23:59:00+00:00","sharpe30":0.3004502295026573,"sharpe90":-0.36266373183262257},{"timestamp":"2025-04-15T23:59:00+00:00","sharpe30":-3.688194354026965,"sharpe90":-2.377803075661631},{"timestamp":"2025-04-26T23:59:00+00:00","sharpe30":-3.166225582923587,"sharpe90":-2.732281218811241},{"timestamp":"2025-05-07T23:59:00+00:00","sharpe30":-2.0757284460122225,"sharpe90":-1.5583778683610143},{"timestamp":"2025-05-18T23:59:00+00:00","sharpe30":1.0458046829960057,"sharpe90":0.15500761004299377},{"timestamp":"2025-05-29T23:59:00+00:00","sharpe30":0.06672670332314612,"sharpe90":0.2916480806609454},{"timestamp":"2025-06-09T23:59:00+00:00","sharpe30":-4.022990965322391,"sharpe90":-1.0927867877032005},{"timestamp":"2025-06-20T23:59:00+00:00","sharpe30":-4.190468306720752,"sharpe90":-0.6176059825959725},{"timestamp":"2025-07-01T23:59:00+00:00","sharpe30":-4.1327475222832035,"sharpe90":0.23407425409587007},{"timestamp":"2025-07-11T23:59:00+00:00","sharpe30":-1.1339837365627479,"sharpe90":0.09429015001256301},{"timestamp":"2025-07-22T23:59:00+00:00","sharpe30":5.232249736657686,"sharpe90":1.484425922414059},{"timestamp":"2025-08-02T23:59:00+00:00","sharpe30":1.9752661331424506,"sharpe90":0.5202123898020197},{"timestamp":"2025-08-13T23:59:00+00:00","sharpe30":-1.2433707534380758,"sharpe90":-2.2957113117896917},{"timestamp":"2025-08-24T23:59:00+00:00","sharpe30":0.0017374871231932698,"sharpe90":-0.5249541392866574},{"timestamp":"2025-09-04T23:59:00+00:00","sharpe30":-0.30989954118812163,"sharpe90":-0.8657294548852004},{"timestamp":"2025-09-15T23:59:00+00:00","sharpe30":-1.032563347993551,"sharpe90":-1.0822654526651634},{"timestamp":"2025-09-26T23:59:00+00:00","sharpe30":-2.823924606738044,"sharpe90":-1.3393214664057709},{"timestamp":"2025-10-07T23:59:00+00:00","sharpe30":-2.479335734074631,"sharpe90":-1.1222954222272763},{"timestamp":"2025-10-17T23:59:00+00:00","sharpe30":-4.268136725637115,"sharpe90":-1.4480206921677439},{"timestamp":"2025-10-28T23:59:00+00:00","sharpe30":-0.7286124758613772,"sharpe90":-1.0312123727598983},{"timestamp":"2025-11-08T23:59:00+00:00","sharpe30":-0.582561975370114,"sharpe90":-0.5940287633784249},{"timestamp":"2025-11-19T23:59:00+00:00","sharpe30":-5.487103734432578,"sharpe90":-2.623489245031211},{"timestamp":"2025-11-30T23:59:00+00:00","sharpe30":-0.5813485776059947,"sharpe90":0.14798044237190194},{"timestamp":"2025-12-11T23:59:00+00:00","sharpe30":-2.9712118492054564,"sharpe90":-0.17314142149696413},{"timestamp":"2025-12-22T23:59:00+00:00","sharpe30":-0.7236372206837316,"sharpe90":0.4673024695392133},{"timestamp":"2026-01-02T23:59:00+00:00","sharpe30":-0.9722970162568039,"sharpe90":null},{"timestamp":"2026-01-12T23:59:00+00:00","sharpe30":0.1138859046193936,"sharpe90":null},{"timestamp":"2026-01-23T23:59:00+00:00","sharpe30":-0.4376951489673204,"sharpe90":null},{"timestamp":"2026-02-03T23:59:00+00:00","sharpe30":0.40978969050702785,"sharpe90":null},{"timestamp":"2026-02-14T23:59:00+00:00","sharpe30":0.6413711154994346,"sharpe90":null},{"timestamp":"2026-02-25T23:59:00+00:00","sharpe30":-2.291530417658982,"sharpe90":null}]
Drawdown Recovery Episodes
GET /backtests/{id}/equity * Fields used: timestamp, total_value_exit_net * Transform: drawdownRecoveryEpisodes(equity)depth).| Stat | Value |
|---|---|
| Shallowest | -0.18% @ 1 |
| Deepest Episode | -27.47% @ 340 |
| Mean | -4.35% |
| Std Dev | 7.08% |
| Last | -27.47% |
| Points | 14 |
| Across 14 points the series ranged from -27.47% (340) to -0.18% (1), averaging -4.35%. 0% of points were positive, 100% negative. The most recent value is -27.47%. | |
| Full series - 14 points. |
[{"start":"2024-04-30T23:59:00+00:00","end":"2024-05-08T23:59:00+00:00","depth":-0.42627544210227397,"durationDays":8},{"start":"2024-05-12T23:59:00+00:00","end":"2024-05-21T23:59:00+00:00","depth":-1.2702761743243873,"durationDays":9},{"start":"2024-05-22T23:59:00+00:00","end":"2024-05-26T23:59:00+00:00","depth":-0.26177395599801495,"durationDays":4},{"start":"2024-05-30T23:59:00+00:00","end":"2024-05-31T23:59:00+00:00","depth":-0.31365187646022064,"durationDays":1},{"start":"2024-06-01T23:59:00+00:00","end":"2024-08-20T23:59:00+00:00","depth":-5.336510819611071,"durationDays":80},{"start":"2024-08-22T23:59:00+00:00","end":"2024-12-01T23:59:00+00:00","depth":-5.930584672377861,"durationDays":101},{"start":"2024-12-02T23:59:00+00:00","end":"2024-12-03T23:59:00+00:00","depth":-0.18322975872264805,"durationDays":1},{"start":"2024-12-07T23:59:00+00:00","end":"2024-12-15T23:59:00+00:00","depth":-3.2534907484234044,"durationDays":8},{"start":"2024-12-16T23:59:00+00:00","end":"2024-12-24T23:59:00+00:00","depth":-2.9258269875319463,"durationDays":8},{"start":"2024-12-25T23:59:00+00:00","end":"2025-03-10T23:59:00+00:00","depth":-11.172449104759023,"durationDays":75},{"start":"2025-03-12T23:59:00+00:00","end":"2025-03-14T23:59:00+00:00","depth":-0.393312088513882,"durationDays":2},{"start":"2025-03-15T23:59:00+00:00","end":"2025-03-16T23:59:00+00:00","depth":-0.7490309119105956,"durationDays":1},{"start":"2025-03-17T23:59:00+00:00","end":"2025-03-18T23:59:00+00:00","depth":-1.2426888145773216,"durationDays":1},{"start":"2025-03-22T23:59:00+00:00","end":"ongoing","depth":-27.46918694967938,"durationDays":340}]
Consecutive Win/Loss Streaks
GET /backtests/{id}/trades * Fields used: sell_time, profit * Transform: consecutiveStreaks(trades)length).| Stat | Value |
|---|---|
| Longest Streak | 100 trades @ win |
| Shortest Streak | 100 trades @ win |
| Mean | 100 trades |
| Std Dev | 0 trades |
| Last | 100 trades |
| Points | 1 |
| Sum | 100 trades |
| Across 1 points the series ranged from 100 trades (win) to 100 trades (win), averaging 100 trades. The most recent value is 100 trades. | |
| Full series - 1 points. |
[{"type":"win","length":100,"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 | 24.71% @ 2025-03-21 23:59:00 UTC |
| Min Utilization | 1.56% @ 2024-05-09 23:59:00 UTC |
| Mean | 11.92% |
| Std Dev | 3.10% |
| Last | 8.15% |
| Points | 673 |
| Across 673 points the series ranged from 1.56% (2024-05-09 23:59:00 UTC) to 24.71% (2025-03-21 23:59:00 UTC), averaging 11.92%. 100% of points were positive, 0% negative. The most recent value is 8.15%. | |
| Showing 60 of 673 points (down-sampled for readability). |
[{"timestamp":"2024-04-24T23:59:00+00:00","exposure":2.129970073966194},{"timestamp":"2024-05-05T23:59:00+00:00","exposure":4.025729768487905},{"timestamp":"2024-05-17T23:59:00+00:00","exposure":5.597460667617524},{"timestamp":"2024-05-28T23:59:00+00:00","exposure":4.046491251062545},{"timestamp":"2024-06-09T23:59:00+00:00","exposure":7.679192753989959},{"timestamp":"2024-06-20T23:59:00+00:00","exposure":9.526052482670014},{"timestamp":"2024-07-01T23:59:00+00:00","exposure":9.811738874359968},{"timestamp":"2024-07-13T23:59:00+00:00","exposure":11.490116085068976},{"timestamp":"2024-07-24T23:59:00+00:00","exposure":10.948572079776735},{"timestamp":"2024-08-05T23:59:00+00:00","exposure":13.047987411641962},{"timestamp":"2024-08-16T23:59:00+00:00","exposure":12.987805868471597},{"timestamp":"2024-08-27T23:59:00+00:00","exposure":11.255130497403481},{"timestamp":"2024-09-08T23:59:00+00:00","exposure":13.13882352436038},{"timestamp":"2024-09-19T23:59:00+00:00","exposure":11.287035013673897},{"timestamp":"2024-09-30T23:59:00+00:00","exposure":11.95597790129756},{"timestamp":"2024-10-12T23:59:00+00:00","exposure":12.14240109245887},{"timestamp":"2024-10-23T23:59:00+00:00","exposure":12.509002109636278},{"timestamp":"2024-11-04T23:59:00+00:00","exposure":13.747966306867962},{"timestamp":"2024-11-15T23:59:00+00:00","exposure":12.409064928166872},{"timestamp":"2024-11-26T23:59:00+00:00","exposure":10.818562592568174},{"timestamp":"2024-12-08T23:59:00+00:00","exposure":8.34452896350308},{"timestamp":"2024-12-19T23:59:00+00:00","exposure":11.836564140128528},{"timestamp":"2024-12-31T23:59:00+00:00","exposure":11.536077944980523},{"timestamp":"2025-01-11T23:59:00+00:00","exposure":13.382723125656055},{"timestamp":"2025-01-22T23:59:00+00:00","exposure":14.448529695832185},{"timestamp":"2025-02-03T23:59:00+00:00","exposure":15.711880855569719},{"timestamp":"2025-02-14T23:59:00+00:00","exposure":14.538718153954605},{"timestamp":"2025-02-26T23:59:00+00:00","exposure":13.093484041167331},{"timestamp":"2025-03-09T23:59:00+00:00","exposure":12.614998910959653},{"timestamp":"2025-03-20T23:59:00+00:00","exposure":22.87499376892518},{"timestamp":"2025-04-01T23:59:00+00:00","exposure":15.800264154870804},{"timestamp":"2025-04-12T23:59:00+00:00","exposure":14.975165004891297},{"timestamp":"2025-04-23T23:59:00+00:00","exposure":15.352702465198472},{"timestamp":"2025-05-05T23:59:00+00:00","exposure":15.970480589864454},{"timestamp":"2025-05-16T23:59:00+00:00","exposure":16.07128960450057},{"timestamp":"2025-05-28T23:59:00+00:00","exposure":16.144671682231508},{"timestamp":"2025-06-08T23:59:00+00:00","exposure":15.805105530933062},{"timestamp":"2025-06-19T23:59:00+00:00","exposure":15.877495691322194},{"timestamp":"2025-07-01T23:59:00+00:00","exposure":16.567185237163955},{"timestamp":"2025-07-12T23:59:00+00:00","exposure":15.329683788666362},{"timestamp":"2025-07-24T23:59:00+00:00","exposure":14.5322384622365},{"timestamp":"2025-08-04T23:59:00+00:00","exposure":12.70722584444374},{"timestamp":"2025-08-15T23:59:00+00:00","exposure":12.44058370153235},{"timestamp":"2025-08-27T23:59:00+00:00","exposure":12.488569673107094},{"timestamp":"2025-09-07T23:59:00+00:00","exposure":12.952770483197082},{"timestamp":"2025-09-19T23:59:00+00:00","exposure":12.897860217538781},{"timestamp":"2025-09-30T23:59:00+00:00","exposure":12.765640885377202},{"timestamp":"2025-10-11T23:59:00+00:00","exposure":11.026968927261272},{"timestamp":"2025-10-23T23:59:00+00:00","exposure":11.466653762451372},{"timestamp":"2025-11-03T23:59:00+00:00","exposure":10.873989745423208},{"timestamp":"2025-11-14T23:59:00+00:00","exposure":10.847854423318653},{"timestamp":"2025-11-26T23:59:00+00:00","exposure":11.012734998553123},{"timestamp":"2025-12-07T23:59:00+00:00","exposure":10.568825617669464},{"timestamp":"2025-12-19T23:59:00+00:00","exposure":10.705691664192987},{"timestamp":"2025-12-30T23:59:00+00:00","exposure":10.172725557358863},{"timestamp":"2026-01-10T23:59:00+00:00","exposure":9.982915594993031},{"timestamp":"2026-01-22T23:59:00+00:00","exposure":9.70868579276836},{"timestamp":"2026-02-02T23:59:00+00:00","exposure":7.860960450825635},{"timestamp":"2026-02-14T23:59:00+00:00","exposure":7.986295867149691},{"timestamp":"2026-02-25T23:59:00+00:00","exposure":8.15493755780781}]
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 | 20.05 @ 2024-06-09 03:00:00 UTC |
| Lowest Price | 4.02 @ 2025-10-10 21:40:00 UTC |
| Mean | 12.24 |
| Std Dev | 7.36 |
| Last | 5.00 |
| Points | 169 |
| Across 169 points the series ranged from 4.02 (2025-10-10 21:40:00 UTC) to 20.05 (2024-06-09 03:00:00 UTC), averaging 12.24. The most recent value is 5.00. | |
| Showing 60 of 169 points (down-sampled for readability). |
[{"timestamp":"2024-04-24T00:06:00Z","price":18.64},{"timestamp":"2024-04-24T00:15:00Z","price":18.53},{"timestamp":"2024-04-24T00:22:00Z","price":18.41},{"timestamp":"2024-04-24T00:28:00Z","price":18.46},{"timestamp":"2024-04-24T00:34:00Z","price":18.56},{"timestamp":"2024-04-24T00:37:00Z","price":18.67},{"timestamp":"2024-04-24T00:49:00Z","price":18.69},{"timestamp":"2024-04-24T00:54:00Z","price":18.6},{"timestamp":"2024-04-24T01:02:00Z","price":18.67},{"timestamp":"2024-04-24T01:06:00Z","price":18.71},{"timestamp":"2024-04-24T01:09:00Z","price":18.71},{"timestamp":"2024-04-24T01:15:00Z","price":18.69},{"timestamp":"2024-04-24T01:21:00Z","price":18.74},{"timestamp":"2024-04-24T02:07:00Z","price":18.65},{"timestamp":"2024-04-24T05:15:00Z","price":18.83},{"timestamp":"2024-06-10T07:35:00Z","price":20},{"timestamp":"2024-06-11T16:07:00Z","price":20.05},{"timestamp":"2024-06-12T12:30:00Z","price":20.05},{"timestamp":"2024-06-15T05:44:00Z","price":20.05},{"timestamp":"2024-06-17T22:20:00Z","price":20},{"timestamp":"2024-06-17T22:55:00Z","price":20.05},{"timestamp":"2024-12-01T14:08:00Z","price":20},{"timestamp":"2024-12-01T15:03:00Z","price":20.05},{"timestamp":"2024-12-04T18:39:00Z","price":20.05},{"timestamp":"2024-12-05T12:28:00Z","price":20.05},{"timestamp":"2024-12-08T17:10:00Z","price":20},{"timestamp":"2024-12-13T19:06:00Z","price":20.05},{"timestamp":"2024-12-14T15:00:00Z","price":20},{"timestamp":"2024-12-14T22:09:00Z","price":20},{"timestamp":"2024-12-17T02:28:00Z","price":20.05},{"timestamp":"2024-12-21T01:08:00Z","price":20.05},{"timestamp":"2025-10-10T21:40:00Z","price":4.02},{"timestamp":"2026-02-02T03:38:00Z","price":4.29},{"timestamp":"2026-02-02T03:46:00Z","price":4.32},{"timestamp":"2026-02-06T00:10:00Z","price":4.23},{"timestamp":"2026-02-06T00:15:00Z","price":4.02},{"timestamp":"2026-02-06T00:19:00Z","price":4.04},{"timestamp":"2026-02-06T00:25:00Z","price":4.09},{"timestamp":"2026-02-06T00:32:00Z","price":4.19},{"timestamp":"2026-02-06T00:35:00Z","price":4.29},{"timestamp":"2026-02-06T00:44:00Z","price":4.32},{"timestamp":"2026-02-06T01:03:00Z","price":4.29},{"timestamp":"2026-02-06T04:02:00Z","price":4.3},{"timestamp":"2026-02-22T09:16:00Z","price":5},{"timestamp":"2026-02-25T14:35:00Z","price":4.96},{"timestamp":"2026-02-25T14:47:00Z","price":5},{"timestamp":"2026-02-25T15:00:00Z","price":5.02},{"timestamp":"2026-02-25T15:09:00Z","price":4.99},{"timestamp":"2026-02-25T15:33:00Z","price":5},{"timestamp":"2026-02-25T16:13:00Z","price":5.02},{"timestamp":"2026-02-25T16:32:00Z","price":5.03},{"timestamp":"2026-02-25T16:50:00Z","price":5.05},{"timestamp":"2026-02-25T17:12:00Z","price":5.07},{"timestamp":"2026-02-25T17:54:00Z","price":5.05},{"timestamp":"2026-02-25T18:30:00Z","price":5.08},{"timestamp":"2026-02-25T20:03:00Z","price":5.06},{"timestamp":"2026-02-25T21:15:00Z","price":5.05},{"timestamp":"2026-02-25T21:36:00Z","price":5.1},{"timestamp":"2026-02-25T23:40:00Z","price":4.98},{"timestamp":"2026-02-25T23:52:00Z","price":5}]
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 | 30 trades @ $5.00 |
| Least Populated Bin | 0 trades @ $5.08 |
| Mean | 4 trades |
| Std Dev | 7 trades |
| Last | 1 trades |
| Points | 25 |
| Sum | 100 trades |
| Across 25 points the series ranged from 0 trades (5.08)to∗∗30trades∗∗(5.00), averaging 4 trades. The most recent value is 1 trades. | |
| Full series - 25 points. |
[{"bin":"$5.00","count":30,"from":5},{"bin":"$5.01","count":9,"from":5.007312},{"bin":"$5.01","count":7,"from":5.014624},{"bin":"$5.02","count":12,"from":5.021936},{"bin":"$5.03","count":15,"from":5.029248},{"bin":"$5.04","count":8,"from":5.036560000000001},{"bin":"$5.04","count":7,"from":5.043872},{"bin":"$5.05","count":3,"from":5.051184},{"bin":"$5.06","count":2,"from":5.058496000000001},{"bin":"$5.07","count":1,"from":5.0658080000000005},{"bin":"$5.07","count":1,"from":5.07312},{"bin":"$5.08","count":0,"from":5.080432000000001},{"bin":"$5.09","count":0,"from":5.087744000000001},{"bin":"$5.10","count":0,"from":5.0950560000000005},{"bin":"$5.10","count":0,"from":5.102368},{"bin":"$5.11","count":0,"from":5.109680000000001},{"bin":"$5.12","count":0,"from":5.116992000000001},{"bin":"$5.12","count":0,"from":5.124304},{"bin":"$5.13","count":0,"from":5.131616000000001},{"bin":"$5.14","count":1,"from":5.138928000000001},{"bin":"$5.15","count":0,"from":5.146240000000001},{"bin":"$5.15","count":2,"from":5.153552000000001},{"bin":"$5.16","count":1,"from":5.160864000000001},{"bin":"$5.17","count":0,"from":5.168176000000001},{"bin":"$5.18","count":1,"from":5.175488000000001}]
Return Distribution by Fill Type
GET /backtests/{id}/trades * Fields used: fill_type, profit_percentage * Transform: returnByFillType(trades)TP).| Stat | Value |
|---|---|
| Largest TP Bin | 25 trades @ 0.1 |
| Smallest TP Bin | 0 trades @ 0.12 |
| Mean | 5 trades |
| Std Dev | 8 trades |
| Last | 10 trades |
| Points | 20 |
| Sum | 100 trades |
| Across 20 points the series ranged from 0 trades (0.12) to 25 trades (0.1), averaging 5 trades. The most recent value is 10 trades. | |
| Full series - 20 points. |
[
{
"bin": 0.1,
"TP": 25,
"SL": 0,
"TSL": 0
},
{
"bin": 0.11,
"TP": 25,
"SL": 0,
"TSL": 0
},
{
"bin": 0.12,
"TP": 0,
"SL": 0,
"TSL": 0
},
{
"bin": 0.14,
"TP": 0,
"SL": 0,
"TSL": 0
},
{
"bin": 0.15,
"TP": 0,
"SL": 0,
"TSL": 0
},
{
"bin": 0.16,
"TP": 0,
"SL": 0,
"TSL": 0
},
{
"bin": 0.17,
"TP": 0,
"SL": 0,
"TSL": 0
},
{
"bin": 0.19,
"TP": 0,
"SL": 0,
"TSL": 0
},
{
"bin": 0.2,
"TP": 0,
"SL": 0,
"TSL": 0
},
{
"bin": 0.21,
"TP": 0,
"SL": 0,
"TSL": 0
},
{
"bin": 0.22,
"TP": 0,
"SL": 0,
"TSL": 0
},
{
"bin": 0.24,
"TP": 14,
"SL": 0,
"TSL": 0
},
{
"bin": 0.25,
"TP": 11,
"SL": 0,
"TSL": 0
},
{
"bin": 0.26,
"TP": 0,
"SL": 0,
"TSL": 0
},
{
"bin": 0.27,
"TP": 0,
"SL": 0,
"TSL": 0
},
{
"bin": 0.29,
"TP": 0,
"SL": 0,
"TSL": 0
},
{
"bin": 0.3,
"TP": 0,
"SL": 0,
"TSL": 0
},
{
"bin": 0.31,
"TP": 11,
"SL": 0,
"TSL": 0
},
{
"bin": 0.32,
"TP": 4,
"SL": 0,
"TSL": 0
},
{
"bin": 0.33,
"TP": 10,
"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 | 99.83 @ Mar |
| Worst Indexed Value | 90.47 @ Dec |
| Mean | 94.44 |
| Std Dev | 2.93 |
| Last | 90.47 |
| Points | 12 |
| Across 12 points the series ranged from 90.47 (Dec) to 99.83 (Mar), averaging 94.44. The most recent value is 90.47. | |
| Full series - 12 points. |
[
{
"2025": 96.16371426609015,
"2026": 100.61889006529643,
"month": "Jan"
},
{
"2025": 99.40250967015288,
"2026": 101.14162668054483,
"month": "Feb"
},
{
"2025": 99.82634648399721,
"month": "Mar"
},
{
"2024": 99.59115439445893,
"2025": 95.77704160201309,
"month": "Apr"
},
{
"2024": 102.10812241288511,
"2025": 94.29940794222895,
"month": "May"
},
{
"2024": 99.29736999696784,
"2025": 92.04499038413006,
"month": "Jun"
},
{
"2024": 100.80486511914634,
"2025": 94.78045573121938,
"month": "Jul"
},
{
"2024": 99.74863654661313,
"2025": 94.95811602859715,
"month": "Aug"
},
{
"2024": 99.93195397258572,
"2025": 93.23649818439263,
"month": "Sep"
},
{
"2024": 98.36972431247915,
"2025": 91.3458348053606,
"month": "Oct"
},
{
"2024": 102.94661935457223,
"2025": 90.9944603430726,
"month": "Nov"
},
{
"2024": 103.91159867272025,
"2025": 90.46944533941104,
"month": "Dec"
}
]
Profit by Weekday
GET /backtests/{id}/trades * Fields used: sell_time, profit * Transform: profitByWeekday(trades)profit).| Stat | Value |
|---|---|
| Best Weekday | 145.55 USDT @ Sun |
| Worst Weekday | 103.04 USDT @ Fri |
| Mean | 127.20 USDT |
| Std Dev | 12.41 USDT |
| Last | 145.55 USDT |
| Points | 7 |
| Sum | 890.41 USDT |
| Across 7 points the series ranged from 103.04 USDT (Fri) to 145.55 USDT (Sun), averaging 127.20 USDT. 100% of points were positive, 0% negative. The most recent value is 145.55 USDT. | |
| Full series - 7 points. |
[
{
"day": "Mon",
"profit": 130.709141
},
{
"day": "Tue",
"profit": 131.864209
},
{
"day": "Wed",
"profit": 125.044796
},
{
"day": "Thu",
"profit": 134.808504
},
{
"day": "Fri",
"profit": 103.036827
},
{
"day": "Sat",
"profit": 119.391873
},
{
"day": "Sun",
"profit": 145.550934
}
]
Profit by Hour (UTC)
GET /backtests/{id}/trades * Fields used: sell_time, profit * Transform: profitByHour(trades)profit).| Stat | Value |
|---|---|
| Best Hour (UTC) | 54.70 USDT @ 0:00 |
| Worst Hour (UTC) | 28.12 USDT @ 23:00 |
| Mean | 37.10 USDT |
| Std Dev | 6.73 USDT |
| Last | 28.12 USDT |
| Points | 24 |
| Sum | 890.41 USDT |
| Across 24 points the series ranged from 28.12 USDT (23:00) to 54.70 USDT (0:00), averaging 37.10 USDT. 100% of points were positive, 0% negative. The most recent value is 28.12 USDT. | |
| Full series - 24 points. |
[{"hour":"0:00","profit":54.699327},{"hour":"1:00","profit":45.582199},{"hour":"2:00","profit":38.232493},{"hour":"3:00","profit":34.405676},{"hour":"4:00","profit":34.540313},{"hour":"5:00","profit":33.908856},{"hour":"6:00","profit":33.950752},{"hour":"7:00","profit":35.29686},{"hour":"8:00","profit":37.156427},{"hour":"9:00","profit":33.897493},{"hour":"10:00","profit":32.097125},{"hour":"11:00","profit":33.049},{"hour":"12:00","profit":36.826214},{"hour":"13:00","profit":43.045505},{"hour":"14:00","profit":50.136701},{"hour":"15:00","profit":46.186839},{"hour":"16:00","profit":45.084332},{"hour":"17:00","profit":38.080217},{"hour":"18:00","profit":33.753407},{"hour":"19:00","profit":30.169095},{"hour":"20:00","profit":31.531453},{"hour":"21:00","profit":30.123487},{"hour":"22:00","profit":30.530869},{"hour":"23:00","profit":28.121646}]
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.35% @ 2834.5666666666666 |
| Worst Trade Return | 0.10% @ 0.03333333333333333 |
| Mean | 0.20% |
| Std Dev | 0.09% |
| Last | 0.25% |
| Points | 100 |
| Across 100 points the series ranged from 0.10% (0.03333333333333333) to 0.35% (2834.5666666666666), averaging 0.20%. 100% of points were positive, 0% negative. The most recent value is 0.25%. | |
| Showing 60 of 100 points (down-sampled for readability). |
[{"hours":0.7166666666666667,"profitPct":0.1180391631,"profit":0.005940675},{"hours":0.45,"profitPct":0.1187600861,"profit":0.005960925},{"hours":0.6666666666666666,"profitPct":0.1196303292,"profit":0.005985225},{"hours":0.2,"profitPct":0.120799458,"profit":0.0062405},{"hours":0.1,"profitPct":0.1213878327,"profit":0.0062573},{"hours":0.05,"profitPct":0.1219787697,"profit":0.0062741},{"hours":0.03333333333333333,"profitPct":0.1190495423,"profit":0.005969025},{"hours":0.13333333333333333,"profitPct":0.1186155914,"profit":0.005956875},{"hours":0.23333333333333334,"profitPct":0.1176084628,"profit":0.005928525},{"hours":1.2166666666666666,"profitPct":0.1186155914,"profit":0.005956875},{"hours":0,"profitPct":0.1170363442,"profit":0.005912325},{"hours":0.38333333333333336,"profitPct":0.1163246269,"profit":0.005892075},{"hours":0.1,"profitPct":0.1170363442,"profit":0.005912325},{"hours":0.05,"profitPct":0.1166088581,"profit":0.005900175},{"hours":3.85,"profitPct":0.1160410011,"profit":0.005883975},{"hours":0.03333333333333333,"profitPct":0.0998125,"profit":0.004990625},{"hours":0.65,"profitPct":0.0998125,"profit":0.004990625},{"hours":0,"profitPct":0.0998125,"profit":0.004990625},{"hours":12.866666666666667,"profitPct":0.0998125,"profit":0.004990625},{"hours":0.05,"profitPct":0.0998125,"profit":0.004990625},{"hours":0.13333333333333333,"profitPct":0.0998125,"profit":0.004990625},{"hours":0.03333333333333333,"profitPct":0.0998125,"profit":0.004990625},{"hours":0.13333333333333333,"profitPct":0.0998125,"profit":0.004990625},{"hours":0.31666666666666665,"profitPct":0.0998125,"profit":0.004990625},{"hours":0.016666666666666666,"profitPct":0.0998125,"profit":0.004990625},{"hours":0.1,"profitPct":0.0998125,"profit":0.004990625},{"hours":0,"profitPct":0.0998125,"profit":0.004990625},{"hours":0.11666666666666667,"profitPct":0.0998125,"profit":0.004990625},{"hours":0.016666666666666666,"profitPct":0.0998125,"profit":0.004990625},{"hours":0,"profitPct":0.0998125,"profit":0.004990625},{"hours":0,"profitPct":0.3350728155,"profit":0.0168421},{"hours":0.016666666666666666,"profitPct":0.3147674419,"profit":0.0157006},{"hours":0.016666666666666666,"profitPct":0.3147674419,"profit":0.0157006},{"hours":0.5333333333333333,"profitPct":0.3158508159,"profit":0.015718},{"hours":0.4,"profitPct":0.3224586288,"profit":0.0160952},{"hours":0,"profitPct":0.3258333333,"profit":0.016422},{"hours":0.31666666666666665,"profitPct":0.3258333333,"profit":0.016422},{"hours":0,"profitPct":0.3471393035,"profit":0.01744375},{"hours":0,"profitPct":0.341031941,"profit":0.0170724},{"hours":0,"profitPct":0.3446782178,"profit":0.017267},{"hours":0.016666666666666666,"profitPct":0.3386308068,"profit":0.0170355},{"hours":0.016666666666666666,"profitPct":0.3269689737,"profit":0.01644},{"hours":0.016666666666666666,"profitPct":0.3147674419,"profit":0.0157006},{"hours":0.016666666666666666,"profitPct":0.3180327869,"profit":0.0158886},{"hours":0.06666666666666667,"profitPct":0.3147674419,"profit":0.0157006},{"hours":79.7,"profitPct":0.2441814596,"profit":0.0122562},{"hours":77.93333333333334,"profitPct":0.2457425743,"profit":0.01241},{"hours":0.016666666666666666,"profitPct":0.2513052209,"profit":0.01264015},{"hours":1.4166666666666667,"profitPct":0.2481075697,"profit":0.012455},{"hours":0.016666666666666666,"profitPct":0.250501002,"profit":0.012625},{"hours":0,"profitPct":0.2529233871,"profit":0.01267045},{"hours":0.016666666666666666,"profitPct":0.2513052209,"profit":0.01264015},{"hours":0.05,"profitPct":0.2473161034,"profit":0.01244},{"hours":0.15,"profitPct":0.2457425743,"profit":0.01241},{"hours":0.35,"profitPct":0.2457425743,"profit":0.01241},{"hours":3.1,"profitPct":0.2434055118,"profit":0.01224135},{"hours":0.48333333333333334,"profitPct":0.2449604743,"profit":0.01227105},{"hours":0.05,"profitPct":0.2449604743,"profit":0.01227105},{"hours":0.25,"profitPct":0.2457425743,"profit":0.01241},{"hours":0.13333333333333333,"profitPct":0.2529233871,"profit":0.01267045}]
Fill Type Breakdown
GET /backtests/{id}/trades * Fields used: fill_type * Transform: computeKPIs(equity, trades).fillTypescount).| Stat | Value |
|---|---|
| Most Frequent Exit | 100 trades @ TP |
| Least Frequent Exit | 0 trades @ SL |
| Mean | 33 trades |
| Std Dev | 47 trades |
| Last | 0 trades |
| Points | 3 |
| Sum | 100 trades |
| Across 3 points the series ranged from 0 trades (SL) to 100 trades (TP), averaging 33 trades. The most recent value is 0 trades. | |
| Full series - 3 points. |
[
{
"type": "TP",
"count": 100
},
{
"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": "d5be7668-7735-4a5a-8a58-327ff1cf19c7",
"symbol": "AUCTIONUSDT",
"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": 9406.97354348,
"return_pct": -5.9303,
"total_profit_usdt": 890.4062841,
"avg_profit_per_trade_usdt": 0.00717058,
"fulfilled_trades": 124175,
"active_orders": 235,
"win_rate_pct": 100,
"best_trade_usdt": 0.01744375,
"worst_trade_usdt": 0.00499063,
"trades_per_month": 5615.665239882004,
"max_drawdown_pct": 27.46918694967938,
"max_drawdown_abs_usdt": 3465.8754292742997,
"drawdown_duration_days": 272,
"recovery_days": null,
"cagr_pct": -3.2681883054839878,
"volatility_annualized_pct": 16.849630405289698,
"sharpe_annualized": -0.10966246036424768,
"sortino_annualized": -0.10353181860735179,
"time_in_market_pct": 100,
"final_cash_usdt": 8639.8407249275,
"final_base_value_usdt": null,
"final_unrealized_pnl_usdt": -432.247542575,
"median_hold_hours": 0.14166666666666666,
"avg_hold_hours": 37.346626984127,
"buyhold_return_pct": null,
"outperformance_vs_buyhold_pp": null
}
| Key | Value |
|---|---|
backtest_id | d5be7668-7735-4a5a-8a58-327ff1cf19c7 |
symbol | AUCTIONUSDT |
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 | 9406.97354348 |
return_pct | -5.9303 |
total_profit_usdt | 890.4062841 |
avg_profit_per_trade_usdt | 0.00717058 |
fulfilled_trades | 124175 |
active_orders | 235 |
win_rate_pct | 100 |
best_trade_usdt | 0.01744375 |
worst_trade_usdt | 0.00499063 |
trades_per_month | 5615.665239882004 |
max_drawdown_pct | 27.46918694967938 |
max_drawdown_abs_usdt | 3465.8754292742997 |
drawdown_duration_days | 272 |
recovery_days | null |
cagr_pct | -3.2681883054839878 |
volatility_annualized_pct | 16.849630405289698 |
sharpe_annualized | -0.10966246036424768 |
sortino_annualized | -0.10353181860735179 |
time_in_market_pct | 100 |
final_cash_usdt | 8639.8407249275 |
final_base_value_usdt | null |
final_unrealized_pnl_usdt | -432.247542575 |
median_hold_hours | 0.14166666666666666 |
avg_hold_hours | 37.346626984127 |
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 | AUCTIONUSDT |
| 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 | 9,406.97 USDT |
| Return % | GET /backtests/{id} | $.return_pct | direct API value (cross-check: (final_value/start_balance - 1) * 100) | -5.93% |
| Total profit | GET /backtests/{id} | $.total_profit | direct API value (cross-check: Sum trades[].profit) | +890.41 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)) | 124,175 |
| Best trade | GET /backtests/{id} | $.max_profit | direct API value (cross-check: max(trades[].profit)) | +0.0174 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.0072 USDT |
| Trades / month | derived | n/a | fulfilled_trades / (durationDays / 30.4375) | 5615.7 |
| Max drawdown % | GET /backtests/{id}/equity | $[*].total_value_* | maxDrawdown(equity) - running peak vs. trough | -27.47% |
| Max drawdown abs | GET /backtests/{id}/equity | $[*].total_value_* | maxDrawdown(equity).abs | -3,465.88 USDT |
| CAGR % | GET /backtests/{id}/equity | $[*].timestamp, $[*].total_value_* | (final/start)^(365.25/days) - 1 | -3.27% |
| Volatility (ann.) % | GET /backtests/{id}/equity | $[*].timestamp, $[*].total_value_* | std(daily_returns) * sqrt(365) | 16.85% |
| Sharpe ratio (ann.) | GET /backtests/{id}/equity | $[*].timestamp, $[*].total_value_* | mean(daily_returns) / std(daily_returns) * sqrt(365) (rf=0) | -0.11 |
| Sortino ratio (ann.) | GET /backtests/{id}/equity | $[*].timestamp, $[*].total_value_* | mean(daily_returns) / std(downside_returns) * sqrt(365) (rf=0) | -0.10 |
| Time in market % | GET /backtests/{id}/equity | $[*].base_asset_bal | count(samples where base_asset_bal>0) / count(samples) * 100 | 100.0% |
| Total fees | GET /backtests/{id}/trades | $[*].buy_fee_in_quote, $[*].sell_fee_in_quote | Sum (buy_fee_in_quote + sell_fee_in_quote) | 0.76 USDT |
| Gross profit (winners) | GET /backtests/{id}/trades | $[?(@.profit>0)].profit | Sum profit where profit > 0 | +1.00 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.0100 USDT |
| Max consecutive wins | GET /backtests/{id}/trades | $[*].profit (ordered) | longest run where profit > 0 | 100 |
| 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 | 37.3h |
| Median holding (h) | GET /backtests/{id}/trades | $[*].buy_time, $[*].sell_time | median(sell_time - buy_time) / 3600 | 0.1h |
| Total volume (notional) | GET /backtests/{id}/trades | $[*].buy_quantity, $[*].buy_price | Sum (buy_quantity * buy_price) | 1,008 USDT |
Raw API Attachments
/trades. Full trade population: 124,175 closed trades - fetch the complete list via GET /backtests/d5be7668-7735-4a5a-8a58-327ff1cf19c7/trades. Aggregate KPIs are computed server-side against the full population, not from this sample.GET /backtests/d5be7668-7735-4a5a-8a58-327ff1cf19c7 - backtest summary (verbatim)
GET /backtests/d5be7668-7735-4a5a-8a58-327ff1cf19c7 - backtest summary (verbatim)
{
"id": "d5be7668-7735-4a5a-8a58-327ff1cf19c7",
"status": "completed",
"error_message": null,
"created_at": "2026-05-08T13:39:09.791998Z",
"started_at": "2026-05-10T10:23:12.991815Z",
"completed_at": "2026-05-10T10:35:15.416832Z",
"mode_name": "3LongTimeLong.json",
"symbol": "AUCTIONUSDT",
"data_file": "",
"start_balance": 10000,
"final_value": 9406.97354348,
"return_pct": -5.9303,
"total_profit": 890.4062841,
"fulfilled_trades": 124175,
"active_orders": 235,
"win_rate": 100,
"avg_profit": 0.00717058,
"max_profit": 0.01744375,
"min_profit": 0.00499063,
"elapsed_sec": 586.63,
"max_drawdown": -27.4692,
"profit_factor": null,
"sharpe_ratio": -0.1097,
"total_fees": 945.91771395,
"avg_hold_time_hours": 14.6472,
"tp_count": 124175,
"sl_count": 0,
"tsl_count": 0,
"start_price": 17.6,
"end_price": 5.02,
"gross_profit_quote": 1836.323998,
"gross_loss_quote": 0,
"wins": 124175,
"losses": 0,
"breakeven": 0,
"consecutive_wins_max": 124175,
"consecutive_losses_max": 0,
"holding_minutes_p50": 7,
"holding_minutes_p95": 803.3,
"holding_minutes_max": 418894,
"description": "AUCTIONUSDT | 3LongTimeLong.json | 2024-04-24 - 2026-02-25 | -5.93% | 124175 trades | 100% WR",
"summary_text": "Backtest AUCTIONUSDT (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: 9,406.97 USDT\nP&L: -593.03 USDT (-5.93%)\nResult: LOSS\nCompleted trades: 124175\nOpen orders at end: 235\nWin rate: 100.0%\nAvg. profit/trade: 0.007171 USDT\nBest trade: 0.017444 USDT\nWorst trade: 0.004991 USDT\nTotal profit (trades only): 890.406284 USDT\nMax drawdown: -27.47%\nProfit factor: inf (no losing trades)\nSharpe ratio: -0.11\nTotal fees: 945.92 USDT\nAvg hold time: 14.6h\nTP / SL / TSL: 124175 / 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: 586.6s",
"share_token": null,
"config_hash": "da5aefd9ac05d8001c4280e915d37f53a2968e17254935526762f01d9b65ddf7",
"config": {
"to": "2026-02-25 23:59:59",
"from": "2024-04-24 00:00:01",
"canBuy": true,
"symbol": "AUCTIONUSDT",
"canSell": true,
"canBuyUp": true,
"startBal": 10000,
"stepSize": 0.01,
"stopLoss": false,
"tickSize": 0.01,
"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/d5be7668-7735-4a5a-8a58-327ff1cf19c7/equity - equity series (verbatim, 673 points)
GET /backtests/d5be7668-7735-4a5a-8a58-327ff1cf19c7/equity - equity series (verbatim, 673 points)
[
{
"timestamp": "2024-04-24T23:59:00+00:00",
"base_asset_bal": 12.11,
"quote_asset_bal": 9780.484271275,
"total_value_mid": 9993.499171275,
"total_value_exit_net": 9993.3394101,
"total_value": 9993.499171275,
"base_cost_quote": 208.782369425,
"unrealized_pnl_exit_net": 4.0727694
},
{
"timestamp": "2024-04-25T23:59:00+00:00",
"base_asset_bal": 15.91,
"quote_asset_bal": 9716.157205675,
"total_value_mid": 9992.195705675,
"total_value_exit_net": 9991.9886768,
"total_value": 9992.195705675,
"base_cost_quote": 254.26235385,
"unrealized_pnl_exit_net": 21.569117275
},
{
"timestamp": "2024-04-26T23:59:00+00:00",
"base_asset_bal": 18.07,
"quote_asset_bal": 9680.346568375,
"total_value_mid": 9988.801468375,
"total_value_exit_net": 9988.5701272,
"total_value": 9988.801468375,
"base_cost_quote": 290.1830742,
"unrealized_pnl_exit_net": 18.040484625
},
{
"timestamp": "2024-04-27T23:59:00+00:00",
"base_asset_bal": 15.75,
"quote_asset_bal": 9721.873754575,
"total_value_mid": 9995.293754575,
"total_value_exit_net": 9995.088689575,
"total_value": 9995.293754575,
"base_cost_quote": 244.15397825,
"unrealized_pnl_exit_net": 29.06095675
},
{
"timestamp": "2024-04-28T23:59:00+00:00",
"base_asset_bal": 18.09,
"quote_asset_bal": 9681.6223441,
"total_value_mid": 9991.3231441,
"total_value_exit_net": 9991.0908685,
"total_value": 9991.3231441,
"base_cost_quote": 270.032472575,
"unrealized_pnl_exit_net": 39.436051825
},
{
"timestamp": "2024-04-29T23:59:00+00:00",
"base_asset_bal": 20.78,
"quote_asset_bal": 9636.805214525,
"total_value_mid": 9989.441814525,
"total_value_exit_net": 9989.177337075,
"total_value": 9989.441814525,
"base_cost_quote": 316.0704752,
"unrealized_pnl_exit_net": 36.30164735
},
{
"timestamp": "2024-04-30T23:59:00+00:00",
"base_asset_bal": 34.27,
"quote_asset_bal": 9419.640811975,
"total_value_mid": 9952.882011975,
"total_value_exit_net": 9952.482081075,
"total_value": 9952.882011975,
"base_cost_quote": 534.665798825,
"unrealized_pnl_exit_net": -1.824529725
},
{
"timestamp": "2024-05-01T23:59:00+00:00",
"base_asset_bal": 33.33,
"quote_asset_bal": 9436.701266125,
"total_value_mid": 9961.648766125,
"total_value_exit_net": 9961.2550555,
"total_value": 9961.648766125,
"base_cost_quote": 519.454999275,
"unrealized_pnl_exit_net": 5.0987901
},
{
"timestamp": "2024-05-02T23:59:00+00:00",
"base_asset_bal": 28.79,
"quote_asset_bal": 9509.29753765,
"total_value_mid": 9973.96813765,
"total_value_exit_net": 9973.6196347,
"total_value": 9973.96813765,
"base_cost_quote": 447.9753297,
"unrealized_pnl_exit_net": 16.34676735
},
{
"timestamp": "2024-05-03T23:59:00+00:00",
"base_asset_bal": 24.13,
"quote_asset_bal": 9586.656926775,
"total_value_mid": 9989.145326775,
"total_value_exit_net": 9988.843460475,
"total_value": 9989.145326775,
"base_cost_quote": 371.7241842,
"unrealized_pnl_exit_net": 30.4623495
},
{
"timestamp": "2024-05-04T23:59:00+00:00",
"base_asset_bal": 25.99,
"quote_asset_bal": 9556.55394515,
"total_value_mid": 9984.08944515,
"total_value_exit_net": 9983.768793525,
"total_value": 9984.08944515,
"base_cost_quote": 402.5208644,
"unrealized_pnl_exit_net": 24.693983975
},
{
"timestamp": "2024-05-05T23:59:00+00:00",
"base_asset_bal": 24.13,
"quote_asset_bal": 9588.214134725,
"total_value_mid": 9990.702534725,
"total_value_exit_net": 9990.400668425,
"total_value": 9990.702534725,
"base_cost_quote": 371.7722202,
"unrealized_pnl_exit_net": 30.4143135
},
{
"timestamp": "2024-05-06T23:59:00+00:00",
"base_asset_bal": 30.65,
"quote_asset_bal": 9482.4923396999,
"total_value_mid": 9975.3443396999,
"total_value_exit_net": 9974.9747006999,
"total_value": 9975.3443396999,
"base_cost_quote": 478.4873966,
"unrealized_pnl_exit_net": 13.9949644
},
{
"timestamp": "2024-05-07T23:59:00+00:00",
"base_asset_bal": 32.57,
"quote_asset_bal": 9452.5144821999,
"total_value_mid": 9970.3774821999,
"total_value_exit_net": 9969.9890849499,
"total_value": 9970.3774821999,
"base_cost_quote": 509.32310605,
"unrealized_pnl_exit_net": 8.1514967
},
{
"timestamp": "2024-05-08T23:59:00+00:00",
"base_asset_bal": 14.28,
"quote_asset_bal": 9768.9628560499,
"total_value_mid": 10005.0112560499,
"total_value_exit_net": 10004.8342197499,
"total_value": 10005.0112560499,
"base_cost_quote": 188.203346725,
"unrealized_pnl_exit_net": 47.668016975
},
{
"timestamp": "2024-05-09T23:59:00+00:00",
"base_asset_bal": 8.49,
"quote_asset_bal": 9871.6452967749,
"total_value_mid": 10028.3706967749,
"total_value_exit_net": 10028.2531527249,
"total_value": 10028.3706967749,
"base_cost_quote": 81.52289635,
"unrealized_pnl_exit_net": 75.0849596
},
{
"timestamp": "2024-05-10T23:59:00+00:00",
"base_asset_bal": 14.85,
"quote_asset_bal": 9758.2680421249,
"total_value_mid": 10022.8950421249,
"total_value_exit_net": 10022.6965718749,
"total_value": 10022.8950421249,
"base_cost_quote": 188.4136043,
"unrealized_pnl_exit_net": 76.01492545
},
{
"timestamp": "2024-05-11T23:59:00+00:00",
"base_asset_bal": 18.48,
"quote_asset_bal": 9695.8228779749,
"total_value_mid": 10018.8532779749,
"total_value_exit_net": 10018.6110051749,
"total_value": 10018.8532779749,
"base_cost_quote": 234.525262125,
"unrealized_pnl_exit_net": 88.262865075
},
{
"timestamp": "2024-05-12T23:59:00+00:00",
"base_asset_bal": 25.2,
"quote_asset_bal": 9582.3809861999,
"total_value_mid": 10002.7169861999,
"total_value_exit_net": 10002.4017341999,
"total_value": 10002.7169861999,
"base_cost_quote": 330.888880675,
"unrealized_pnl_exit_net": 89.131867325
},
{
"timestamp": "2024-05-13T23:59:00+00:00",
"base_asset_bal": 40.38,
"quote_asset_bal": 9349.9998955499,
"total_value_mid": 9935.5098955499,
"total_value_exit_net": 9935.0707630499,
"total_value": 9935.5098955499,
"base_cost_quote": 565.041163275,
"unrealized_pnl_exit_net": 20.029704225
},
{
"timestamp": "2024-05-14T23:59:00+00:00",
"base_asset_bal": 41.78,
"quote_asset_bal": 9331.4214157499,
"total_value_mid": 9933.4712157499,
"total_value_exit_net": 9933.0196783999,
"total_value": 9933.4712157499,
"base_cost_quote": 585.167246525,
"unrealized_pnl_exit_net": 16.431016125
},
{
"timestamp": "2024-05-15T23:59:00+00:00",
"base_asset_bal": 36.91,
"quote_asset_bal": 9403.6601405749,
"total_value_mid": 9956.5719405749,
"total_value_exit_net": 9956.1572567249,
"total_value": 9956.5719405749,
"base_cost_quote": 514.29763415,
"unrealized_pnl_exit_net": 38.199482
},
{
"timestamp": "2024-05-16T23:59:00+00:00",
"base_asset_bal": 43.47,
"quote_asset_bal": 9308.0806137249,
"total_value_mid": 9934.9180137249,
"total_value_exit_net": 9934.4478856749,
"total_value": 9934.9180137249,
"base_cost_quote": 610.6780653,
"unrealized_pnl_exit_net": 15.68920665
},
{
"timestamp": "2024-05-17T23:59:00+00:00",
"base_asset_bal": 37.26,
"quote_asset_bal": 9400.0774916999,
"total_value_mid": 9957.8596916999,
"total_value_exit_net": 9957.4413550499,
"total_value": 9957.8596916999,
"base_cost_quote": 519.306487975,
"unrealized_pnl_exit_net": 38.057375375
},
{
"timestamp": "2024-05-18T23:59:00+00:00",
"base_asset_bal": 38.96,
"quote_asset_bal": 9375.2210997999,
"total_value_mid": 9952.2186997999,
"total_value_exit_net": 9951.7859515999,
"total_value": 9952.2186997999,
"base_cost_quote": 544.560214075,
"unrealized_pnl_exit_net": 32.004637725
},
{
"timestamp": "2024-05-19T23:59:00+00:00",
"base_asset_bal": 51.81,
"quote_asset_bal": 9193.1551242499,
"total_value_mid": 9901.3978242499,
"total_value_exit_net": 9900.8666422249,
"total_value": 9901.3978242499,
"base_cost_quote": 727.251730025,
"unrealized_pnl_exit_net": -19.54021205
},
{
"timestamp": "2024-05-20T23:59:00+00:00",
"base_asset_bal": 31.96,
"quote_asset_bal": 9484.0199891,
"total_value_mid": 9981.6371891,
"total_value_exit_net": 9981.2639762,
"total_value": 9981.6371891,
"base_cost_quote": 437.963326325,
"unrealized_pnl_exit_net": 59.280660775
},
{
"timestamp": "2024-05-21T23:59:00+00:00",
"base_asset_bal": 13.57,
"quote_asset_bal": 9800.425365625,
"total_value_mid": 10049.163465625,
"total_value_exit_net": 10048.97691205,
"total_value": 10049.163465625,
"base_cost_quote": 91.879758175,
"unrealized_pnl_exit_net": 156.67178825
},
{
"timestamp": "2024-05-22T23:59:00+00:00",
"base_asset_bal": 21.68,
"quote_asset_bal": 9663.91977325,
"total_value_mid": 10022.94057325,
"total_value_exit_net": 10022.67130765,
"total_value": 10022.94057325,
"base_cost_quote": 229.1873617,
"unrealized_pnl_exit_net": 129.5641727
},
{
"timestamp": "2024-05-23T23:59:00+00:00",
"base_asset_bal": 21.35,
"quote_asset_bal": 9671.3930843499,
"total_value_mid": 10027.0840843499,
"total_value_exit_net": 10026.8173160999,
"total_value": 10027.0840843499,
"base_cost_quote": 223.847059475,
"unrealized_pnl_exit_net": 131.577172275
},
{
"timestamp": "2024-05-24T23:59:00+00:00",
"base_asset_bal": 22.29,
"quote_asset_bal": 9657.8151065249,
"total_value_mid": 10029.1665065249,
"total_value_exit_net": 10028.8879929749,
"total_value": 10029.1665065249,
"base_cost_quote": 239.058059175,
"unrealized_pnl_exit_net": 132.014827275
},
{
"timestamp": "2024-05-25T23:59:00+00:00",
"base_asset_bal": 23.21,
"quote_asset_bal": 9642.5415781749,
"total_value_mid": 10031.0769781748,
"total_value_exit_net": 10030.7855766248,
"total_value": 10031.0769781748,
"base_cost_quote": 254.826977,
"unrealized_pnl_exit_net": 133.41702145
},
{
"timestamp": "2024-05-26T23:59:00+00:00",
"base_asset_bal": 19.56,
"quote_asset_bal": 9705.5651396499,
"total_value_mid": 10054.1243396499,
"total_value_exit_net": 10053.8629202499,
"total_value": 10054.1243396499,
"base_cost_quote": 162.783095825,
"unrealized_pnl_exit_net": 185.514684775
},
{
"timestamp": "2024-05-27T23:59:00+00:00",
"base_asset_bal": 21.43,
"quote_asset_bal": 9672.6175638999,
"total_value_mid": 10056.2145638999,
"total_value_exit_net": 10055.9268661499,
"total_value": 10056.2145638999,
"base_cost_quote": 193.78342865,
"unrealized_pnl_exit_net": 189.5258736
},
{
"timestamp": "2024-05-28T23:59:00+00:00",
"base_asset_bal": 22.73,
"quote_asset_bal": 9651.4786103749,
"total_value_mid": 10058.8002103749,
"total_value_exit_net": 10058.4947191749,
"total_value": 10058.8002103749,
"base_cost_quote": 188.68080455,
"unrealized_pnl_exit_net": 218.33530425
},
{
"timestamp": "2024-05-29T23:59:00+00:00",
"base_asset_bal": 26.79,
"quote_asset_bal": 9543.86412495,
"total_value_mid": 10193.7895249499,
"total_value_exit_net": 10193.3020808999,
"total_value": 10193.7895249499,
"base_cost_quote": 297.293903325,
"unrealized_pnl_exit_net": 352.144052625
},
{
"timestamp": "2024-05-30T23:59:00+00:00",
"base_asset_bal": 28.67,
"quote_asset_bal": 9507.285399725,
"total_value_mid": 10161.8214997249,
"total_value_exit_net": 10161.3305976499,
"total_value": 10161.8214997249,
"base_cost_quote": 337.374941575,
"unrealized_pnl_exit_net": 316.67025635
},
{
"timestamp": "2024-05-31T23:59:00+00:00",
"base_asset_bal": 24.94,
"quote_asset_bal": 9596.4300659,
"total_value_mid": 10204.4672659,
"total_value_exit_net": 10204.011238,
"total_value": 10204.4672659,
"base_cost_quote": 250.9864988,
"unrealized_pnl_exit_net": 356.5946733
},
{
"timestamp": "2024-06-01T23:59:00+00:00",
"base_asset_bal": 28.08,
"quote_asset_bal": 9521.36415735,
"total_value_mid": 10193.59935735,
"total_value_exit_net": 10193.09518095,
"total_value": 10193.59935735,
"base_cost_quote": 327.279775875,
"unrealized_pnl_exit_net": 344.451247725
},
{
"timestamp": "2024-06-02T23:59:00+00:00",
"base_asset_bal": 32.91,
"quote_asset_bal": 9409.2679442,
"total_value_mid": 10162.2487442,
"total_value_exit_net": 10161.6840086,
"total_value": 10162.2487442,
"base_cost_quote": 440.047087975,
"unrealized_pnl_exit_net": 312.368976425
},
{
"timestamp": "2024-06-03T23:59:00+00:00",
"base_asset_bal": 42.07,
"quote_asset_bal": 9210.8186706,
"total_value_mid": 10090.0816706,
"total_value_exit_net": 10089.42222335,
"total_value": 10090.0816706,
"base_cost_quote": 639.336643125,
"unrealized_pnl_exit_net": 239.266909625
},
{
"timestamp": "2024-06-04T23:59:00+00:00",
"base_asset_bal": 38.98,
"quote_asset_bal": 9277.65627465,
"total_value_mid": 10107.1506746499,
"total_value_exit_net": 10106.5285538499,
"total_value": 10107.1506746499,
"base_cost_quote": 573.574158225,
"unrealized_pnl_exit_net": 255.298120975
},
{
"timestamp": "2024-06-05T23:59:00+00:00",
"base_asset_bal": 37.55,
"quote_asset_bal": 9309.0287692,
"total_value_mid": 10112.5987691999,
"total_value_exit_net": 10111.9960916999,
"total_value": 10112.5987691999,
"base_cost_quote": 542.758663925,
"unrealized_pnl_exit_net": 260.208658575
},
{
"timestamp": "2024-06-06T23:59:00+00:00",
"base_asset_bal": 33.45,
"quote_asset_bal": 9402.332544975,
"total_value_mid": 10145.9260449749,
"total_value_exit_net": 10145.3683498499,
"total_value": 10145.9260449749,
"base_cost_quote": 450.9907896,
"unrealized_pnl_exit_net": 292.045015275
},
{
"timestamp": "2024-06-07T23:59:00+00:00",
"base_asset_bal": 37.2,
"quote_asset_bal": 9316.84002385,
"total_value_mid": 10096.9240238499,
"total_value_exit_net": 10096.3389608499,
"total_value": 10096.9240238499,
"base_cost_quote": 537.510931075,
"unrealized_pnl_exit_net": 241.988005925
},
{
"timestamp": "2024-06-08T23:59:00+00:00",
"base_asset_bal": 38.97,
"quote_asset_bal": 9282.05027985,
"total_value_mid": 10074.3103798499,
"total_value_exit_net": 10073.7161847749,
"total_value": 10074.3103798499,
"base_cost_quote": 573.743084825,
"unrealized_pnl_exit_net": 217.9228201
},
{
"timestamp": "2024-06-09T23:59:00+00:00",
"base_asset_bal": 37.47,
"quote_asset_bal": 9313.27367485,
"total_value_mid": 10088.5279748499,
"total_value_exit_net": 10087.9465341249,
"total_value": 10088.5279748499,
"base_cost_quote": 543.01755795,
"unrealized_pnl_exit_net": 231.655301325
},
{
"timestamp": "2024-06-10T23:59:00+00:00",
"base_asset_bal": 38.46,
"quote_asset_bal": 9294.724073275,
"total_value_mid": 10085.0770732749,
"total_value_exit_net": 10084.4843085249,
"total_value": 10085.0770732749,
"base_cost_quote": 563.231206825,
"unrealized_pnl_exit_net": 226.529028425
},
{
"timestamp": "2024-06-11T23:59:00+00:00",
"base_asset_bal": 40.21,
"quote_asset_bal": 9260.7583047249,
"total_value_mid": 10063.7520047249,
"total_value_exit_net": 10063.1497594499,
"total_value": 10063.7520047249,
"base_cost_quote": 599.040843925,
"unrealized_pnl_exit_net": 203.3506108
},
{
"timestamp": "2024-06-12T23:59:00+00:00",
"base_asset_bal": 34.57,
"quote_asset_bal": 9380.3883864749,
"total_value_mid": 10122.6062864749,
"total_value_exit_net": 10122.0496230499,
"total_value": 10122.6062864749,
"base_cost_quote": 481.167705325,
"unrealized_pnl_exit_net": 260.49353125
},
{
"timestamp": "2024-06-13T23:59:00+00:00",
"base_asset_bal": 33.37,
"quote_asset_bal": 9408.2272531749,
"total_value_mid": 10135.0258531749,
"total_value_exit_net": 10134.4807542249,
"total_value": 10135.0258531749,
"base_cost_quote": 455.559913875,
"unrealized_pnl_exit_net": 270.693587175
},
{
"timestamp": "2024-06-14T23:59:00+00:00",
"base_asset_bal": 44.1,
"quote_asset_bal": 9189.3622503999,
"total_value_mid": 10050.1942503999,
"total_value_exit_net": 10049.5486263999,
"total_value": 10050.1942503999,
"base_cost_quote": 675.857413175,
"unrealized_pnl_exit_net": 184.328962825
},
{
"timestamp": "2024-06-15T23:59:00+00:00",
"base_asset_bal": 34.82,
"quote_asset_bal": 9380.4247912999,
"total_value_mid": 10135.3223912999,
"total_value_exit_net": 10134.7562180999,
"total_value": 10135.3223912999,
"base_cost_quote": 486.386216275,
"unrealized_pnl_exit_net": 267.945210525
},
{
"timestamp": "2024-06-16T23:59:00+00:00",
"base_asset_bal": 39.18,
"quote_asset_bal": 9289.3190741499,
"total_value_mid": 10101.9122741499,
"total_value_exit_net": 10101.3028292499,
"total_value": 10101.9122741499,
"base_cost_quote": 578.488441175,
"unrealized_pnl_exit_net": 233.495313925
},
{
"timestamp": "2024-06-17T23:59:00+00:00",
"base_asset_bal": 43.02,
"quote_asset_bal": 9214.8405079999,
"total_value_mid": 10067.9271079999,
"total_value_exit_net": 10067.2872930499,
"total_value": 10067.9271079999,
"base_cost_quote": 655.08914865,
"unrealized_pnl_exit_net": 197.3576364
},
{
"timestamp": "2024-06-18T23:59:00+00:00",
"base_asset_bal": 55.53,
"quote_asset_bal": 8992.1008724249,
"total_value_mid": 9939.9979724248,
"total_value_exit_net": 9939.2870495999,
"total_value": 9939.9979724248,
"base_cost_quote": 858.758686325,
"unrealized_pnl_exit_net": 88.42749085
},
{
"timestamp": "2024-06-19T23:59:00+00:00",
"base_asset_bal": 56.53,
"quote_asset_bal": 8976.4320687499,
"total_value_mid": 9940.8338687499,
"total_value_exit_net": 9940.1105673999,
"total_value": 9940.8338687499,
"base_cost_quote": 863.785653725,
"unrealized_pnl_exit_net": 99.892844925
},
{
"timestamp": "2024-06-20T23:59:00+00:00",
"base_asset_bal": 55.82,
"quote_asset_bal": 8989.9318852499,
"total_value_mid": 9937.1972852499,
"total_value_exit_net": 9936.4868361999,
"total_value": 9937.1972852499,
"base_cost_quote": 828.16605905,
"unrealized_pnl_exit_net": 118.3888919
},
{
"timestamp": "2024-06-21T23:59:00+00:00",
"base_asset_bal": 57.92,
"quote_asset_bal": 8955.8808823249,
"total_value_mid": 9928.9368823249,
"total_value_exit_net": 9928.2070903249,
"total_value": 9928.9368823249,
"base_cost_quote": 863.5956113,
"unrealized_pnl_exit_net": 108.7305967
},
{
"timestamp": "2024-06-22T23:59:00+00:00",
"base_asset_bal": 61.6,
"quote_asset_bal": 8895.3567961499,
"total_value_mid": 9906.8287961499,
"total_value_exit_net": 9906.0701921499,
"total_value": 9906.8287961499,
"base_cost_quote": 924.6069355,
"unrealized_pnl_exit_net": 86.1064605
},
{
"timestamp": "2024-06-23T23:59:00+00:00",
"base_asset_bal": 68.57,
"quote_asset_bal": 8784.1708377249,
"total_value_mid": 9857.9770377249,
"total_value_exit_net": 9857.1716830749,
"total_value": 9857.9770377249,
"base_cost_quote": 1036.36208905,
"unrealized_pnl_exit_net": 36.6387563
},
{
"timestamp": "2024-06-24T23:59:00+00:00",
"base_asset_bal": 62.52,
"quote_asset_bal": 8882.2275729249,
"total_value_mid": 9903.8043729249,
"total_value_exit_net": 9903.0381903249,
"total_value": 9903.8043729249,
"base_cost_quote": 940.049008375,
"unrealized_pnl_exit_net": 80.761609025
},
{
"timestamp": "2024-06-25T23:59:00+00:00",
"base_asset_bal": 58.79,
"quote_asset_bal": 8944.5410782499,
"total_value_mid": 9923.3945782499,
"total_value_exit_net": 9922.6604381249,
"total_value": 9923.3945782499,
"base_cost_quote": 878.53340625,
"unrealized_pnl_exit_net": 99.585953625
},
{
"timestamp": "2024-06-26T23:59:00+00:00",
"base_asset_bal": 59.09,
"quote_asset_bal": 8940.4844179499,
"total_value_mid": 9927.2874179498,
"total_value_exit_net": 9926.5473156998,
"total_value": 9927.2874179498,
"base_cost_quote": 883.70328075,
"unrealized_pnl_exit_net": 102.359617
},
{
"timestamp": "2024-06-27T23:59:00+00:00",
"base_asset_bal": 61.88,
"quote_asset_bal": 8895.0362666499,
"total_value_mid": 9913.5810666498,
"total_value_exit_net": 9912.8171580498,
"total_value": 9913.5810666498,
"base_cost_quote": 929.96515115,
"unrealized_pnl_exit_net": 87.81574025
},
{
"timestamp": "2024-06-28T23:59:00+00:00",
"base_asset_bal": 64.69,
"quote_asset_bal": 8850.5398424748,
"total_value_mid": 9899.1647424748,
"total_value_exit_net": 9898.3782737998,
"total_value": 9899.1647424748,
"base_cost_quote": 975.689919025,
"unrealized_pnl_exit_net": 72.1485123
},
{
"timestamp": "2024-06-29T23:59:00+00:00",
"base_asset_bal": 69.8,
"quote_asset_bal": 8769.4849736248,
"total_value_mid": 9857.6669736248,
"total_value_exit_net": 9856.8508371248,
"total_value": 9857.6669736248,
"base_cost_quote": 1057.062502725,
"unrealized_pnl_exit_net": 30.303360775
},
{
"timestamp": "2024-06-30T23:59:00+00:00",
"base_asset_bal": 61.01,
"quote_asset_bal": 8912.9457108748,
"total_value_mid": 9923.8814108748,
"total_value_exit_net": 9923.1232090998,
"total_value": 9923.8814108748,
"base_cost_quote": 914.6474715,
"unrealized_pnl_exit_net": 95.530026725
},
{
"timestamp": "2024-07-01T23:59:00+00:00",
"base_asset_bal": 57.96,
"quote_asset_bal": 8964.9661262498,
"total_value_mid": 9941.0125262498,
"total_value_exit_net": 9940.2804914498,
"total_value": 9941.0125262498,
"base_cost_quote": 863.69348465,
"unrealized_pnl_exit_net": 111.62088055
},
{
"timestamp": "2024-07-02T23:59:00+00:00",
"base_asset_bal": 56.96,
"quote_asset_bal": 8982.4926800248,
"total_value_mid": 9957.6478800248,
"total_value_exit_net": 9956.9165136248,
"total_value": 9957.6478800248,
"base_cost_quote": 843.139580775,
"unrealized_pnl_exit_net": 131.284252825
},
{
"timestamp": "2024-07-03T23:59:00+00:00",
"base_asset_bal": 65.3,
"quote_asset_bal": 8846.0797955998,
"total_value_mid": 9890.8797955998,
"total_value_exit_net": 9890.0961955998,
"total_value": 9890.8797955998,
"base_cost_quote": 980.4423807,
"unrealized_pnl_exit_net": 63.5740193
},
{
"timestamp": "2024-07-04T23:59:00+00:00",
"base_asset_bal": 83.14,
"quote_asset_bal": 8583.8755384498,
"total_value_mid": 9713.7481384498,
"total_value_exit_net": 9712.9007339998,
"total_value": 9713.7481384498,
"base_cost_quote": 1243.9754824,
"unrealized_pnl_exit_net": -114.95028685
},
{
"timestamp": "2024-07-05T23:59:00+00:00",
"base_asset_bal": 87.41,
"quote_asset_bal": 8530.9828771498,
"total_value_mid": 9660.3200771498,
"total_value_exit_net": 9659.4730742498,
"total_value": 9660.3200771498,
"base_cost_quote": 1299.7128541,
"unrealized_pnl_exit_net": -171.222657
},
{
"timestamp": "2024-07-06T23:59:00+00:00",
"base_asset_bal": 80.6,
"quote_asset_bal": 8623.3916630498,
"total_value_mid": 9755.0156630498,
"total_value_exit_net": 9754.1669450498,
"total_value": 9755.0156630498,
"base_cost_quote": 1208.75448645,
"unrealized_pnl_exit_net": -77.97920445
},
{
"timestamp": "2024-07-07T23:59:00+00:00",
"base_asset_bal": 86.53,
"quote_asset_bal": 8543.9539611749,
"total_value_mid": 9702.5906611749,
"total_value_exit_net": 9701.7216836499,
"total_value": 9702.5906611749,
"base_cost_quote": 1289.746084625,
"unrealized_pnl_exit_net": -131.97836215
},
{
"timestamp": "2024-07-08T23:59:00+00:00",
"base_asset_bal": 84.61,
"quote_asset_bal": 8571.5330935249,
"total_value_mid": 9732.3822935249,
"total_value_exit_net": 9731.5116566249,
"total_value": 9732.3822935249,
"base_cost_quote": 1264.690507025,
"unrealized_pnl_exit_net": -104.711943925
},
{
"timestamp": "2024-07-09T23:59:00+00:00",
"base_asset_bal": 82.76,
"quote_asset_bal": 8598.032998325,
"total_value_mid": 9754.1901983249,
"total_value_exit_net": 9753.323080425,
"total_value": 9754.1901983249,
"base_cost_quote": 1239.129150375,
"unrealized_pnl_exit_net": -83.839068275
},
{
"timestamp": "2024-07-10T23:59:00+00:00",
"base_asset_bal": 81.32,
"quote_asset_bal": 8618.825699775,
"total_value_mid": 9761.371699775,
"total_value_exit_net": 9760.514790275,
"total_value": 9761.371699775,
"base_cost_quote": 1219.026084375,
"unrealized_pnl_exit_net": -77.336993875
},
{
"timestamp": "2024-07-11T23:59:00+00:00",
"base_asset_bal": 83.49,
"quote_asset_bal": 8589.483249125,
"total_value_mid": 9746.654649125,
"total_value_exit_net": 9745.786770575,
"total_value": 9746.654649125,
"base_cost_quote": 1249.102424725,
"unrealized_pnl_exit_net": -92.798903275
},
{
"timestamp": "2024-07-12T23:59:00+00:00",
"base_asset_bal": 81.3,
"quote_asset_bal": 8620.541232,
"total_value_mid": 9761.180232,
"total_value_exit_net": 9760.32475275,
"total_value": 9761.180232,
"base_cost_quote": 1218.7858043,
"unrealized_pnl_exit_net": -79.00228355
},
{
"timestamp": "2024-07-13T23:59:00+00:00",
"base_asset_bal": 79.15,
"quote_asset_bal": 8651.288107725,
"total_value_mid": 9775.218107725,
"total_value_exit_net": 9774.375160225,
"total_value": 9775.218107725,
"base_cost_quote": 1188.464380275,
"unrealized_pnl_exit_net": -65.377327775
},
{
"timestamp": "2024-07-14T23:59:00+00:00",
"base_asset_bal": 78.07,
"quote_asset_bal": 8666.99787805,
"total_value_mid": 9790.42517805,
"total_value_exit_net": 9789.582607575,
"total_value": 9790.42517805,
"base_cost_quote": 1173.27149415,
"unrealized_pnl_exit_net": -50.686764625
},
{
"timestamp": "2024-07-15T23:59:00+00:00",
"base_asset_bal": 68.88,
"quote_asset_bal": 8804.753311175,
"total_value_mid": 9866.194111175,
"total_value_exit_net": 9865.398030575,
"total_value": 9866.194111175,
"base_cost_quote": 1036.264515925,
"unrealized_pnl_exit_net": 24.380203475
},
{
"timestamp": "2024-07-16T23:59:00+00:00",
"base_asset_bal": 70.52,
"quote_asset_bal": 8779.95327185,
"total_value_mid": 9865.96127185,
"total_value_exit_net": 9865.14676585,
"total_value": 9865.96127185,
"base_cost_quote": 1062.091972,
"unrealized_pnl_exit_net": 23.101522
},
{
"timestamp": "2024-07-17T23:59:00+00:00",
"base_asset_bal": 69.5,
"quote_asset_bal": 8796.26180065,
"total_value_mid": 9875.59680065,
"total_value_exit_net": 9874.7872994,
"total_value": 9875.59680065,
"base_cost_quote": 1046.52490545,
"unrealized_pnl_exit_net": 32.0005933
},
{
"timestamp": "2024-07-18T23:59:00+00:00",
"base_asset_bal": 67.59,
"quote_asset_bal": 8827.8653114,
"total_value_mid": 9874.8344114,
"total_value_exit_net": 9874.049184575,
"total_value": 9874.8344114,
"base_cost_quote": 1015.8625259,
"unrealized_pnl_exit_net": 30.321347275
},
{
"timestamp": "2024-07-19T23:59:00+00:00",
"base_asset_bal": 62.73,
"quote_asset_bal": 8904.94078465,
"total_value_mid": 9918.03028465,
"total_value_exit_net": 9917.270467525,
"total_value": 9918.03028465,
"base_cost_quote": 939.591865775,
"unrealized_pnl_exit_net": 72.7378171
},
{
"timestamp": "2024-07-20T23:59:00+00:00",
"base_asset_bal": 59.65,
"quote_asset_bal": 8956.36546375,
"total_value_mid": 9949.53796375,
"total_value_exit_net": 9948.793084375,
"total_value": 9949.53796375,
"base_cost_quote": 888.9758322,
"unrealized_pnl_exit_net": 103.451788425
},
{
"timestamp": "2024-07-21T23:59:00+00:00",
"base_asset_bal": 61.48,
"quote_asset_bal": 8926.6566876,
"total_value_mid": 9935.5434876,
"total_value_exit_net": 9934.7868225,
"total_value": 9935.5434876,
"base_cost_quote": 919.483595875,
"unrealized_pnl_exit_net": 88.646539025
},
{
"timestamp": "2024-07-22T23:59:00+00:00",
"base_asset_bal": 66.86,
"quote_asset_bal": 8840.949605325,
"total_value_mid": 9890.651605325,
"total_value_exit_net": 9889.864328825,
"total_value": 9890.651605325,
"base_cost_quote": 1005.784673175,
"unrealized_pnl_exit_net": 43.130050325
},
{
"timestamp": "2024-07-23T23:59:00+00:00",
"base_asset_bal": 63.39,
"quote_asset_bal": 8899.1265873,
"total_value_mid": 9918.4377873,
"total_value_exit_net": 9917.6733039,
"total_value": 9918.4377873,
"base_cost_quote": 949.891184475,
"unrealized_pnl_exit_net": 68.655532125
},
{
"timestamp": "2024-07-24T23:59:00+00:00",
"base_asset_bal": 69.76,
"quote_asset_bal": 8799.454531825,
"total_value_mid": 9882.1297318249,
"total_value_exit_net": 9881.3177254249,
"total_value": 9882.1297318249,
"base_cost_quote": 1051.17318905,
"unrealized_pnl_exit_net": 30.69000455
},
{
"timestamp": "2024-07-25T23:59:00+00:00",
"base_asset_bal": 58.79,
"quote_asset_bal": 8980.2563112749,
"total_value_mid": 9951.4671112749,
"total_value_exit_net": 9950.7387031749,
"total_value": 9951.4671112749,
"base_cost_quote": 873.648645425,
"unrealized_pnl_exit_net": 96.833746475
},
{
"timestamp": "2024-07-26T23:59:00+00:00",
"base_asset_bal": 52.91,
"quote_asset_bal": 9082.6692187999,
"total_value_mid": 10019.1762187999,
"total_value_exit_net": 10018.4738385499,
"total_value": 10019.1762187999,
"base_cost_quote": 741.3027604,
"unrealized_pnl_exit_net": 194.50185935
},
{
"timestamp": "2024-07-27T23:59:00+00:00",
"base_asset_bal": 52.71,
"quote_asset_bal": 9087.7145697249,
"total_value_mid": 10034.3861697249,
"total_value_exit_net": 10033.6761660249,
"total_value": 10034.3861697249,
"base_cost_quote": 710.51748875,
"unrealized_pnl_exit_net": 235.4441075499
},
{
"timestamp": "2024-07-28T23:59:00+00:00",
"base_asset_bal": 58.26,
"quote_asset_bal": 8990.5612149249,
"total_value_mid": 10004.8678149249,
"total_value_exit_net": 10004.1070849749,
"total_value": 10004.8678149249,
"base_cost_quote": 792.20030495,
"unrealized_pnl_exit_net": 221.3455650999
},
{
"timestamp": "2024-07-29T23:59:00+00:00",
"base_asset_bal": 60.45,
"quote_asset_bal": 8951.8166761,
"total_value_mid": 9999.4151760999,
"total_value_exit_net": 9998.6294772249,
"total_value": 9999.4151760999,
"base_cost_quote": 812.2587375,
"unrealized_pnl_exit_net": 234.5540636249
},
{
"timestamp": "2024-07-30T23:59:00+00:00",
"base_asset_bal": 70.92,
"quote_asset_bal": 8774.610559,
"total_value_mid": 9943.3721589999,
"total_value_exit_net": 9942.4955877999,
"total_value": 9943.3721589999,
"base_cost_quote": 980.049186025,
"unrealized_pnl_exit_net": 187.8358427749
},
{
"timestamp": "2024-07-31T23:59:00+00:00",
"base_asset_bal": 55.9,
"quote_asset_bal": 9037.0464412499,
"total_value_mid": 10074.5504412498,
"total_value_exit_net": 10073.7723132498,
"total_value": 10074.5504412498,
"base_cost_quote": 710.227971775,
"unrealized_pnl_exit_net": 326.4979002249
},
{
"timestamp": "2024-08-01T23:59:00+00:00",
"base_asset_bal": 54.97,
"quote_asset_bal": 9057.6694823748,
"total_value_mid": 10084.5090823747,
"total_value_exit_net": 10083.7389526747,
"total_value": 10084.5090823747,
"base_cost_quote": 680.0040208,
"unrealized_pnl_exit_net": 346.0654494999
},
{
"timestamp": "2024-08-02T23:59:00+00:00",
"base_asset_bal": 66.66,
"quote_asset_bal": 8855.0116657998,
"total_value_mid": 9972.2332657998,
"total_value_exit_net": 9971.3953495998,
"total_value": 9972.2332657998,
"base_cost_quote": 868.29253135,
"unrealized_pnl_exit_net": 248.0911524499
},
{
"timestamp": "2024-08-03T23:59:00+00:00",
"base_asset_bal": 77.56,
"quote_asset_bal": 8684.7984149748,
"total_value_mid": 9841.9936149748,
"total_value_exit_net": 9841.1257185748,
"total_value": 9841.9936149748,
"base_cost_quote": 1040.99956455,
"unrealized_pnl_exit_net": 115.3277390499
},
{
"timestamp": "2024-08-04T23:59:00+00:00",
"base_asset_bal": 83.48,
"quote_asset_bal": 8601.3934520249,
"total_value_mid": 9795.9922520248,
"total_value_exit_net": 9795.0963029248,
"total_value": 9795.9922520248,
"base_cost_quote": 1126.69779005,
"unrealized_pnl_exit_net": 67.0050608499
},
{
"timestamp": "2024-08-05T23:59:00+00:00",
"base_asset_bal": 97.47,
"quote_asset_bal": 8418.2381691749,
"total_value_mid": 9682.4240691748,
"total_value_exit_net": 9681.4759297498,
"total_value": 9682.4240691748,
"base_cost_quote": 1314.525255075,
"unrealized_pnl_exit_net": -51.2874945001
},
{
"timestamp": "2024-08-06T23:59:00+00:00",
"base_asset_bal": 91.33,
"quote_asset_bal": 8501.7696757249,
"total_value_mid": 9756.6438757249,
"total_value_exit_net": 9755.7027200749,
"total_value": 9756.6438757249,
"base_cost_quote": 1233.421672975,
"unrealized_pnl_exit_net": 20.5113713749
},
{
"timestamp": "2024-08-07T23:59:00+00:00",
"base_asset_bal": 97.27,
"quote_asset_bal": 8422.894627,
"total_value_mid": 9717.5583269999,
"total_value_exit_net": 9716.5873292249,
"total_value": 9717.5583269999,
"base_cost_quote": 1314.5311595,
"unrealized_pnl_exit_net": -20.8384572751
},
{
"timestamp": "2024-08-08T23:59:00+00:00",
"base_asset_bal": 78.56,
"quote_asset_bal": 8688.263471925,
"total_value_mid": 9869.8058719249,
"total_value_exit_net": 9868.9197151249,
"total_value": 9869.8058719249,
"base_cost_quote": 1050.924102375,
"unrealized_pnl_exit_net": 129.7321408249
},
{
"timestamp": "2024-08-09T23:59:00+00:00",
"base_asset_bal": 80.14,
"quote_asset_bal": 8664.334409,
"total_value_mid": 9879.2568089999,
"total_value_exit_net": 9878.3456171999,
"total_value": 9879.2568089999,
"base_cost_quote": 1075.9443535,
"unrealized_pnl_exit_net": 138.0668546999
},
{
"timestamp": "2024-08-10T23:59:00+00:00",
"base_asset_bal": 80.14,
"quote_asset_bal": 8664.78282095,
"total_value_mid": 9881.3080209499,
"total_value_exit_net": 9880.3956270499,
"total_value": 9881.3080209499,
"base_cost_quote": 1076.0964675,
"unrealized_pnl_exit_net": 139.5163385999
},
{
"timestamp": "2024-08-11T23:59:00+00:00",
"base_asset_bal": 89.01,
"quote_asset_bal": 8533.623624875,
"total_value_mid": 9805.5765248749,
"total_value_exit_net": 9804.6225601999,
"total_value": 9805.5765248749,
"base_cost_quote": 1208.416533175,
"unrealized_pnl_exit_net": 62.5824021499
},
{
"timestamp": "2024-08-12T23:59:00+00:00",
"base_asset_bal": 84.14,
"quote_asset_bal": 8605.949371825,
"total_value_mid": 9859.6353718249,
"total_value_exit_net": 9858.6951073249,
"total_value": 9859.6353718249,
"base_cost_quote": 1137.568036625,
"unrealized_pnl_exit_net": 115.1776988749
},
{
"timestamp": "2024-08-13T23:59:00+00:00",
"base_asset_bal": 83.8,
"quote_asset_bal": 8611.84791275,
"total_value_mid": 9875.55191275,
"total_value_exit_net": 9874.60413475,
"total_value": 9875.55191275,
"base_cost_quote": 1132.44930045,
"unrealized_pnl_exit_net": 130.3069215499
},
{
"timestamp": "2024-08-14T23:59:00+00:00",
"base_asset_bal": 89.31,
"quote_asset_bal": 8531.27744125,
"total_value_mid": 9821.80694125,
"total_value_exit_net": 9820.839044125,
"total_value": 9821.80694125,
"base_cost_quote": 1213.7780513,
"unrealized_pnl_exit_net": 75.7835515749
},
{
"timestamp": "2024-08-15T23:59:00+00:00",
"base_asset_bal": 92.5,
"quote_asset_bal": 8486.485511075,
"total_value_mid": 9785.185511075,
"total_value_exit_net": 9784.211486075,
"total_value": 9785.185511075,
"base_cost_quote": 1259.370720175,
"unrealized_pnl_exit_net": 38.3552548249
},
{
"timestamp": "2024-08-16T23:59:00+00:00",
"base_asset_bal": 87.2,
"quote_asset_bal": 8563.77182465,
"total_value_mid": 9842.99582465,
"total_value_exit_net": 9842.03640665,
"total_value": 9842.99582465,
"base_cost_quote": 1183.3396396,
"unrealized_pnl_exit_net": 94.9249423999
},
{
"timestamp": "2024-08-17T23:59:00+00:00",
"base_asset_bal": 71.99,
"quote_asset_bal": 8799.062359075,
"total_value_mid": 9975.378959075,
"total_value_exit_net": 9974.496721625,
"total_value": 9975.378959075,
"base_cost_quote": 949.775497775,
"unrealized_pnl_exit_net": 225.6588647749
},
{
"timestamp": "2024-08-18T23:59:00+00:00",
"base_asset_bal": 66.93,
"quote_asset_bal": 8885.198368625,
"total_value_mid": 10013.6381686249,
"total_value_exit_net": 10012.7918387749,
"total_value": 10013.6381686249,
"base_cost_quote": 863.4094718,
"unrealized_pnl_exit_net": 264.1839983499
},
{
"timestamp": "2024-08-19T23:59:00+00:00",
"base_asset_bal": 65.3,
"quote_asset_bal": 8913.633583625,
"total_value_mid": 10043.323583625,
"total_value_exit_net": 10042.476316125,
"total_value": 10043.323583625,
"base_cost_quote": 827.196232225,
"unrealized_pnl_exit_net": 301.6465002749
},
{
"timestamp": "2024-08-20T23:59:00+00:00",
"base_asset_bal": 50.05,
"quote_asset_bal": 9202.988062775,
"total_value_mid": 10214.498562775,
"total_value_exit_net": 10213.7399299,
"total_value": 10214.498562775,
"base_cost_quote": 531.868302275,
"unrealized_pnl_exit_net": 478.8835648499
},
{
"timestamp": "2024-08-21T23:59:00+00:00",
"base_asset_bal": 42.52,
"quote_asset_bal": 9364.0202004751,
"total_value_mid": 10298.609800475,
"total_value_exit_net": 10297.908858275,
"total_value": 10298.609800475,
"base_cost_quote": 373.55295475,
"unrealized_pnl_exit_net": 560.3357030499
},
{
"timestamp": "2024-08-22T23:59:00+00:00",
"base_asset_bal": 48.53,
"quote_asset_bal": 9295.3337473001,
"total_value_mid": 10153.8294473,
"total_value_exit_net": 10153.185575525,
"total_value": 10153.8294473,
"base_cost_quote": 433.74846755,
"unrealized_pnl_exit_net": 424.1033606749
},
{
"timestamp": "2024-08-23T23:59:00+00:00",
"base_asset_bal": 47.61,
"quote_asset_bal": 9313.4989792501,
"total_value_mid": 10172.38337925,
"total_value_exit_net": 10171.73921595,
"total_value": 10172.38337925,
"base_cost_quote": 382.5647085,
"unrealized_pnl_exit_net": 475.6755281999
},
{
"timestamp": "2024-08-24T23:59:00+00:00",
"base_asset_bal": 49.97,
"quote_asset_bal": 9272.1282198251,
"total_value_mid": 10161.0945198251,
"total_value_exit_net": 10160.4277951001,
"total_value": 10161.0945198251,
"base_cost_quote": 413.03734585,
"unrealized_pnl_exit_net": 475.2622294249
},
{
"timestamp": "2024-08-25T23:59:00+00:00",
"base_asset_bal": 56.86,
"quote_asset_bal": 9153.3514453501,
"total_value_mid": 10123.9516453501,
"total_value_exit_net": 10123.2236952001,
"total_value": 10123.9516453501,
"base_cost_quote": 530.127797875,
"unrealized_pnl_exit_net": 439.7444519749
},
{
"timestamp": "2024-08-26T23:59:00+00:00",
"base_asset_bal": 66.06,
"quote_asset_bal": 9002.0773384751,
"total_value_mid": 10063.000938475,
"total_value_exit_net": 10062.205245775,
"total_value": 10063.000938475,
"base_cost_quote": 682.371094775,
"unrealized_pnl_exit_net": 377.7568125249
},
{
"timestamp": "2024-08-27T23:59:00+00:00",
"base_asset_bal": 75.17,
"quote_asset_bal": 8860.1897132501,
"total_value_mid": 9984.7329132501,
"total_value_exit_net": 9983.8895058501,
"total_value": 9984.7329132501,
"base_cost_quote": 825.07214035,
"unrealized_pnl_exit_net": 298.6276522499
},
{
"timestamp": "2024-08-28T23:59:00+00:00",
"base_asset_bal": 76.81,
"quote_asset_bal": 8836.1248189751,
"total_value_mid": 9985.9705189751,
"total_value_exit_net": 9985.1081347001,
"total_value": 9985.9705189751,
"base_cost_quote": 850.310554975,
"unrealized_pnl_exit_net": 298.6727607499
},
{
"timestamp": "2024-08-29T23:59:00+00:00",
"base_asset_bal": 74.12,
"quote_asset_bal": 8877.8403094751,
"total_value_mid": 10014.8411094751,
"total_value_exit_net": 10013.9883588751,
"total_value": 10014.8411094751,
"base_cost_quote": 809.378078625,
"unrealized_pnl_exit_net": 326.7699707749
},
{
"timestamp": "2024-08-30T23:59:00+00:00",
"base_asset_bal": 74.11,
"quote_asset_bal": 8878.6752736502,
"total_value_mid": 10008.8527736501,
"total_value_exit_net": 10008.0051405251,
"total_value": 10008.8527736501,
"base_cost_quote": 809.3369478,
"unrealized_pnl_exit_net": 319.9929190749
},
{
"timestamp": "2024-08-31T23:59:00+00:00",
"base_asset_bal": 80.89,
"quote_asset_bal": 8777.6037393252,
"total_value_mid": 9969.1134393251,
"total_value_exit_net": 9968.2198070501,
"total_value": 9969.1134393251,
"base_cost_quote": 910.694408925,
"unrealized_pnl_exit_net": 279.9216587999
},
{
"timestamp": "2024-09-01T23:59:00+00:00",
"base_asset_bal": 91.26,
"quote_asset_bal": 8631.0930907502,
"total_value_mid": 9885.0054907501,
"total_value_exit_net": 9884.0650564501,
"total_value": 9885.0054907501,
"base_cost_quote": 1058.07596225,
"unrealized_pnl_exit_net": 194.8960034499
},
{
"timestamp": "2024-09-02T23:59:00+00:00",
"base_asset_bal": 86.91,
"quote_asset_bal": 8692.7638742502,
"total_value_mid": 9926.0167742501,
"total_value_exit_net": 9925.0918345751,
"total_value": 9926.0167742501,
"base_cost_quote": 997.2934095,
"unrealized_pnl_exit_net": 235.0345508249
},
{
"timestamp": "2024-09-03T23:59:00+00:00",
"base_asset_bal": 98.77,
"quote_asset_bal": 8531.2672727502,
"total_value_mid": 9839.9697727501,
"total_value_exit_net": 9838.9882458751,
"total_value": 9839.9697727501,
"base_cost_quote": 1159.5277941,
"unrealized_pnl_exit_net": 148.1931790249
},
{
"timestamp": "2024-09-04T23:59:00+00:00",
"base_asset_bal": 97.18,
"quote_asset_bal": 8552.5420243502,
"total_value_mid": 9841.1488243501,
"total_value_exit_net": 9840.1823692501,
"total_value": 9841.1488243501,
"base_cost_quote": 1139.3710879,
"unrealized_pnl_exit_net": 148.2692569999
},
{
"timestamp": "2024-09-05T23:59:00+00:00",
"base_asset_bal": 101.04,
"quote_asset_bal": 8502.5302034252,
"total_value_mid": 9810.9982034252,
"total_value_exit_net": 9810.0168524252,
"total_value": 9810.9982034252,
"base_cost_quote": 1189.998329875,
"unrealized_pnl_exit_net": 117.4883191249
},
{
"timestamp": "2024-09-06T23:59:00+00:00",
"base_asset_bal": 103.84,
"quote_asset_bal": 8467.9169874002,
"total_value_mid": 9788.7617874001,
"total_value_exit_net": 9787.7711538001,
"total_value": 9788.7617874001,
"base_cost_quote": 1225.7085925,
"unrealized_pnl_exit_net": 94.1455738999
},
{
"timestamp": "2024-09-07T23:59:00+00:00",
"base_asset_bal": 101.84,
"quote_asset_bal": 8493.6830008752,
"total_value_mid": 9805.3822008751,
"total_value_exit_net": 9804.3984264751,
"total_value": 9805.3822008751,
"base_cost_quote": 1200.339479925,
"unrealized_pnl_exit_net": 110.3759456749
},
{
"timestamp": "2024-09-08T23:59:00+00:00",
"base_asset_bal": 99.49,
"quote_asset_bal": 8524.3798098252,
"total_value_mid": 9814.7651098251,
"total_value_exit_net": 9813.7973208501,
"total_value": 9814.7651098251,
"base_cost_quote": 1170.031766175,
"unrealized_pnl_exit_net": 119.3857448499
},
{
"timestamp": "2024-09-09T23:59:00+00:00",
"base_asset_bal": 93.72,
"quote_asset_bal": 8601.1926707752,
"total_value_mid": 9857.0406707752,
"total_value_exit_net": 9856.0987847752,
"total_value": 9857.0406707752,
"base_cost_quote": 1093.881896575,
"unrealized_pnl_exit_net": 161.0242174249
},
{
"timestamp": "2024-09-10T23:59:00+00:00",
"base_asset_bal": 90.71,
"quote_asset_bal": 8642.4166517502,
"total_value_mid": 9874.2584517502,
"total_value_exit_net": 9873.3345704002,
"total_value": 9874.2584517502,
"base_cost_quote": 1053.23353315,
"unrealized_pnl_exit_net": 177.6843854999
},
{
"timestamp": "2024-09-11T23:59:00+00:00",
"base_asset_bal": 94.49,
"quote_asset_bal": 8592.4455519002,
"total_value_mid": 9847.2727519002,
"total_value_exit_net": 9846.3316315002,
"total_value": 9847.2727519002,
"base_cost_quote": 1104.04921635,
"unrealized_pnl_exit_net": 149.8368632499
},
{
"timestamp": "2024-09-12T23:59:00+00:00",
"base_asset_bal": 89.97,
"quote_asset_bal": 8654.0378742253,
"total_value_mid": 9892.0250742252,
"total_value_exit_net": 9891.0965838252,
"total_value": 9892.0250742252,
"base_cost_quote": 1043.128660175,
"unrealized_pnl_exit_net": 193.9300494249
},
{
"timestamp": "2024-09-13T23:59:00+00:00",
"base_asset_bal": 80.66,
"quote_asset_bal": 8787.5056266253,
"total_value_mid": 9959.4954266252,
"total_value_exit_net": 9958.6164342752,
"total_value": 9959.4954266252,
"base_cost_quote": 911.252226975,
"unrealized_pnl_exit_net": 259.8585806749
},
{
"timestamp": "2024-09-14T23:59:00+00:00",
"base_asset_bal": 78.23,
"quote_asset_bal": 8823.9407065253,
"total_value_mid": 9982.5270065252,
"total_value_exit_net": 9981.6580668002,
"total_value": 9982.5270065252,
"base_cost_quote": 875.556675375,
"unrealized_pnl_exit_net": 282.1606848999
},
{
"timestamp": "2024-09-15T23:59:00+00:00",
"base_asset_bal": 82.43,
"quote_asset_bal": 8763.9184560253,
"total_value_mid": 9941.8431560252,
"total_value_exit_net": 9940.9597125002,
"total_value": 9941.8431560252,
"base_cost_quote": 936.414484525,
"unrealized_pnl_exit_net": 240.6267719499
},
{
"timestamp": "2024-09-16T23:59:00+00:00",
"base_asset_bal": 87.87,
"quote_asset_bal": 8688.6133715753,
"total_value_mid": 9895.0684715752,
"total_value_exit_net": 9894.1636302502,
"total_value": 9895.0684715752,
"base_cost_quote": 1012.758299475,
"unrealized_pnl_exit_net": 192.7919591999
},
{
"timestamp": "2024-09-17T23:59:00+00:00",
"base_asset_bal": 85.3,
"quote_asset_bal": 8725.0645765753,
"total_value_mid": 9921.8235765753,
"total_value_exit_net": 9920.9260073253,
"total_value": 9921.8235765753,
"base_cost_quote": 977.221666975,
"unrealized_pnl_exit_net": 218.6397637749
},
{
"timestamp": "2024-09-18T23:59:00+00:00",
"base_asset_bal": 73.58,
"quote_asset_bal": 8899.8628825503,
"total_value_mid": 10021.2220825503,
"total_value_exit_net": 10020.3810631503,
"total_value": 10021.2220825503,
"base_cost_quote": 804.53875185,
"unrealized_pnl_exit_net": 315.9794287499
},
{
"timestamp": "2024-09-19T23:59:00+00:00",
"base_asset_bal": 73.59,
"quote_asset_bal": 8900.6331817753,
"total_value_mid": 10033.9191817753,
"total_value_exit_net": 10033.0692172753,
"total_value": 10033.9191817753,
"base_cost_quote": 804.745206575,
"unrealized_pnl_exit_net": 327.6908289249
},
{
"timestamp": "2024-09-20T23:59:00+00:00",
"base_asset_bal": 74.24,
"quote_asset_bal": 8891.6365783504,
"total_value_mid": 10019.3421783503,
"total_value_exit_net": 10018.4963991503,
"total_value": 10019.3421783503,
"base_cost_quote": 814.67634935,
"unrealized_pnl_exit_net": 312.1834714499
},
{
"timestamp": "2024-09-21T23:59:00+00:00",
"base_asset_bal": 72.93,
"quote_asset_bal": 8912.3288601504,
"total_value_mid": 10037.6387601503,
"total_value_exit_net": 10036.7947777253,
"total_value": 10037.6387601503,
"base_cost_quote": 794.5086349,
"unrealized_pnl_exit_net": 329.9572826749
},
{
"timestamp": "2024-09-22T23:59:00+00:00",
"base_asset_bal": 77.27,
"quote_asset_bal": 8847.5564745004,
"total_value_mid": 10014.3334745003,
"total_value_exit_net": 10013.4583917503,
"total_value": 10014.3334745003,
"base_cost_quote": 860.3131513,
"unrealized_pnl_exit_net": 305.5887659499
},
{
"timestamp": "2024-09-23T23:59:00+00:00",
"base_asset_bal": 76.58,
"quote_asset_bal": 8858.6271323004,
"total_value_mid": 10018.0483323003,
"total_value_exit_net": 10017.1787664003,
"total_value": 10018.0483323003,
"base_cost_quote": 850.05126065,
"unrealized_pnl_exit_net": 308.5003734499
},
{
"timestamp": "2024-09-24T23:59:00+00:00",
"base_asset_bal": 75.61,
"quote_asset_bal": 8874.1336461754,
"total_value_mid": 10024.9178461753,
"total_value_exit_net": 10024.0547580253,
"total_value": 10024.9178461753,
"base_cost_quote": 835.150593525,
"unrealized_pnl_exit_net": 314.7705183249
},
{
"timestamp": "2024-09-25T23:59:00+00:00",
"base_asset_bal": 76.28,
"quote_asset_bal": 8864.7596445004,
"total_value_mid": 10012.0108445003,
"total_value_exit_net": 10011.1504061003,
"total_value": 10012.0108445003,
"base_cost_quote": 845.2258443,
"unrealized_pnl_exit_net": 301.1649172999
},
{
"timestamp": "2024-09-26T23:59:00+00:00",
"base_asset_bal": 71.94,
"quote_asset_bal": 8931.8969481004,
"total_value_mid": 10056.3191481003,
"total_value_exit_net": 10055.4758314503,
"total_value": 10056.3191481003,
"base_cost_quote": 778.9906051,
"unrealized_pnl_exit_net": 344.5882782499
},
{
"timestamp": "2024-09-27T23:59:00+00:00",
"base_asset_bal": 64.97,
"quote_asset_bal": 9044.5730598754,
"total_value_mid": 10106.8325598753,
"total_value_exit_net": 10106.0358652503,
"total_value": 10106.8325598753,
"base_cost_quote": 667.5426818,
"unrealized_pnl_exit_net": 393.9201235749
},
{
"timestamp": "2024-09-28T23:59:00+00:00",
"base_asset_bal": 71.62,
"quote_asset_bal": 8938.4858963004,
"total_value_mid": 10055.0416963003,
"total_value_exit_net": 10054.2042794503,
"total_value": 10055.0416963003,
"base_cost_quote": 774.234540725,
"unrealized_pnl_exit_net": 341.4838424249
},
{
"timestamp": "2024-09-29T23:59:00+00:00",
"base_asset_bal": 72.6,
"quote_asset_bal": 8923.9255920504,
"total_value_mid": 10055.7595920503,
"total_value_exit_net": 10054.9107165503,
"total_value": 10055.7595920503,
"base_cost_quote": 789.489373275,
"unrealized_pnl_exit_net": 341.4957512249
},
{
"timestamp": "2024-09-30T23:59:00+00:00",
"base_asset_bal": 81.34,
"quote_asset_bal": 8792.5509030754,
"total_value_mid": 9987.4355030754,
"total_value_exit_net": 9986.5393396254,
"total_value": 9987.4355030754,
"base_cost_quote": 921.7339824,
"unrealized_pnl_exit_net": 272.2544541499
},
{
"timestamp": "2024-10-01T23:59:00+00:00",
"base_asset_bal": 89.34,
"quote_asset_bal": 8682.5703583254,
"total_value_mid": 9881.5131583254,
"total_value_exit_net": 9880.6139512254,
"total_value": 9881.5131583254,
"base_cost_quote": 1033.04600385,
"unrealized_pnl_exit_net": 164.9975890499
},
{
"timestamp": "2024-10-02T23:59:00+00:00",
"base_asset_bal": 95.87,
"quote_asset_bal": 8597.6157712755,
"total_value_mid": 9837.2148712754,
"total_value_exit_net": 9836.2851719504,
"total_value": 9837.2148712754,
"base_cost_quote": 1119.16894765,
"unrealized_pnl_exit_net": 119.5004530249
},
{
"timestamp": "2024-10-03T23:59:00+00:00",
"base_asset_bal": 95.47,
"quote_asset_bal": 8603.8718796504,
"total_value_mid": 9846.8912796504,
"total_value_exit_net": 9845.9590151004,
"total_value": 9846.8912796504,
"base_cost_quote": 1114.162495625,
"unrealized_pnl_exit_net": 127.9246398249
},
{
"timestamp": "2024-10-04T23:59:00+00:00",
"base_asset_bal": 88.95,
"quote_asset_bal": 8690.9353145504,
"total_value_mid": 9898.8763145504,
"total_value_exit_net": 9897.9703588004,
"total_value": 9898.8763145504,
"base_cost_quote": 1027.839401825,
"unrealized_pnl_exit_net": 179.1956424249
},
{
"timestamp": "2024-10-05T23:59:00+00:00",
"base_asset_bal": 89.33,
"quote_asset_bal": 8686.0605045505,
"total_value_mid": 9891.1222045504,
"total_value_exit_net": 9890.2184082754,
"total_value": 9891.1222045504,
"base_cost_quote": 1033.052508725,
"unrealized_pnl_exit_net": 171.1053949999
},
{
"timestamp": "2024-10-06T23:59:00+00:00",
"base_asset_bal": 87.09,
"quote_asset_bal": 8716.6930708755,
"total_value_mid": 9906.3424708754,
"total_value_exit_net": 9905.4502338254,
"total_value": 9906.3424708754,
"base_cost_quote": 1002.69005395,
"unrealized_pnl_exit_net": 186.0671089999
},
{
"timestamp": "2024-10-07T23:59:00+00:00",
"base_asset_bal": 89.69,
"quote_asset_bal": 8682.1187859255,
"total_value_mid": 9883.0678859254,
"total_value_exit_net": 9882.1671741004,
"total_value": 9883.0678859254,
"base_cost_quote": 1037.99451245,
"unrealized_pnl_exit_net": 162.0538757249
},
{
"timestamp": "2024-10-08T23:59:00+00:00",
"base_asset_bal": 90.06,
"quote_asset_bal": 8677.9049351255,
"total_value_mid": 9889.2119351254,
"total_value_exit_net": 9888.3034548755,
"total_value": 9889.2119351254,
"base_cost_quote": 1043.09473475,
"unrealized_pnl_exit_net": 167.3037849999
},
{
"timestamp": "2024-10-09T23:59:00+00:00",
"base_asset_bal": 94.63,
"quote_asset_bal": 8617.8265280505,
"total_value_mid": 9858.4258280504,
"total_value_exit_net": 9857.4953785754,
"total_value": 9858.4258280504,
"base_cost_quote": 1103.804733125,
"unrealized_pnl_exit_net": 135.8641173999
},
{
"timestamp": "2024-10-10T23:59:00+00:00",
"base_asset_bal": 93.87,
"quote_asset_bal": 8628.6536689005,
"total_value_mid": 9868.6763689004,
"total_value_exit_net": 9867.7463518754,
"total_value": 9868.6763689004,
"base_cost_quote": 1093.632109375,
"unrealized_pnl_exit_net": 145.4605735999
},
{
"timestamp": "2024-10-11T23:59:00+00:00",
"base_asset_bal": 90.07,
"quote_asset_bal": 8679.6881833505,
"total_value_mid": 9896.5338833504,
"total_value_exit_net": 9895.6212490754,
"total_value": 9896.5338833504,
"base_cost_quote": 1042.978147375,
"unrealized_pnl_exit_net": 172.9549183499
},
{
"timestamp": "2024-10-12T23:59:00+00:00",
"base_asset_bal": 88.95,
"quote_asset_bal": 8695.0394446505,
"total_value_mid": 9897.6434446505,
"total_value_exit_net": 9896.7414916505,
"total_value": 9897.6434446505,
"base_cost_quote": 1027.839401825,
"unrealized_pnl_exit_net": 173.8626451749
},
{
"timestamp": "2024-10-13T23:59:00+00:00",
"base_asset_bal": 90.08,
"quote_asset_bal": 8680.2925355255,
"total_value_mid": 9897.2733355255,
"total_value_exit_net": 9896.3605999255,
"total_value": 9897.2733355255,
"base_cost_quote": 1042.9848524,
"unrealized_pnl_exit_net": 173.0832119999
},
{
"timestamp": "2024-10-14T23:59:00+00:00",
"base_asset_bal": 84.59,
"quote_asset_bal": 8756.6056289756,
"total_value_mid": 9945.0951289755,
"total_value_exit_net": 9944.2037618505,
"total_value": 9945.0951289755,
"base_cost_quote": 967.23588325,
"unrealized_pnl_exit_net": 220.3622496249
},
{
"timestamp": "2024-10-15T23:59:00+00:00",
"base_asset_bal": 86.73,
"quote_asset_bal": 8727.2183664756,
"total_value_mid": 9924.0923664755,
"total_value_exit_net": 9923.1947109755,
"total_value": 9924.0923664755,
"base_cost_quote": 997.65227845,
"unrealized_pnl_exit_net": 198.3240660499
},
{
"timestamp": "2024-10-16T23:59:00+00:00",
"base_asset_bal": 90.83,
"quote_asset_bal": 8672.0972247256,
"total_value_mid": 9891.0358247256,
"total_value_exit_net": 9890.1216207756,
"total_value": 9891.0358247256,
"base_cost_quote": 1053.30918985,
"unrealized_pnl_exit_net": 164.7152061999
},
{
"timestamp": "2024-10-17T23:59:00+00:00",
"base_asset_bal": 93.11,
"quote_asset_bal": 8642.3373071256,
"total_value_mid": 9872.3204071256,
"total_value_exit_net": 9871.3979198006,
"total_value": 9872.3204071256,
"base_cost_quote": 1083.53424165,
"unrealized_pnl_exit_net": 145.5263710249
},
{
"timestamp": "2024-10-18T23:59:00+00:00",
"base_asset_bal": 90.83,
"quote_asset_bal": 8672.9158882256,
"total_value_mid": 9898.2125882255,
"total_value_exit_net": 9897.2936157005,
"total_value": 9898.2125882255,
"base_cost_quote": 1053.2445414,
"unrealized_pnl_exit_net": 171.1331860749
},
{
"timestamp": "2024-10-19T23:59:00+00:00",
"base_asset_bal": 88.59,
"quote_asset_bal": 8703.6033685506,
"total_value_mid": 9901.3401685506,
"total_value_exit_net": 9900.4418659506,
"total_value": 9901.3401685506,
"base_cost_quote": 1022.885889475,
"unrealized_pnl_exit_net": 173.9526079249
},
{
"timestamp": "2024-10-20T23:59:00+00:00",
"base_asset_bal": 86.36,
"quote_asset_bal": 8734.5615882256,
"total_value_mid": 9938.4199882256,
"total_value_exit_net": 9937.5170944256,
"total_value": 9938.4199882256,
"base_cost_quote": 992.41675475,
"unrealized_pnl_exit_net": 210.5387514499
},
{
"timestamp": "2024-10-21T23:59:00+00:00",
"base_asset_bal": 91.91,
"quote_asset_bal": 8658.9357336507,
"total_value_mid": 9891.4488336506,
"total_value_exit_net": 9890.5244488256,
"total_value": 9891.4488336506,
"base_cost_quote": 1068.613159225,
"unrealized_pnl_exit_net": 162.9755559499
},
{
"timestamp": "2024-10-22T23:59:00+00:00",
"base_asset_bal": 93.03,
"quote_asset_bal": 8644.5888061007,
"total_value_mid": 9898.6332061006,
"total_value_exit_net": 9897.6926728006,
"total_value": 9898.6332061006,
"base_cost_quote": 1083.697664125,
"unrealized_pnl_exit_net": 169.4062025749
},
{
"timestamp": "2024-10-23T23:59:00+00:00",
"base_asset_bal": 93.82,
"quote_asset_bal": 8635.6705305007,
"total_value_mid": 9871.2799305007,
"total_value_exit_net": 9870.3532234507,
"total_value": 9871.2799305007,
"base_cost_quote": 1093.795031475,
"unrealized_pnl_exit_net": 140.8876614749
},
{
"timestamp": "2024-10-24T23:59:00+00:00",
"base_asset_bal": 84.96,
"quote_asset_bal": 8758.7398652257,
"total_value_mid": 9923.5414652257,
"total_value_exit_net": 9922.6678640257,
"total_value": 9923.5414652257,
"base_cost_quote": 972.2978769,
"unrealized_pnl_exit_net": 191.6301218999
},
{
"timestamp": "2024-10-25T23:59:00+00:00",
"base_asset_bal": 95.73,
"quote_asset_bal": 8613.5502372758,
"total_value_mid": 9856.1256372757,
"total_value_exit_net": 9855.1937057257,
"total_value": 9856.1256372757,
"base_cost_quote": 1119.13772425,
"unrealized_pnl_exit_net": 122.5057441999
},
{
"timestamp": "2024-10-26T23:59:00+00:00",
"base_asset_bal": 96.89,
"quote_asset_bal": 8599.2684807008,
"total_value_mid": 9847.2116807007,
"total_value_exit_net": 9846.2757233007,
"total_value": 9847.2116807007,
"base_cost_quote": 1134.285776775,
"unrealized_pnl_exit_net": 112.7214658249
},
{
"timestamp": "2024-10-27T23:59:00+00:00",
"base_asset_bal": 94.55,
"quote_asset_bal": 8630.1938914008,
"total_value_mid": 9871.6353914007,
"total_value_exit_net": 9870.7043102757,
"total_value": 9871.6353914007,
"base_cost_quote": 1103.882191175,
"unrealized_pnl_exit_net": 136.6282276999
},
{
"timestamp": "2024-10-28T23:59:00+00:00",
"base_asset_bal": 96.88,
"quote_asset_bal": 8600.4663285758,
"total_value_mid": 9861.8439285757,
"total_value_exit_net": 9860.8978953757,
"total_value": 9861.8439285757,
"base_cost_quote": 1134.3529271,
"unrealized_pnl_exit_net": 126.0786396999
},
{
"timestamp": "2024-10-29T23:59:00+00:00",
"base_asset_bal": 93.41,
"quote_asset_bal": 8646.5487165008,
"total_value_mid": 9894.5063165007,
"total_value_exit_net": 9893.5703483007,
"total_value": 9894.5063165007,
"base_cost_quote": 1088.828309225,
"unrealized_pnl_exit_net": 158.1933225749
},
{
"timestamp": "2024-10-30T23:59:00+00:00",
"base_asset_bal": 93.79,
"quote_asset_bal": 8642.2242750508,
"total_value_mid": 9874.6248750507,
"total_value_exit_net": 9873.7005746007,
"total_value": 9874.6248750507,
"base_cost_quote": 1093.703562925,
"unrealized_pnl_exit_net": 137.7727366249
},
{
"timestamp": "2024-10-31T23:59:00+00:00",
"base_asset_bal": 99.69,
"quote_asset_bal": 8566.3031269008,
"total_value_mid": 9831.3692269007,
"total_value_exit_net": 9830.4204273257,
"total_value": 9831.3692269007,
"base_cost_quote": 1170.011551025,
"unrealized_pnl_exit_net": 94.1057493999
},
{
"timestamp": "2024-11-01T23:59:00+00:00",
"base_asset_bal": 103.33,
"quote_asset_bal": 8521.3716856258,
"total_value_mid": 9801.6303856257,
"total_value_exit_net": 9800.6701916007,
"total_value": 9801.6303856257,
"base_cost_quote": 1215.5834043,
"unrealized_pnl_exit_net": 63.7151016749
},
{
"timestamp": "2024-11-02T23:59:00+00:00",
"base_asset_bal": 104.15,
"quote_asset_bal": 8511.5404057008,
"total_value_mid": 9797.7929057007,
"total_value_exit_net": 9796.8282163257,
"total_value": 9797.7929057007,
"base_cost_quote": 1225.681071875,
"unrealized_pnl_exit_net": 59.6067387499
},
{
"timestamp": "2024-11-03T23:59:00+00:00",
"base_asset_bal": 111.39,
"quote_asset_bal": 8425.9205898758,
"total_value_mid": 9726.9557898757,
"total_value_exit_net": 9725.9800134757,
"total_value": 9726.9557898757,
"base_cost_quote": 1311.766387475,
"unrealized_pnl_exit_net": -11.7069638751
},
{
"timestamp": "2024-11-04T23:59:00+00:00",
"base_asset_bal": 117.53,
"quote_asset_bal": 8355.3920466008,
"total_value_mid": 9688.1822466007,
"total_value_exit_net": 9687.1826539507,
"total_value": 9688.1822466007,
"base_cost_quote": 1382.738376575,
"unrealized_pnl_exit_net": -50.9477692251
},
{
"timestamp": "2024-11-05T23:59:00+00:00",
"base_asset_bal": 110.52,
"quote_asset_bal": 8436.8820325008,
"total_value_mid": 9732.1764325007,
"total_value_exit_net": 9731.2049617007,
"total_value": 9732.1764325007,
"base_cost_quote": 1301.647504,
"unrealized_pnl_exit_net": -7.3245748001
},
{
"timestamp": "2024-11-06T23:59:00+00:00",
"base_asset_bal": 96.3,
"quote_asset_bal": 8615.9785799258,
"total_value_mid": 9882.3235799257,
"total_value_exit_net": 9881.3738211757,
"total_value": 9882.3235799257,
"base_cost_quote": 1124.02898995,
"unrealized_pnl_exit_net": 141.3662512999
},
{
"timestamp": "2024-11-07T23:59:00+00:00",
"base_asset_bal": 85.02,
"quote_asset_bal": 8774.4229254508,
"total_value_mid": 9924.7435254507,
"total_value_exit_net": 9923.8807850007,
"total_value": 9924.7435254507,
"base_cost_quote": 967.043038725,
"unrealized_pnl_exit_net": 182.4148208249
},
{
"timestamp": "2024-11-08T23:59:00+00:00",
"base_asset_bal": 83.9,
"quote_asset_bal": 8790.8958427258,
"total_value_mid": 9946.1988427258,
"total_value_exit_net": 9945.3323654758,
"total_value": 9946.1988427258,
"base_cost_quote": 951.9646384,
"unrealized_pnl_exit_net": 202.4718843499
},
{
"timestamp": "2024-11-09T23:59:00+00:00",
"base_asset_bal": 80.96,
"quote_asset_bal": 8833.2309395758,
"total_value_mid": 9996.6261395758,
"total_value_exit_net": 9995.7535931758,
"total_value": 9996.6261395758,
"base_cost_quote": 911.2797476,
"unrealized_pnl_exit_net": 251.2429059999
},
{
"timestamp": "2024-11-10T23:59:00+00:00",
"base_asset_bal": 79.92,
"quote_asset_bal": 8850.5518438259,
"total_value_mid": 10026.1750438258,
"total_value_exit_net": 10025.2933264258,
"total_value": 10026.1750438258,
"base_cost_quote": 895.9638693,
"unrealized_pnl_exit_net": 278.7776132999
},
{
"timestamp": "2024-11-11T23:59:00+00:00",
"base_asset_bal": 79.6,
"quote_asset_bal": 8857.1188132009,
"total_value_mid": 10052.7108132008,
"total_value_exit_net": 10051.8141192008,
"total_value": 10052.7108132008,
"base_cost_quote": 891.268850675,
"unrealized_pnl_exit_net": 303.4264553249
},
{
"timestamp": "2024-11-12T23:59:00+00:00",
"base_asset_bal": 79.94,
"quote_asset_bal": 8854.9205806259,
"total_value_mid": 10037.2331806259,
"total_value_exit_net": 10036.3464461759,
"total_value": 10037.2331806259,
"base_cost_quote": 896.16862275,
"unrealized_pnl_exit_net": 285.2572427999
},
{
"timestamp": "2024-11-13T23:59:00+00:00",
"base_asset_bal": 85.23,
"quote_asset_bal": 8781.466791876,
"total_value_mid": 9973.8344918759,
"total_value_exit_net": 9972.9402161009,
"total_value": 9973.8344918759,
"base_cost_quote": 972.4940239,
"unrealized_pnl_exit_net": 218.9794003249
},
{
"timestamp": "2024-11-14T23:59:00+00:00",
"base_asset_bal": 95.15,
"quote_asset_bal": 8646.501532176,
"total_value_mid": 9907.239032176,
"total_value_exit_net": 9906.293479051,
"total_value": 9907.239032176,
"base_cost_quote": 1109.46007145,
"unrealized_pnl_exit_net": 150.3318754249
},
{
"timestamp": "2024-11-15T23:59:00+00:00",
"base_asset_bal": 88.77,
"quote_asset_bal": 8734.432443801,
"total_value_mid": 9972.773943801,
"total_value_exit_net": 9971.845187676,
"total_value": 9972.773943801,
"base_cost_quote": 1023.189116725,
"unrealized_pnl_exit_net": 214.2236271499
},
{
"timestamp": "2024-11-16T23:59:00+00:00",
"base_asset_bal": 83.41,
"quote_asset_bal": 8811.459188701,
"total_value_mid": 10017.567788701,
"total_value_exit_net": 10016.663207251,
"total_value": 10017.567788701,
"base_cost_quote": 947.118706675,
"unrealized_pnl_exit_net": 258.0853118749
},
{
"timestamp": "2024-11-17T23:59:00+00:00",
"base_asset_bal": 91.74,
"quote_asset_bal": 8695.8916850511,
"total_value_mid": 9953.647085051,
"total_value_exit_net": 9952.703768501,
"total_value": 9953.647085051,
"base_cost_quote": 1064.099976875,
"unrealized_pnl_exit_net": 192.7121065749
},
{
"timestamp": "2024-11-18T23:59:00+00:00",
"base_asset_bal": 84.85,
"quote_asset_bal": 8794.0973809511,
"total_value_mid": 10015.937380951,
"total_value_exit_net": 10015.021000951,
"total_value": 10015.937380951,
"base_cost_quote": 967.476763775,
"unrealized_pnl_exit_net": 253.4468562249
},
{
"timestamp": "2024-11-19T23:59:00+00:00",
"base_asset_bal": 78.06,
"quote_asset_bal": 8903.4049244511,
"total_value_mid": 10031.371924451,
"total_value_exit_net": 10030.525949201,
"total_value": 10031.371924451,
"base_cost_quote": 860.6109745,
"unrealized_pnl_exit_net": 266.5100502499
},
{
"timestamp": "2024-11-20T23:59:00+00:00",
"base_asset_bal": 89.04,
"quote_asset_bal": 8752.6901757511,
"total_value_mid": 9944.0453757511,
"total_value_exit_net": 9943.1518593511,
"total_value": 9944.0453757511,
"base_cost_quote": 1012.6665307,
"unrealized_pnl_exit_net": 177.7951528999
},
{
"timestamp": "2024-11-21T23:59:00+00:00",
"base_asset_bal": 82.36,
"quote_asset_bal": 8845.4555609262,
"total_value_mid": 9996.8483609261,
"total_value_exit_net": 9995.9848163261,
"total_value": 9996.8483609261,
"base_cost_quote": 921.541938475,
"unrealized_pnl_exit_net": 228.9873169249
},
{
"timestamp": "2024-11-22T23:59:00+00:00",
"base_asset_bal": 81.64,
"quote_asset_bal": 8856.6614981762,
"total_value_mid": 10005.3362981762,
"total_value_exit_net": 10004.4747920762,
"total_value": 10005.3362981762,
"base_cost_quote": 911.450775775,
"unrealized_pnl_exit_net": 236.3625181249
},
{
"timestamp": "2024-11-23T23:59:00+00:00",
"base_asset_bal": 72.85,
"quote_asset_bal": 8985.3339758012,
"total_value_mid": 10065.6994758012,
"total_value_exit_net": 10064.8892016762,
"total_value": 10065.6994758012,
"base_cost_quote": 784.5191484,
"unrealized_pnl_exit_net": 295.0360774749
},
{
"timestamp": "2024-11-24T23:59:00+00:00",
"base_asset_bal": 70.1,
"quote_asset_bal": 9028.5142886012,
"total_value_mid": 10112.2602886012,
"total_value_exit_net": 10111.4474791012,
"total_value": 10112.2602886012,
"base_cost_quote": 743.6717358,
"unrealized_pnl_exit_net": 339.2614546999
},
{
"timestamp": "2024-11-25T23:59:00+00:00",
"base_asset_bal": 72.65,
"quote_asset_bal": 8990.2758709763,
"total_value_mid": 10101.0943709762,
"total_value_exit_net": 10100.2612571012,
"total_value": 10101.0943709762,
"base_cost_quote": 784.125553425,
"unrealized_pnl_exit_net": 325.8598326999
},
{
"timestamp": "2024-11-26T23:59:00+00:00",
"base_asset_bal": 70.76,
"quote_asset_bal": 9022.7275443263,
"total_value_mid": 10118.0923443262,
"total_value_exit_net": 10117.2708207262,
"total_value": 10118.0923443262,
"base_cost_quote": 753.981162075,
"unrealized_pnl_exit_net": 340.5621143249
},
{
"timestamp": "2024-11-27T23:59:00+00:00",
"base_asset_bal": 60.03,
"quote_asset_bal": 9198.3737135012,
"total_value_mid": 10208.6786135012,
"total_value_exit_net": 10207.9208848262,
"total_value": 10208.6786135012,
"base_cost_quote": 581.0290452,
"unrealized_pnl_exit_net": 428.5181261249
},
{
"timestamp": "2024-11-28T23:59:00+00:00",
"base_asset_bal": 62.68,
"quote_asset_bal": 9159.8923716512,
"total_value_mid": 10167.7867716511,
"total_value_exit_net": 10167.0308508511,
"total_value": 10167.7867716511,
"base_cost_quote": 621.636578025,
"unrealized_pnl_exit_net": 385.5019011749
},
{
"timestamp": "2024-11-29T23:59:00+00:00",
"base_asset_bal": 58.9,
"quote_asset_bal": 9221.9355021762,
"total_value_mid": 10187.8955021761,
"total_value_exit_net": 10187.1710321761,
"total_value": 10187.8955021761,
"base_cost_quote": 560.66638465,
"unrealized_pnl_exit_net": 404.5691453499
},
{
"timestamp": "2024-11-30T23:59:00+00:00",
"base_asset_bal": 47.99,
"quote_asset_bal": 9414.5626067512,
"total_value_mid": 10288.4605067511,
"total_value_exit_net": 10287.8050833261,
"total_value": 10288.4605067511,
"base_cost_quote": 352.392396225,
"unrealized_pnl_exit_net": 520.8500803499
},
{
"timestamp": "2024-12-01T23:59:00+00:00",
"base_asset_bal": 42.95,
"quote_asset_bal": 9512.6583648512,
"total_value_mid": 10352.7603648511,
"total_value_exit_net": 10352.1302883511,
"total_value": 10352.7603648511,
"base_cost_quote": 256.070809175,
"unrealized_pnl_exit_net": 583.4011143249
},
{
"timestamp": "2024-12-02T23:59:00+00:00",
"base_asset_bal": 45.07,
"quote_asset_bal": 9474.7721806511,
"total_value_mid": 10333.8063806511,
"total_value_exit_net": 10333.1621050011,
"total_value": 10333.8063806511,
"base_cost_quote": 296.52642815,
"unrealized_pnl_exit_net": 561.8634961999
},
{
"timestamp": "2024-12-03T23:59:00+00:00",
"base_asset_bal": 40.85,
"quote_asset_bal": 9559.1348651761,
"total_value_mid": 10364.696865176,
"total_value_exit_net": 10364.092693676,
"total_value": 10364.696865176,
"base_cost_quote": 215.084492475,
"unrealized_pnl_exit_net": 589.8733360249
},
{
"timestamp": "2024-12-04T23:59:00+00:00",
"base_asset_bal": 41.98,
"quote_asset_bal": 9536.4897499761,
"total_value_mid": 10377.349149976,
"total_value_exit_net": 10376.718505426,
"total_value": 10377.349149976,
"base_cost_quote": 240.2084213,
"unrealized_pnl_exit_net": 600.0203341499
},
{
"timestamp": "2024-12-05T23:59:00+00:00",
"base_asset_bal": 41.47,
"quote_asset_bal": 9549.0176289011,
"total_value_mid": 10389.199828901,
"total_value_exit_net": 10388.569692251,
"total_value": 10389.199828901,
"base_cost_quote": 230.3358224,
"unrealized_pnl_exit_net": 609.2162409499
},
{
"timestamp": "2024-12-06T23:59:00+00:00",
"base_asset_bal": 38.2,
"quote_asset_bal": 9617.3367186261,
"total_value_mid": 10443.984718626,
"total_value_exit_net": 10443.364732626,
"total_value": 10443.984718626,
"base_cost_quote": 164.254998925,
"unrealized_pnl_exit_net": 661.7730150749
},
{
"timestamp": "2024-12-07T23:59:00+00:00",
"base_asset_bal": 42.31,
"quote_asset_bal": 9531.2967963261,
"total_value_mid": 10405.844496326,
"total_value_exit_net": 10405.188585551,
"total_value": 10405.844496326,
"base_cost_quote": 251.144917525,
"unrealized_pnl_exit_net": 622.7468716999
},
{
"timestamp": "2024-12-08T23:59:00+00:00",
"base_asset_bal": 41.82,
"quote_asset_bal": 9542.6554208011,
"total_value_mid": 10412.093220801,
"total_value_exit_net": 10411.441142451,
"total_value": 10412.093220801,
"base_cost_quote": 240.690482575,
"unrealized_pnl_exit_net": 628.0952390749
},
{
"timestamp": "2024-12-09T23:59:00+00:00",
"base_asset_bal": 61.83,
"quote_asset_bal": 9161.793551251,
"total_value_mid": 10184.4617512509,
"total_value_exit_net": 10183.6947501009,
"total_value": 10184.4617512509,
"base_cost_quote": 623.05834355,
"unrealized_pnl_exit_net": 398.8428552999
},
{
"timestamp": "2024-12-10T23:59:00+00:00",
"base_asset_bal": 73.32,
"quote_asset_bal": 8981.903524126,
"total_value_mid": 10104.4327241259,
"total_value_exit_net": 10103.5908272259,
"total_value": 10104.4327241259,
"base_cost_quote": 806.13434765,
"unrealized_pnl_exit_net": 315.5529554499
},
{
"timestamp": "2024-12-11T23:59:00+00:00",
"base_asset_bal": 62.13,
"quote_asset_bal": 9162.115152551,
"total_value_mid": 10202.7926525509,
"total_value_exit_net": 10202.0121444259,
"total_value": 10202.7926525509,
"base_cost_quote": 627.6812081,
"unrealized_pnl_exit_net": 412.2157837749
},
{
"timestamp": "2024-12-12T23:59:00+00:00",
"base_asset_bal": 54.25,
"quote_asset_bal": 9308.714226601,
"total_value_mid": 10317.7642266009,
"total_value_exit_net": 10317.0074391009,
"total_value": 10317.7642266009,
"base_cost_quote": 475.56780855,
"unrealized_pnl_exit_net": 532.7254039499
},
{
"timestamp": "2024-12-13T23:59:00+00:00",
"base_asset_bal": 45.15,
"quote_asset_bal": 9490.014103601,
"total_value_mid": 10408.3651036009,
"total_value_exit_net": 10407.6763403509,
"total_value": 10408.3651036009,
"base_cost_quote": 297.07243735,
"unrealized_pnl_exit_net": 620.5897993999
},
{
"timestamp": "2024-12-14T23:59:00+00:00",
"base_asset_bal": 47.63,
"quote_asset_bal": 9441.631652376,
"total_value_mid": 10390.8975523759,
"total_value_exit_net": 10390.1856029509,
"total_value": 10390.8975523759,
"base_cost_quote": 347.6141152,
"unrealized_pnl_exit_net": 600.9398353749
},
{
"timestamp": "2024-12-15T23:59:00+00:00",
"base_asset_bal": 40.28,
"quote_asset_bal": 9597.1939396759,
"total_value_mid": 10469.6587396758,
"total_value_exit_net": 10469.0043910758,
"total_value": 10469.6587396758,
"base_cost_quote": 194.3356425,
"unrealized_pnl_exit_net": 677.4748088999
},
{
"timestamp": "2024-12-16T23:59:00+00:00",
"base_asset_bal": 47.18,
"quote_asset_bal": 9446.3392234509,
"total_value_mid": 10438.5346234508,
"total_value_exit_net": 10437.7904769008,
"total_value": 10438.5346234508,
"base_cost_quote": 347.463902625,
"unrealized_pnl_exit_net": 643.9873508249
},
{
"timestamp": "2024-12-17T23:59:00+00:00",
"base_asset_bal": 59.87,
"quote_asset_bal": 9197.9752637759,
"total_value_mid": 10317.5442637758,
"total_value_exit_net": 10316.7045870258,
"total_value": 10317.5442637758,
"base_cost_quote": 597.651402625,
"unrealized_pnl_exit_net": 521.0779206249
},
{
"timestamp": "2024-12-18T23:59:00+00:00",
"base_asset_bal": 63.02,
"quote_asset_bal": 9147.1097251759,
"total_value_mid": 10251.2201251758,
"total_value_exit_net": 10250.3920423758,
"total_value": 10251.2201251758,
"base_cost_quote": 643.355855275,
"unrealized_pnl_exit_net": 459.9264619249
},
{
"timestamp": "2024-12-19T23:59:00+00:00",
"base_asset_bal": 73.99,
"quote_asset_bal": 8959.7849982509,
"total_value_mid": 10163.6022982508,
"total_value_exit_net": 10162.6994352758,
"total_value": 10163.6022982508,
"base_cost_quote": 811.404197075,
"unrealized_pnl_exit_net": 391.5102399499
},
{
"timestamp": "2024-12-20T23:59:00+00:00",
"base_asset_bal": 57.07,
"quote_asset_bal": 9266.5702891759,
"total_value_mid": 10365.1677891758,
"total_value_exit_net": 10364.3438410508,
"total_value": 10365.1677891758,
"base_cost_quote": 500.805222425,
"unrealized_pnl_exit_net": 596.9683294499
},
{
"timestamp": "2024-12-21T23:59:00+00:00",
"base_asset_bal": 54.43,
"quote_asset_bal": 9326.1276149009,
"total_value_mid": 10365.1963149008,
"total_value_exit_net": 10364.4170133758,
"total_value": 10365.1963149008,
"base_cost_quote": 444.879309425,
"unrealized_pnl_exit_net": 593.4100890499
},
{
"timestamp": "2024-12-22T23:59:00+00:00",
"base_asset_bal": 60.86,
"quote_asset_bal": 9209.5543087259,
"total_value_mid": 10328.7697087258,
"total_value_exit_net": 10327.9302971758,
"total_value": 10328.7697087258,
"base_cost_quote": 562.025703375,
"unrealized_pnl_exit_net": 556.3502850749
},
{
"timestamp": "2024-12-23T23:59:00+00:00",
"base_asset_bal": 56.39,
"quote_asset_bal": 9297.0317302009,
"total_value_mid": 10367.3139302008,
"total_value_exit_net": 10366.5112185508,
"total_value": 10367.3139302008,
"base_cost_quote": 450.008553475,
"unrealized_pnl_exit_net": 619.4709348749
},
{
"timestamp": "2024-12-24T23:59:00+00:00",
"base_asset_bal": 48.68,
"quote_asset_bal": 9454.1655053259,
"total_value_mid": 10514.9027053258,
"total_value_exit_net": 10514.1071524258,
"total_value": 10514.9027053258,
"base_cost_quote": 296.301759775,
"unrealized_pnl_exit_net": 763.6398873249
},
{
"timestamp": "2024-12-25T23:59:00+00:00",
"base_asset_bal": 52.55,
"quote_asset_bal": 9406.6324992509,
"total_value_mid": 10395.6234992508,
"total_value_exit_net": 10394.8817560008,
"total_value": 10395.6234992508,
"base_cost_quote": 347.2754614,
"unrealized_pnl_exit_net": 640.9737953499
},
{
"timestamp": "2024-12-26T23:59:00+00:00",
"base_asset_bal": 60.38,
"quote_asset_bal": 9267.7538345509,
"total_value_mid": 10343.1216345508,
"total_value_exit_net": 10342.3151087008,
"total_value": 10343.1216345508,
"base_cost_quote": 443.949612675,
"unrealized_pnl_exit_net": 630.6116614749
},
{
"timestamp": "2024-12-27T23:59:00+00:00",
"base_asset_bal": 63.19,
"quote_asset_bal": 9220.1711209009,
"total_value_mid": 10344.3212209008,
"total_value_exit_net": 10343.4781083258,
"total_value": 10344.3212209008,
"base_cost_quote": 459.370970025,
"unrealized_pnl_exit_net": 663.9360173999
},
{
"timestamp": "2024-12-28T23:59:00+00:00",
"base_asset_bal": 61.72,
"quote_asset_bal": 9248.1404806009,
"total_value_mid": 10364.6552806009,
"total_value_exit_net": 10363.8178945009,
"total_value": 10364.6552806009,
"base_cost_quote": 408.413180325,
"unrealized_pnl_exit_net": 707.2642335749
},
{
"timestamp": "2024-12-29T23:59:00+00:00",
"base_asset_bal": 68.87,
"quote_asset_bal": 9123.545699626,
"total_value_mid": 10312.2418996259,
"total_value_exit_net": 10311.3503774759,
"total_value": 10312.2418996259,
"base_cost_quote": 515.326104925,
"unrealized_pnl_exit_net": 672.4785729249
},
{
"timestamp": "2024-12-30T23:59:00+00:00",
"base_asset_bal": 71.39,
"quote_asset_bal": 9080.8781258259,
"total_value_mid": 10312.3556258259,
"total_value_exit_net": 10311.4320177009,
"total_value": 10312.3556258259,
"base_cost_quote": 535.634925125,
"unrealized_pnl_exit_net": 694.91896675
},
{
"timestamp": "2024-12-31T23:59:00+00:00",
"base_asset_bal": 65.51,
"quote_asset_bal": 9186.304866576,
"total_value_mid": 10385.1378665759,
"total_value_exit_net": 10384.2387418259,
"total_value": 10385.1378665759,
"base_cost_quote": 418.7426216,
"unrealized_pnl_exit_net": 779.19125365
},
{
"timestamp": "2025-01-01T23:59:00+00:00",
"base_asset_bal": 68.65,
"quote_asset_bal": 9135.7484413759,
"total_value_mid": 10297.3064413759,
"total_value_exit_net": 10296.4352728759,
"total_value": 10297.3064413759,
"base_cost_quote": 469.520176225,
"unrealized_pnl_exit_net": 691.166655275
},
{
"timestamp": "2025-01-02T23:59:00+00:00",
"base_asset_bal": 66.93,
"quote_asset_bal": 9166.1025756509,
"total_value_mid": 10308.5976756509,
"total_value_exit_net": 10307.7408043259,
"total_value": 10308.5976756509,
"base_cost_quote": 438.68336595,
"unrealized_pnl_exit_net": 702.954862725
},
{
"timestamp": "2025-01-03T23:59:00+00:00",
"base_asset_bal": 66.98,
"quote_asset_bal": 9165.6992406009,
"total_value_mid": 10335.8398406009,
"total_value_exit_net": 10334.9622351509,
"total_value": 10335.8398406009,
"base_cost_quote": 433.589448375,
"unrealized_pnl_exit_net": 735.673546175
},
{
"timestamp": "2025-01-04T23:59:00+00:00",
"base_asset_bal": 66.87,
"quote_asset_bal": 9167.880848776,
"total_value_mid": 10367.528648776,
"total_value_exit_net": 10366.628912926,
"total_value": 10367.528648776,
"base_cost_quote": 423.08447555,
"unrealized_pnl_exit_net": 775.6635886
},
{
"timestamp": "2025-01-05T23:59:00+00:00",
"base_asset_bal": 69.25,
"quote_asset_bal": 9126.440058751,
"total_value_mid": 10362.552558751,
"total_value_exit_net": 10361.625474376,
"total_value": 10362.552558751,
"base_cost_quote": 443.4131106,
"unrealized_pnl_exit_net": 791.772305025
},
{
"timestamp": "2025-01-06T23:59:00+00:00",
"base_asset_bal": 69.87,
"quote_asset_bal": 9116.189705651,
"total_value_mid": 10368.958805651,
"total_value_exit_net": 10368.019228826,
"total_value": 10368.958805651,
"base_cost_quote": 438.23262815,
"unrealized_pnl_exit_net": 813.596895025
},
{
"timestamp": "2025-01-07T23:59:00+00:00",
"base_asset_bal": 83.17,
"quote_asset_bal": 8892.023708751,
"total_value_mid": 10233.555808751,
"total_value_exit_net": 10232.549659676,
"total_value": 10233.555808751,
"base_cost_quote": 652.104712,
"unrealized_pnl_exit_net": 688.421238925
},
{
"timestamp": "2025-01-08T23:59:00+00:00",
"base_asset_bal": 90.34,
"quote_asset_bal": 8781.373833576,
"total_value_mid": 10174.416633576,
"total_value_exit_net": 10173.371851476,
"total_value": 10174.416633576,
"base_cost_quote": 764.308501775,
"unrealized_pnl_exit_net": 627.689516125
},
{
"timestamp": "2025-01-09T23:59:00+00:00",
"base_asset_bal": 90.32,
"quote_asset_bal": 8783.1335096511,
"total_value_mid": 10181.287109651,
"total_value_exit_net": 10180.238494451,
"total_value": 10181.287109651,
"base_cost_quote": 763.98435885,
"unrealized_pnl_exit_net": 633.12062595
},
{
"timestamp": "2025-01-10T23:59:00+00:00",
"base_asset_bal": 88.35,
"quote_asset_bal": 8814.6751739261,
"total_value_mid": 10199.1196739261,
"total_value_exit_net": 10198.0813405511,
"total_value": 10199.1196739261,
"base_cost_quote": 733.513222625,
"unrealized_pnl_exit_net": 649.892944
},
{
"timestamp": "2025-01-11T23:59:00+00:00",
"base_asset_bal": 88.04,
"quote_asset_bal": 8819.9402208011,
"total_value_mid": 10183.6798208011,
"total_value_exit_net": 10182.6570161011,
"total_value": 10183.6798208011,
"base_cost_quote": 728.6825023,
"unrealized_pnl_exit_net": 634.034293
},
{
"timestamp": "2025-01-12T23:59:00+00:00",
"base_asset_bal": 92.01,
"quote_asset_bal": 8759.4375313011,
"total_value_mid": 10155.2292313011,
"total_value_exit_net": 10154.1823875261,
"total_value": 10155.2292313011,
"base_cost_quote": 789.57914055,
"unrealized_pnl_exit_net": 605.165715675
},
{
"timestamp": "2025-01-13T23:59:00+00:00",
"base_asset_bal": 100.96,
"quote_asset_bal": 8629.4889076011,
"total_value_mid": 10076.2457076011,
"total_value_exit_net": 10075.1606400011,
"total_value": 10076.2457076011,
"base_cost_quote": 921.406537,
"unrealized_pnl_exit_net": 524.2651954
},
{
"timestamp": "2025-01-14T23:59:00+00:00",
"base_asset_bal": 95.4,
"quote_asset_bal": 8711.1841708011,
"total_value_mid": 10121.1961708011,
"total_value_exit_net": 10120.1386618011,
"total_value": 10121.1961708011,
"base_cost_quote": 840.4834902,
"unrealized_pnl_exit_net": 568.4710008
},
{
"timestamp": "2025-01-15T23:59:00+00:00",
"base_asset_bal": 88.38,
"quote_asset_bal": 8818.9126250012,
"total_value_mid": 10194.9892250011,
"total_value_exit_net": 10193.9571675511,
"total_value": 10194.9892250011,
"base_cost_quote": 733.74089325,
"unrealized_pnl_exit_net": 641.3036493
},
{
"timestamp": "2025-01-16T23:59:00+00:00",
"base_asset_bal": 93.34,
"quote_asset_bal": 8743.5219927762,
"total_value_mid": 10158.5563927761,
"total_value_exit_net": 10157.4951169761,
"total_value": 10158.5563927761,
"base_cost_quote": 809.918083325,
"unrealized_pnl_exit_net": 604.055040875
},
{
"timestamp": "2025-01-17T23:59:00+00:00",
"base_asset_bal": 85.82,
"quote_asset_bal": 8861.0643823761,
"total_value_mid": 10225.6023823761,
"total_value_exit_net": 10224.5789788761,
"total_value": 10225.6023823761,
"base_cost_quote": 693.060505825,
"unrealized_pnl_exit_net": 670.454090675
},
{
"timestamp": "2025-01-18T23:59:00+00:00",
"base_asset_bal": 97.45,
"quote_asset_bal": 8684.4039490512,
"total_value_mid": 10113.9954490511,
"total_value_exit_net": 10112.9232554262,
"total_value": 10113.9954490511,
"base_cost_quote": 870.96333295,
"unrealized_pnl_exit_net": 557.555973425
},
{
"timestamp": "2025-01-19T23:59:00+00:00",
"base_asset_bal": 105.19,
"quote_asset_bal": 8579.9064055762,
"total_value_mid": 9966.3106055762,
"total_value_exit_net": 9965.2708024262,
"total_value": 9966.3106055762,
"base_cost_quote": 977.618964725,
"unrealized_pnl_exit_net": 407.745432125
},
{
"timestamp": "2025-01-20T23:59:00+00:00",
"base_asset_bal": 109.62,
"quote_asset_bal": 8521.9744179512,
"total_value_mid": 9971.1508179512,
"total_value_exit_net": 9970.0639356512,
"total_value": 9971.1508179512,
"base_cost_quote": 1038.37479745,
"unrealized_pnl_exit_net": 409.71472025
},
{
"timestamp": "2025-01-21T23:59:00+00:00",
"base_asset_bal": 106.18,
"quote_asset_bal": 8569.3360921262,
"total_value_mid": 10015.5076921262,
"total_value_exit_net": 10014.4230634262,
"total_value": 10015.5076921262,
"base_cost_quote": 992.709674275,
"unrealized_pnl_exit_net": 452.377297025
},
{
"timestamp": "2025-01-22T23:59:00+00:00",
"base_asset_bal": 106.93,
"quote_asset_bal": 8560.0311146013,
"total_value_mid": 10006.7940146013,
"total_value_exit_net": 10005.7089424263,
"total_value": 10006.7940146013,
"base_cost_quote": 1002.7867264,
"unrealized_pnl_exit_net": 442.891101425
},
{
"timestamp": "2025-01-23T23:59:00+00:00",
"base_asset_bal": 109.59,
"quote_asset_bal": 8525.7662783013,
"total_value_mid": 9982.2173783013,
"total_value_exit_net": 9981.1250399763,
"total_value": 9982.2173783013,
"base_cost_quote": 1038.22028165,
"unrealized_pnl_exit_net": 417.138480025
},
{
"timestamp": "2025-01-24T23:59:00+00:00",
"base_asset_bal": 114.64,
"quote_asset_bal": 8460.7922539013,
"total_value_mid": 9924.7450539013,
"total_value_exit_net": 9923.6470893013,
"total_value": 9924.7450539013,
"base_cost_quote": 1104.04361215,
"unrealized_pnl_exit_net": 358.81122325
},
{
"timestamp": "2025-01-25T23:59:00+00:00",
"base_asset_bal": 112.69,
"quote_asset_bal": 8486.5554139013,
"total_value_mid": 9949.2716139013,
"total_value_exit_net": 9948.1745767513,
"total_value": 9949.2716139013,
"base_cost_quote": 1078.79148725,
"unrealized_pnl_exit_net": 382.8276756
},
{
"timestamp": "2025-01-26T23:59:00+00:00",
"base_asset_bal": 113.13,
"quote_asset_bal": 8481.7245813013,
"total_value_mid": 9919.6068813013,
"total_value_exit_net": 9918.5284695763,
"total_value": 9919.6068813013,
"base_cost_quote": 1084.0532306,
"unrealized_pnl_exit_net": 352.750657675
},
{
"timestamp": "2025-01-27T23:59:00+00:00",
"base_asset_bal": 120.42,
"quote_asset_bal": 8391.8492691513,
"total_value_mid": 9871.8110691513,
"total_value_exit_net": 9870.7010978013,
"total_value": 9871.8110691513,
"base_cost_quote": 1175.2211553,
"unrealized_pnl_exit_net": 303.63067335
},
{
"timestamp": "2025-01-28T23:59:00+00:00",
"base_asset_bal": 125.09,
"quote_asset_bal": 8336.8410716763,
"total_value_mid": 9794.1395716763,
"total_value_exit_net": 9793.0465978013,
"total_value": 9794.1395716763,
"base_cost_quote": 1230.9417144,
"unrealized_pnl_exit_net": 225.263811725
},
{
"timestamp": "2025-01-29T23:59:00+00:00",
"base_asset_bal": 122.5,
"quote_asset_bal": 8368.0388683513,
"total_value_mid": 9833.1388683513,
"total_value_exit_net": 9832.0400433513,
"total_value": 9833.1388683513,
"base_cost_quote": 1200.660720675,
"unrealized_pnl_exit_net": 263.340454325
},
{
"timestamp": "2025-01-30T23:59:00+00:00",
"base_asset_bal": 116.27,
"quote_asset_bal": 8444.7534251013,
"total_value_mid": 9885.3387251013,
"total_value_exit_net": 9884.2582861263,
"total_value": 9885.3387251013,
"base_cost_quote": 1124.645952325,
"unrealized_pnl_exit_net": 314.8589087
},
{
"timestamp": "2025-01-31T23:59:00+00:00",
"base_asset_bal": 115.42,
"quote_asset_bal": 8456.3066548513,
"total_value_mid": 9902.5192548513,
"total_value_exit_net": 9901.4345954013,
"total_value": 9902.5192548513,
"base_cost_quote": 1114.293994175,
"unrealized_pnl_exit_net": 330.833946375
},
{
"timestamp": "2025-02-01T23:59:00+00:00",
"base_asset_bal": 129.63,
"quote_asset_bal": 8289.6960773513,
"total_value_mid": 9746.7372773513,
"total_value_exit_net": 9745.6444964513,
"total_value": 9746.7372773513,
"base_cost_quote": 1281.52462315,
"unrealized_pnl_exit_net": 174.42379595
},
{
"timestamp": "2025-02-02T23:59:00+00:00",
"base_asset_bal": 156.74,
"quote_asset_bal": 8013.5656717263,
"total_value_mid": 9496.3260717263,
"total_value_exit_net": 9495.2140014263,
"total_value": 9496.3260717263,
"base_cost_quote": 1559.4575166,
"unrealized_pnl_exit_net": -77.8091869
},
{
"timestamp": "2025-02-03T23:59:00+00:00",
"base_asset_bal": 153.68,
"quote_asset_bal": 8048.6725341263,
"total_value_mid": 9550.1261341263,
"total_value_exit_net": 9549.0000439263,
"total_value": 9550.1261341263,
"base_cost_quote": 1519.01020385,
"unrealized_pnl_exit_net": -18.68269405
},
{
"timestamp": "2025-02-04T23:59:00+00:00",
"base_asset_bal": 161.78,
"quote_asset_bal": 7974.9980196763,
"total_value_mid": 9439.1070196763,
"total_value_exit_net": 9438.0089379263,
"total_value": 9439.1070196763,
"base_cost_quote": 1595.057296425,
"unrealized_pnl_exit_net": -132.046378175
},
{
"timestamp": "2025-02-05T23:59:00+00:00",
"base_asset_bal": 167.66,
"quote_asset_bal": 7923.7607836013,
"total_value_mid": 9399.1687836013,
"total_value_exit_net": 9398.0622276013,
"total_value": 9399.1687836013,
"base_cost_quote": 1645.29524665,
"unrealized_pnl_exit_net": -170.99380265
},
{
"timestamp": "2025-02-06T23:59:00+00:00",
"base_asset_bal": 175.11,
"quote_asset_bal": 7860.8541416262,
"total_value_mid": 9340.5336416262,
"total_value_exit_net": 9339.4238820012,
"total_value": 9340.5336416262,
"base_cost_quote": 1705.905170025,
"unrealized_pnl_exit_net": -227.33542965
},
{
"timestamp": "2025-02-07T23:59:00+00:00",
"base_asset_bal": 173.51,
"quote_asset_bal": 7876.8321080012,
"total_value_mid": 9362.0777080012,
"total_value_exit_net": 9360.9637738012,
"total_value": 9362.0777080012,
"base_cost_quote": 1685.7813885,
"unrealized_pnl_exit_net": -201.6497227
},
{
"timestamp": "2025-02-08T23:59:00+00:00",
"base_asset_bal": 165.32,
"quote_asset_bal": 7950.1290822762,
"total_value_mid": 9452.8878822762,
"total_value_exit_net": 9451.7608131762,
"total_value": 9452.8878822762,
"base_cost_quote": 1609.956262275,
"unrealized_pnl_exit_net": -108.324531375
},
{
"timestamp": "2025-02-09T23:59:00+00:00",
"base_asset_bal": 157.56,
"quote_asset_bal": 8029.0526156012,
"total_value_mid": 9506.9654156012,
"total_value_exit_net": 9505.8569810012,
"total_value": 9506.9654156012,
"base_cost_quote": 1534.0204531,
"unrealized_pnl_exit_net": -57.2160877
},
{
"timestamp": "2025-02-10T23:59:00+00:00",
"base_asset_bal": 157.02,
"quote_asset_bal": 8035.6810120262,
"total_value_mid": 9527.3710120262,
"total_value_exit_net": 9526.2522445262,
"total_value": 9527.3710120262,
"base_cost_quote": 1528.972770175,
"unrealized_pnl_exit_net": -38.401537675
},
{
"timestamp": "2025-02-11T23:59:00+00:00",
"base_asset_bal": 162.87,
"quote_asset_bal": 7981.1960213262,
"total_value_mid": 9494.2583213262,
"total_value_exit_net": 9493.1235246012,
"total_value": 9494.2583213262,
"base_cost_quote": 1584.5719383,
"unrealized_pnl_exit_net": -72.644435025
},
{
"timestamp": "2025-02-12T23:59:00+00:00",
"base_asset_bal": 151.31,
"quote_asset_bal": 8094.1262221012,
"total_value_mid": 9648.0799221012,
"total_value_exit_net": 9646.9144568262,
"total_value": 9648.0799221012,
"base_cost_quote": 1473.417735125,
"unrealized_pnl_exit_net": 79.3704996
},
{
"timestamp": "2025-02-13T23:59:00+00:00",
"base_asset_bal": 124.13,
"quote_asset_bal": 8411.2729913512,
"total_value_mid": 9871.0417913512,
"total_value_exit_net": 9869.9469647512,
"total_value": 9871.0417913512,
"base_cost_quote": 1159.76257005,
"unrealized_pnl_exit_net": 298.91140335
},
{
"timestamp": "2025-02-14T23:59:00+00:00",
"base_asset_bal": 126.02,
"quote_asset_bal": 8394.0194636762,
"total_value_mid": 9823.0862636762,
"total_value_exit_net": 9822.0144635762,
"total_value": 9823.0862636762,
"base_cost_quote": 1179.900962525,
"unrealized_pnl_exit_net": 248.094037375
},
{
"timestamp": "2025-02-15T23:59:00+00:00",
"base_asset_bal": 130.22,
"quote_asset_bal": 8349.8932314512,
"total_value_mid": 9764.0824314512,
"total_value_exit_net": 9763.0217895512,
"total_value": 9764.0824314512,
"base_cost_quote": 1225.42858265,
"unrealized_pnl_exit_net": 187.69997545
},
{
"timestamp": "2025-02-16T23:59:00+00:00",
"base_asset_bal": 126.93,
"quote_asset_bal": 8386.4806529762,
"total_value_mid": 9792.8650529763,
"total_value_exit_net": 9791.8102646763,
"total_value": 9792.8650529763,
"base_cost_quote": 1189.899655925,
"unrealized_pnl_exit_net": 215.429955775
},
{
"timestamp": "2025-02-17T23:59:00+00:00",
"base_asset_bal": 130.69,
"quote_asset_bal": 8347.0700561013,
"total_value_mid": 9748.0668561013,
"total_value_exit_net": 9747.0161085013,
"total_value": 9748.0668561013,
"base_cost_quote": 1230.484671875,
"unrealized_pnl_exit_net": 169.461380525
},
{
"timestamp": "2025-02-18T23:59:00+00:00",
"base_asset_bal": 118.76,
"quote_asset_bal": 8480.7340005263,
"total_value_mid": 9871.4136005263,
"total_value_exit_net": 9870.3705908263,
"total_value": 9871.4136005263,
"base_cost_quote": 1098.853222275,
"unrealized_pnl_exit_net": 290.783368025
},
{
"timestamp": "2025-02-19T23:59:00+00:00",
"base_asset_bal": 120.63,
"quote_asset_bal": 8457.8651164763,
"total_value_mid": 9945.2330164763,
"total_value_exit_net": 9944.1174905513,
"total_value": 9945.2330164763,
"base_cost_quote": 1124.093338175,
"unrealized_pnl_exit_net": 362.1590359
},
{
"timestamp": "2025-02-20T23:59:00+00:00",
"base_asset_bal": 117.69,
"quote_asset_bal": 8495.5740439263,
"total_value_mid": 10032.6054439263,
"total_value_exit_net": 10031.4526703763,
"total_value": 10032.6054439263,
"base_cost_quote": 1088.731636775,
"unrealized_pnl_exit_net": 447.146989675
},
{
"timestamp": "2025-02-21T23:59:00+00:00",
"base_asset_bal": 116.96,
"quote_asset_bal": 8507.6107823263,
"total_value_mid": 10038.6171823263,
"total_value_exit_net": 10037.4689275263,
"total_value": 10038.6171823263,
"base_cost_quote": 1078.659088025,
"unrealized_pnl_exit_net": 451.199057175
},
{
"timestamp": "2025-02-22T23:59:00+00:00",
"base_asset_bal": 113.54,
"quote_asset_bal": 8560.3378768513,
"total_value_mid": 10015.9206768513,
"total_value_exit_net": 10014.8289897513,
"total_value": 10015.9206768513,
"base_cost_quote": 1027.92816835,
"unrealized_pnl_exit_net": 426.56294455
},
{
"timestamp": "2025-02-23T23:59:00+00:00",
"base_asset_bal": 108.74,
"quote_asset_bal": 8623.6031184014,
"total_value_mid": 10132.9143184014,
"total_value_exit_net": 10131.7823350014,
"total_value": 10132.9143184014,
"base_cost_quote": 967.0623532,
"unrealized_pnl_exit_net": 541.1168634
},
{
"timestamp": "2025-02-24T23:59:00+00:00",
"base_asset_bal": 101.68,
"quote_asset_bal": 8728.3026249764,
"total_value_mid": 10219.9482249764,
"total_value_exit_net": 10218.8294907764,
"total_value": 10219.9482249764,
"base_cost_quote": 865.515950475,
"unrealized_pnl_exit_net": 625.010915325
},
{
"timestamp": "2025-02-25T23:59:00+00:00",
"base_asset_bal": 88.16,
"quote_asset_bal": 8940.6093206514,
"total_value_mid": 10363.5117206514,
"total_value_exit_net": 10362.4445438514,
"total_value": 10363.5117206514,
"base_cost_quote": 656.492,
"unrealized_pnl_exit_net": 765.3432232
},
{
"timestamp": "2025-02-26T23:59:00+00:00",
"base_asset_bal": 86.24,
"quote_asset_bal": 8985.7887875264,
"total_value_mid": 10340.6191875264,
"total_value_exit_net": 10339.6030647264,
"total_value": 10340.6191875264,
"base_cost_quote": 600.576594875,
"unrealized_pnl_exit_net": 753.237682325
},
{
"timestamp": "2025-02-27T23:59:00+00:00",
"base_asset_bal": 90.31,
"quote_asset_bal": 8926.2084200764,
"total_value_mid": 10281.7615200764,
"total_value_exit_net": 10280.7448552514,
"total_value": 10281.7615200764,
"base_cost_quote": 661.8912464,
"unrealized_pnl_exit_net": 692.645188775
},
{
"timestamp": "2025-02-28T23:59:00+00:00",
"base_asset_bal": 92.44,
"quote_asset_bal": 8898.3114729014,
"total_value_mid": 10235.9182729015,
"total_value_exit_net": 10234.9150678015,
"total_value": 10235.9182729015,
"base_cost_quote": 692.037939475,
"unrealized_pnl_exit_net": 644.565655425
},
{
"timestamp": "2025-03-01T23:59:00+00:00",
"base_asset_bal": 102.9,
"quote_asset_bal": 8752.5631346514,
"total_value_mid": 10136.5681346514,
"total_value_exit_net": 10135.5301309014,
"total_value": 10136.5681346514,
"base_cost_quote": 838.941834825,
"unrealized_pnl_exit_net": 544.025161425
},
{
"timestamp": "2025-03-02T23:59:00+00:00",
"base_asset_bal": 99.19,
"quote_asset_bal": 8805.3629399265,
"total_value_mid": 10174.1849399265,
"total_value_exit_net": 10173.1583234265,
"total_value": 10174.1849399265,
"base_cost_quote": 788.35702465,
"unrealized_pnl_exit_net": 579.43835885
},
{
"timestamp": "2025-03-03T23:59:00+00:00",
"base_asset_bal": 107.26,
"quote_asset_bal": 8712.3199179765,
"total_value_mid": 10035.9083179766,
"total_value_exit_net": 10034.9156266766,
"total_value": 10035.9083179766,
"base_cost_quote": 884.20685815,
"unrealized_pnl_exit_net": 438.38885055
},
{
"timestamp": "2025-03-04T23:59:00+00:00",
"base_asset_bal": 111.47,
"quote_asset_bal": 8663.4211895015,
"total_value_mid": 10002.1758895016,
"total_value_exit_net": 10001.1718234766,
"total_value": 10002.1758895016,
"base_cost_quote": 935.042656425,
"unrealized_pnl_exit_net": 402.70797755
},
{
"timestamp": "2025-03-05T23:59:00+00:00",
"base_asset_bal": 114.45,
"quote_asset_bal": 8628.6847677766,
"total_value_mid": 9971.1832677766,
"total_value_exit_net": 9970.1763939016,
"total_value": 9971.1832677766,
"base_cost_quote": 970.50753515,
"unrealized_pnl_exit_net": 370.984090975
},
{
"timestamp": "2025-03-06T23:59:00+00:00",
"base_asset_bal": 101.65,
"quote_asset_bal": 8787.7068535015,
"total_value_mid": 10078.6618535016,
"total_value_exit_net": 10077.6936372516,
"total_value": 10078.6618535016,
"base_cost_quote": 813.298016375,
"unrealized_pnl_exit_net": 476.688767375
},
{
"timestamp": "2025-03-07T23:59:00+00:00",
"base_asset_bal": 86.26,
"quote_asset_bal": 9004.5947431516,
"total_value_mid": 10320.9223431516,
"total_value_exit_net": 10319.9350974516,
"total_value": 10320.9223431516,
"base_cost_quote": 600.986402,
"unrealized_pnl_exit_net": 714.3539523
},
{
"timestamp": "2025-03-08T23:59:00+00:00",
"base_asset_bal": 77.07,
"quote_asset_bal": 9155.7458621266,
"total_value_mid": 10452.8339621266,
"total_value_exit_net": 10451.8611460516,
"total_value": 10452.8339621266,
"base_cost_quote": 453.593039825,
"unrealized_pnl_exit_net": 842.5222441
},
{
"timestamp": "2025-03-09T23:59:00+00:00",
"base_asset_bal": 77.7,
"quote_asset_bal": 9148.4847394265,
"total_value_mid": 10470.1617394265,
"total_value_exit_net": 10469.1704816765,
"total_value": 10470.1617394265,
"base_cost_quote": 463.8256085,
"unrealized_pnl_exit_net": 856.86013375
},
{
"timestamp": "2025-03-10T23:59:00+00:00",
"base_asset_bal": 65.19,
"quote_asset_bal": 9387.6081335265,
"total_value_mid": 10671.1992335265,
"total_value_exit_net": 10670.2365402015,
"total_value": 10671.1992335265,
"base_cost_quote": 219.29414735,
"unrealized_pnl_exit_net": 1063.334259325
},
{
"timestamp": "2025-03-11T23:59:00+00:00",
"base_asset_bal": 61.69,
"quote_asset_bal": 9453.5949899765,
"total_value_mid": 11061.2363899765,
"total_value_exit_net": 11060.0306589265,
"total_value": 11061.2363899765,
"base_cost_quote": 157.60791735,
"unrealized_pnl_exit_net": 1448.8277516001
},
{
"timestamp": "2025-03-12T23:59:00+00:00",
"base_asset_bal": 63.51,
"quote_asset_bal": 9411.5669472765,
"total_value_mid": 11017.7348472766,
"total_value_exit_net": 11016.5302213516,
"total_value": 11017.7348472766,
"base_cost_quote": 203.9216266,
"unrealized_pnl_exit_net": 1401.041647475
},
{
"timestamp": "2025-03-13T23:59:00+00:00",
"base_asset_bal": 64.19,
"quote_asset_bal": 9394.2614429015,
"total_value_mid": 11046.5120429016,
"total_value_exit_net": 11045.2728549516,
"total_value": 11046.5120429016,
"base_cost_quote": 225.013933975,
"unrealized_pnl_exit_net": 1425.997478075
},
{
"timestamp": "2025-03-14T23:59:00+00:00",
"base_asset_bal": 61.08,
"quote_asset_bal": 9480.1251566766,
"total_value_mid": 11171.4303566766,
"total_value_exit_net": 11170.1618777766,
"total_value": 11171.4303566766,
"base_cost_quote": 142.877177575,
"unrealized_pnl_exit_net": 1547.1595435251
},
{
"timestamp": "2025-03-15T23:59:00+00:00",
"base_asset_bal": 63.16,
"quote_asset_bal": 9426.6317434016,
"total_value_mid": 11087.7397434016,
"total_value_exit_net": 11086.4939124016,
"total_value": 11087.7397434016,
"base_cost_quote": 198.904566625,
"unrealized_pnl_exit_net": 1460.957602375
},
{
"timestamp": "2025-03-16T23:59:00+00:00",
"base_asset_bal": 60.8,
"quote_asset_bal": 9486.4125492266,
"total_value_mid": 11598.6045492266,
"total_value_exit_net": 11597.0204052266,
"total_value": 11598.6045492266,
"base_cost_quote": 143.1484809,
"unrealized_pnl_exit_net": 1967.4593751001
},
{
"timestamp": "2025-03-17T23:59:00+00:00",
"base_asset_bal": 63.47,
"quote_asset_bal": 9401.1909707016,
"total_value_mid": 11454.4454707016,
"total_value_exit_net": 11452.9055298266,
"total_value": 11454.4454707016,
"base_cost_quote": 231.89399015,
"unrealized_pnl_exit_net": 1819.8205689751
},
{
"timestamp": "2025-03-18T23:59:00+00:00",
"base_asset_bal": 60.72,
"quote_asset_bal": 9493.9322523266,
"total_value_mid": 11777.6114523266,
"total_value_exit_net": 11775.8986929266,
"total_value": 11777.6114523266,
"base_cost_quote": 143.354335175,
"unrealized_pnl_exit_net": 2138.6121054251
},
{
"timestamp": "2025-03-19T23:59:00+00:00",
"base_asset_bal": 60.27,
"quote_asset_bal": 9513.6190540515,
"total_value_mid": 11932.8568540516,
"total_value_exit_net": 11931.0424257016,
"total_value": 11932.8568540516,
"base_cost_quote": 127.65947285,
"unrealized_pnl_exit_net": 2289.7638988001
},
{
"timestamp": "2025-03-20T23:59:00+00:00",
"base_asset_bal": 61.51,
"quote_asset_bal": 9455.9372253765,
"total_value_mid": 12262.6385253766,
"total_value_exit_net": 12260.5334994016,
"total_value": 12262.6385253766,
"base_cost_quote": 188.736946625,
"unrealized_pnl_exit_net": 2615.8593274001
},
{
"timestamp": "2025-03-21T23:59:00+00:00",
"base_asset_bal": 60.46,
"quote_asset_bal": 9499.9245680765,
"total_value_mid": 12619.6605680766,
"total_value_exit_net": 12617.3207660766,
"total_value": 12619.6605680766,
"base_cost_quote": 148.70924835,
"unrealized_pnl_exit_net": 2968.6869496501
},
{
"timestamp": "2025-03-22T23:59:00+00:00",
"base_asset_bal": 63.09,
"quote_asset_bal": 9378.0016773765,
"total_value_mid": 11349.5641773765,
"total_value_exit_net": 11348.0855055015,
"total_value": 11349.5641773765,
"base_cost_quote": 274.9600655,
"unrealized_pnl_exit_net": 1695.1237626251
},
{
"timestamp": "2025-03-23T23:59:00+00:00",
"base_asset_bal": 69.61,
"quote_asset_bal": 9228.7572935265,
"total_value_mid": 10672.4686935266,
"total_value_exit_net": 10671.3859099766,
"total_value": 10672.4686935266,
"base_cost_quote": 428.945568075,
"unrealized_pnl_exit_net": 1013.683048375
},
{
"timestamp": "2025-03-24T23:59:00+00:00",
"base_asset_bal": 69.58,
"quote_asset_bal": 9232.2631989515,
"total_value_mid": 10720.5793989516,
"total_value_exit_net": 10719.4631618016,
"total_value": 10720.5793989516,
"base_cost_quote": 429.32195015,
"unrealized_pnl_exit_net": 1057.8780127
},
{
"timestamp": "2025-03-25T23:59:00+00:00",
"base_asset_bal": 76.82,
"quote_asset_bal": 9086.8389152015,
"total_value_mid": 10608.6431152015,
"total_value_exit_net": 10607.5017620515,
"total_value": 10608.6431152015,
"base_cost_quote": 576.851014025,
"unrealized_pnl_exit_net": 943.811832825
},
{
"timestamp": "2025-03-26T23:59:00+00:00",
"base_asset_bal": 87.73,
"quote_asset_bal": 8879.9236736515,
"total_value_mid": 10506.4378736515,
"total_value_exit_net": 10505.2179880015,
"total_value": 10506.4378736515,
"base_cost_quote": 785.559227875,
"unrealized_pnl_exit_net": 839.735086475
},
{
"timestamp": "2025-03-27T23:59:00+00:00",
"base_asset_bal": 95.35,
"quote_asset_bal": 8746.6486881515,
"total_value_mid": 10407.6456881515,
"total_value_exit_net": 10406.3999404015,
"total_value": 10407.6456881515,
"base_cost_quote": 898.530692975,
"unrealized_pnl_exit_net": 761.220559275
},
{
"timestamp": "2025-03-28T23:59:00+00:00",
"base_asset_bal": 83.71,
"quote_asset_bal": 8969.3443394515,
"total_value_mid": 10472.7759394515,
"total_value_exit_net": 10471.6483657515,
"total_value": 10472.7759394515,
"base_cost_quote": 653.149995375,
"unrealized_pnl_exit_net": 849.1540309251
},
{
"timestamp": "2025-03-29T23:59:00+00:00",
"base_asset_bal": 87.06,
"quote_asset_bal": 8914.4675951765,
"total_value_mid": 10449.3353951766,
"total_value_exit_net": 10448.1842443266,
"total_value": 10449.3353951766,
"base_cost_quote": 678.375300175,
"unrealized_pnl_exit_net": 855.3413489751
},
{
"timestamp": "2025-03-30T23:59:00+00:00",
"base_asset_bal": 93.17,
"quote_asset_bal": 8811.8636249265,
"total_value_mid": 10392.9585249266,
"total_value_exit_net": 10391.7727037516,
"total_value": 10392.9585249266,
"base_cost_quote": 769.80351995,
"unrealized_pnl_exit_net": 810.1055588751
},
{
"timestamp": "2025-03-31T23:59:00+00:00",
"base_asset_bal": 97.27,
"quote_asset_bal": 8748.6736233515,
"total_value_mid": 10279.7034233516,
"total_value_exit_net": 10278.5551510016,
"total_value": 10279.7034233516,
"base_cost_quote": 835.831703975,
"unrealized_pnl_exit_net": 694.0498236751
},
{
"timestamp": "2025-04-01T23:59:00+00:00",
"base_asset_bal": 107.14,
"quote_asset_bal": 8597.7622694515,
"total_value_mid": 10212.3620694516,
"total_value_exit_net": 10211.1511196016,
"total_value": 10212.3620694516,
"base_cost_quote": 988.449681675,
"unrealized_pnl_exit_net": 624.9391684751
},
{
"timestamp": "2025-04-02T23:59:00+00:00",
"base_asset_bal": 111.95,
"quote_asset_bal": 8529.2484248515,
"total_value_mid": 10131.2529248516,
"total_value_exit_net": 10130.0514214766,
"total_value": 10131.2529248516,
"base_cost_quote": 1059.411863425,
"unrealized_pnl_exit_net": 541.3911332001
},
{
"timestamp": "2025-04-03T23:59:00+00:00",
"base_asset_bal": 120.11,
"quote_asset_bal": 8419.9263648266,
"total_value_mid": 10035.4058648266,
"total_value_exit_net": 10034.1942552016,
"total_value": 10035.4058648266,
"base_cost_quote": 1171.0972647,
"unrealized_pnl_exit_net": 443.1706256751
},
{
"timestamp": "2025-04-04T23:59:00+00:00",
"base_asset_bal": 123.56,
"quote_asset_bal": 8376.8313870766,
"total_value_mid": 10004.1165870766,
"total_value_exit_net": 10002.8961231766,
"total_value": 10004.1165870766,
"base_cost_quote": 1216.56994365,
"unrealized_pnl_exit_net": 409.4947924501
},
{
"timestamp": "2025-04-05T23:59:00+00:00",
"base_asset_bal": 102.16,
"quote_asset_bal": 8685.7258272016,
"total_value_mid": 10231.4066272017,
"total_value_exit_net": 10230.2473666017,
"total_value": 10231.4066272017,
"base_cost_quote": 911.807443075,
"unrealized_pnl_exit_net": 632.7140963251
},
{
"timestamp": "2025-04-06T23:59:00+00:00",
"base_asset_bal": 110.27,
"quote_asset_bal": 8567.7936965766,
"total_value_mid": 10089.5196965767,
"total_value_exit_net": 10088.3784020767,
"total_value": 10089.5196965767,
"base_cost_quote": 1033.63244335,
"unrealized_pnl_exit_net": 486.9522621501
},
{
"timestamp": "2025-04-07T23:59:00+00:00",
"base_asset_bal": 117.08,
"quote_asset_bal": 8480.3225436766,
"total_value_mid": 9988.3129436767,
"total_value_exit_net": 9987.1819508767,
"total_value": 9988.3129436767,
"base_cost_quote": 1125.1404229,
"unrealized_pnl_exit_net": 381.7189843001
},
{
"timestamp": "2025-04-08T23:59:00+00:00",
"base_asset_bal": 129.83,
"quote_asset_bal": 8325.2848101016,
"total_value_mid": 9855.9805101016,
"total_value_exit_net": 9854.8324883266,
"total_value": 9855.9805101016,
"base_cost_quote": 1282.279088575,
"unrealized_pnl_exit_net": 247.2685896501
},
{
"timestamp": "2025-04-09T23:59:00+00:00",
"base_asset_bal": 121.52,
"quote_asset_bal": 8429.0380991516,
"total_value_mid": 9955.3292991517,
"total_value_exit_net": 9954.1845807517,
"total_value": 9955.3292991517,
"base_cost_quote": 1180.9394408,
"unrealized_pnl_exit_net": 344.2070408001
},
{
"timestamp": "2025-04-10T23:59:00+00:00",
"base_asset_bal": 130.18,
"quote_asset_bal": 8324.0469880516,
"total_value_mid": 9874.4907880517,
"total_value_exit_net": 9873.3279552017,
"total_value": 9874.4907880517,
"base_cost_quote": 1287.092295775,
"unrealized_pnl_exit_net": 262.1886713751
},
{
"timestamp": "2025-04-11T23:59:00+00:00",
"base_asset_bal": 115.2,
"quote_asset_bal": 8514.8514489516,
"total_value_mid": 10023.9714489517,
"total_value_exit_net": 10022.8396089517,
"total_value": 10023.9714489517,
"base_cost_quote": 1099.303559775,
"unrealized_pnl_exit_net": 408.6846002251
},
{
"timestamp": "2025-04-12T23:59:00+00:00",
"base_asset_bal": 115.2,
"quote_asset_bal": 8516.1878615516,
"total_value_mid": 10017.2438615517,
"total_value_exit_net": 10016.1180695517,
"total_value": 10017.2438615517,
"base_cost_quote": 1099.280142225,
"unrealized_pnl_exit_net": 400.6500657751
},
{
"timestamp": "2025-04-13T23:59:00+00:00",
"base_asset_bal": 125.7,
"quote_asset_bal": 8385.6246667016,
"total_value_mid": 9915.3936667017,
"total_value_exit_net": 9914.2463399517,
"total_value": 9915.3936667017,
"base_cost_quote": 1230.962229775,
"unrealized_pnl_exit_net": 297.6594434751
},
{
"timestamp": "2025-04-14T23:59:00+00:00",
"base_asset_bal": 127.8,
"quote_asset_bal": 8361.3983226266,
"total_value_mid": 9907.7783226267,
"total_value_exit_net": 9906.6185376267,
"total_value": 9907.7783226267,
"base_cost_quote": 1256.3839818,
"unrealized_pnl_exit_net": 288.8362332001
},
{
"timestamp": "2025-04-15T23:59:00+00:00",
"base_asset_bal": 126.95,
"quote_asset_bal": 8372.6206733516,
"total_value_mid": 9898.5596733517,
"total_value_exit_net": 9897.4152191017,
"total_value": 9898.5596733517,
"base_cost_quote": 1246.11528605,
"unrealized_pnl_exit_net": 278.6792597001
},
{
"timestamp": "2025-04-16T23:59:00+00:00",
"base_asset_bal": 139.65,
"quote_asset_bal": 8226.9326377766,
"total_value_mid": 9778.4441377767,
"total_value_exit_net": 9777.2805041517,
"total_value": 9778.4441377767,
"base_cost_quote": 1392.885381125,
"unrealized_pnl_exit_net": 157.4624852501
},
{
"timestamp": "2025-04-17T23:59:00+00:00",
"base_asset_bal": 136.51,
"quote_asset_bal": 8263.1002745266,
"total_value_mid": 9813.8538745267,
"total_value_exit_net": 9812.6908093267,
"total_value": 9813.8538745267,
"base_cost_quote": 1357.4961591,
"unrealized_pnl_exit_net": 192.0943757001
},
{
"timestamp": "2025-04-18T23:59:00+00:00",
"base_asset_bal": 136.06,
"quote_asset_bal": 8268.7881405516,
"total_value_mid": 9818.5115405517,
"total_value_exit_net": 9817.3492480017,
"total_value": 9818.5115405517,
"base_cost_quote": 1352.49180865,
"unrealized_pnl_exit_net": 196.0692988001
},
{
"timestamp": "2025-04-19T23:59:00+00:00",
"base_asset_bal": 133.42,
"quote_asset_bal": 8299.5902066266,
"total_value_mid": 9835.2544066267,
"total_value_exit_net": 9834.1026584767,
"total_value": 9835.2544066267,
"base_cost_quote": 1322.122148475,
"unrealized_pnl_exit_net": 212.3903033751
},
{
"timestamp": "2025-04-20T23:59:00+00:00",
"base_asset_bal": 136.06,
"quote_asset_bal": 8269.7656288766,
"total_value_mid": 9808.6042288767,
"total_value_exit_net": 9807.4500999267,
"total_value": 9808.6042288767,
"base_cost_quote": 1352.488306025,
"unrealized_pnl_exit_net": 185.1961650251
},
{
"timestamp": "2025-04-21T23:59:00+00:00",
"base_asset_bal": 135.16,
"quote_asset_bal": 8280.6194049016,
"total_value_mid": 9809.2790049017,
"total_value_exit_net": 9808.1325102017,
"total_value": 9809.2790049017,
"base_cost_quote": 1342.30537455,
"unrealized_pnl_exit_net": 185.2077307501
},
{
"timestamp": "2025-04-22T23:59:00+00:00",
"base_asset_bal": 130.34,
"quote_asset_bal": 8336.9494020266,
"total_value_mid": 9861.9274020267,
"total_value_exit_net": 9860.7836685267,
"total_value": 9861.9274020267,
"base_cost_quote": 1286.738430575,
"unrealized_pnl_exit_net": 237.0958359251
},
{
"timestamp": "2025-04-23T23:59:00+00:00",
"base_asset_bal": 126.49,
"quote_asset_bal": 8383.4782270766,
"total_value_mid": 9905.1529270767,
"total_value_exit_net": 9904.0116710517,
"total_value": 9905.1529270767,
"base_cost_quote": 1241.12194385,
"unrealized_pnl_exit_net": 279.4115001251
},
{
"timestamp": "2025-04-24T23:59:00+00:00",
"base_asset_bal": 121.97,
"quote_asset_bal": 8440.3619010766,
"total_value_mid": 9968.6460010767,
"total_value_exit_net": 9967.4997880017,
"total_value": 9968.6460010767,
"base_cost_quote": 1185.37536525,
"unrealized_pnl_exit_net": 341.7625216751
},
{
"timestamp": "2025-04-25T23:59:00+00:00",
"base_asset_bal": 122.78,
"quote_asset_bal": 8431.0793261016,
"total_value_mid": 9953.5513261017,
"total_value_exit_net": 9952.4094721017,
"total_value": 9953.5513261017,
"base_cost_quote": 1195.708809525,
"unrealized_pnl_exit_net": 325.6213364751
},
{
"timestamp": "2025-04-26T23:59:00+00:00",
"base_asset_bal": 118.73,
"quote_asset_bal": 8482.8313388266,
"total_value_mid": 9989.5150388267,
"total_value_exit_net": 9988.3850260517,
"total_value": 9989.5150388267,
"base_cost_quote": 1144.97268595,
"unrealized_pnl_exit_net": 360.5810012751
},
{
"timestamp": "2025-04-27T23:59:00+00:00",
"base_asset_bal": 127.74,
"quote_asset_bal": 8372.2189248766,
"total_value_mid": 9894.8797248767,
"total_value_exit_net": 9893.7377292767,
"total_value": 9894.8797248767,
"base_cost_quote": 1256.226763975,
"unrealized_pnl_exit_net": 265.2920404251
},
{
"timestamp": "2025-04-28T23:59:00+00:00",
"base_asset_bal": 124.42,
"quote_asset_bal": 8413.5734134266,
"total_value_mid": 9940.2068134267,
"total_value_exit_net": 9939.0618383767,
"total_value": 9940.2068134267,
"base_cost_quote": 1215.798465475,
"unrealized_pnl_exit_net": 309.6899594751
},
{
"timestamp": "2025-04-29T23:59:00+00:00",
"base_asset_bal": 129.88,
"quote_asset_bal": 8348.0934161266,
"total_value_mid": 9888.4702161267,
"total_value_exit_net": 9887.3149335267,
"total_value": 9888.4702161267,
"base_cost_quote": 1281.742886725,
"unrealized_pnl_exit_net": 257.4786306751
},
{
"timestamp": "2025-04-30T23:59:00+00:00",
"base_asset_bal": 132.02,
"quote_asset_bal": 8323.4224097266,
"total_value_mid": 9862.7756097267,
"total_value_exit_net": 9861.6210948267,
"total_value": 9862.7756097267,
"base_cost_quote": 1306.895437,
"unrealized_pnl_exit_net": 231.3032481001
},
{
"timestamp": "2025-05-01T23:59:00+00:00",
"base_asset_bal": 131.58,
"quote_asset_bal": 8328.7447837516,
"total_value_mid": 9874.8097837517,
"total_value_exit_net": 9873.6502350017,
"total_value": 9874.8097837517,
"base_cost_quote": 1301.986458025,
"unrealized_pnl_exit_net": 242.9189932251
},
{
"timestamp": "2025-05-02T23:59:00+00:00",
"base_asset_bal": 130.29,
"quote_asset_bal": 8344.2443552016,
"total_value_mid": 9888.1808552017,
"total_value_exit_net": 9887.0229028267,
"total_value": 9888.1808552017,
"base_cost_quote": 1286.75734475,
"unrealized_pnl_exit_net": 256.0212028751
},
{
"timestamp": "2025-05-03T23:59:00+00:00",
"base_asset_bal": 137.3,
"quote_asset_bal": 8263.4525957766,
"total_value_mid": 9812.1965957767,
"total_value_exit_net": 9811.0350377767,
"total_value": 9812.1965957767,
"base_cost_quote": 1367.870634125,
"unrealized_pnl_exit_net": 179.7118078751
},
{
"timestamp": "2025-05-04T23:59:00+00:00",
"base_asset_bal": 140,
"quote_asset_bal": 8233.5962301766,
"total_value_mid": 9795.9962301767,
"total_value_exit_net": 9794.8244301767,
"total_value": 9795.9962301767,
"base_cost_quote": 1398.143121475,
"unrealized_pnl_exit_net": 163.085078525
},
{
"timestamp": "2025-05-05T23:59:00+00:00",
"base_asset_bal": 138.2,
"quote_asset_bal": 8254.1893201766,
"total_value_mid": 9824.1413201767,
"total_value_exit_net": 9822.9638561767,
"total_value": 9824.1413201767,
"base_cost_quote": 1377.915362025,
"unrealized_pnl_exit_net": 190.8591739751
},
{
"timestamp": "2025-05-06T23:59:00+00:00",
"base_asset_bal": 145.52,
"quote_asset_bal": 8173.7972403766,
"total_value_mid": 9751.2340403767,
"total_value_exit_net": 9750.0509627767,
"total_value": 9751.2340403767,
"base_cost_quote": 1458.877438075,
"unrealized_pnl_exit_net": 117.376284325
},
{
"timestamp": "2025-05-07T23:59:00+00:00",
"base_asset_bal": 143.21,
"quote_asset_bal": 8199.6714488266,
"total_value_mid": 9782.1419488267,
"total_value_exit_net": 9780.9550959517,
"total_value": 9782.1419488267,
"base_cost_quote": 1433.6576374,
"unrealized_pnl_exit_net": 147.626009725
},
{
"timestamp": "2025-05-08T23:59:00+00:00",
"base_asset_bal": 132.55,
"quote_asset_bal": 8321.7545168517,
"total_value_mid": 9884.5190168517,
"total_value_exit_net": 9883.3469434767,
"total_value": 9884.5190168517,
"base_cost_quote": 1312.0937328,
"unrealized_pnl_exit_net": 249.4986938251
},
{
"timestamp": "2025-05-09T23:59:00+00:00",
"base_asset_bal": 120.9,
"quote_asset_bal": 8465.0288507766,
"total_value_mid": 9995.6228507767,
"total_value_exit_net": 9994.4749052767,
"total_value": 9995.6228507767,
"base_cost_quote": 1170.21200125,
"unrealized_pnl_exit_net": 359.2340532501
},
{
"timestamp": "2025-05-10T23:59:00+00:00",
"base_asset_bal": 109.17,
"quote_asset_bal": 8625.0292366017,
"total_value_mid": 10166.5096366018,
"total_value_exit_net": 10165.3535263018,
"total_value": 10166.5096366018,
"base_cost_quote": 1013.365954875,
"unrealized_pnl_exit_net": 526.9583348251
},
{
"timestamp": "2025-05-11T23:59:00+00:00",
"base_asset_bal": 116.75,
"quote_asset_bal": 8525.3573734017,
"total_value_mid": 10072.2948734018,
"total_value_exit_net": 10071.1346702768,
"total_value": 10072.2948734018,
"base_cost_quote": 1114.738127025,
"unrealized_pnl_exit_net": 431.0391698501
},
{
"timestamp": "2025-05-12T23:59:00+00:00",
"base_asset_bal": 117.09,
"quote_asset_bal": 8522.3400121017,
"total_value_mid": 10069.0989121018,
"total_value_exit_net": 10067.9388429268,
"total_value": 10069.0989121018,
"base_cost_quote": 1119.765895025,
"unrealized_pnl_exit_net": 425.8329358001
},
{
"timestamp": "2025-05-13T23:59:00+00:00",
"base_asset_bal": 114.43,
"quote_asset_bal": 8558.7135695018,
"total_value_mid": 10081.7768695018,
"total_value_exit_net": 10080.6345720268,
"total_value": 10081.7768695018,
"base_cost_quote": 1084.464038475,
"unrealized_pnl_exit_net": 437.4569640501
},
{
"timestamp": "2025-05-14T23:59:00+00:00",
"base_asset_bal": 121.38,
"quote_asset_bal": 8468.6040069018,
"total_value_mid": 10028.3370069018,
"total_value_exit_net": 10027.1672071518,
"total_value": 10028.3370069018,
"base_cost_quote": 1175.500464625,
"unrealized_pnl_exit_net": 383.0627356251
},
{
"timestamp": "2025-05-15T23:59:00+00:00",
"base_asset_bal": 135.04,
"quote_asset_bal": 8302.3344808518,
"total_value_mid": 9902.5584808518,
"total_value_exit_net": 9901.3583128518,
"total_value": 9902.5584808518,
"base_cost_quote": 1342.830267925,
"unrealized_pnl_exit_net": 256.1935640751
},
{
"timestamp": "2025-05-16T23:59:00+00:00",
"base_asset_bal": 133.73,
"quote_asset_bal": 8318.3862041018,
"total_value_mid": 9912.4478041018,
"total_value_exit_net": 9911.2522579018,
"total_value": 9912.4478041018,
"base_cost_quote": 1327.5120879,
"unrealized_pnl_exit_net": 265.3539659001
},
{
"timestamp": "2025-05-17T23:59:00+00:00",
"base_asset_bal": 135.85,
"quote_asset_bal": 8293.9316987768,
"total_value_mid": 9877.9426987768,
"total_value_exit_net": 9876.7546905268,
"total_value": 9877.9426987768,
"base_cost_quote": 1352.700665175,
"unrealized_pnl_exit_net": 230.1223265751
},
{
"timestamp": "2025-05-18T23:59:00+00:00",
"base_asset_bal": 133.74,
"quote_asset_bal": 8319.6007911268,
"total_value_mid": 9923.1433911268,
"total_value_exit_net": 9921.9407341768,
"total_value": 9923.1433911268,
"base_cost_quote": 1327.527199225,
"unrealized_pnl_exit_net": 274.8127438251
},
{
"timestamp": "2025-05-19T23:59:00+00:00",
"base_asset_bal": 135.87,
"quote_asset_bal": 8294.8491731768,
"total_value_mid": 9892.6803731768,
"total_value_exit_net": 9891.4819997768,
"total_value": 9892.6803731768,
"base_cost_quote": 1352.867590275,
"unrealized_pnl_exit_net": 243.7652363251
},
{
"timestamp": "2025-05-20T23:59:00+00:00",
"base_asset_bal": 135.01,
"quote_asset_bal": 8305.4350202018,
"total_value_mid": 9901.2532202018,
"total_value_exit_net": 9900.0563565518,
"total_value": 9901.2532202018,
"base_cost_quote": 1342.70767605,
"unrealized_pnl_exit_net": 251.9136603001
},
{
"timestamp": "2025-05-21T23:59:00+00:00",
"base_asset_bal": 132.89,
"quote_asset_bal": 8331.2192064768,
"total_value_mid": 9919.2547064768,
"total_value_exit_net": 9918.0636798518,
"total_value": 9919.2547064768,
"base_cost_quote": 1317.48717485,
"unrealized_pnl_exit_net": 269.3572985251
},
{
"timestamp": "2025-05-22T23:59:00+00:00",
"base_asset_bal": 127.07,
"quote_asset_bal": 8402.6586543018,
"total_value_mid": 9983.4094543018,
"total_value_exit_net": 9982.2238912018,
"total_value": 9983.4094543018,
"base_cost_quote": 1246.570927525,
"unrealized_pnl_exit_net": 332.9943093751
},
{
"timestamp": "2025-05-23T23:59:00+00:00",
"base_asset_bal": 138.07,
"quote_asset_bal": 8271.8962874268,
"total_value_mid": 9870.7468874268,
"total_value_exit_net": 9869.5477494768,
"total_value": 9870.7468874268,
"base_cost_quote": 1378.168852,
"unrealized_pnl_exit_net": 219.4826100501
},
{
"timestamp": "2025-05-24T23:59:00+00:00",
"base_asset_bal": 135.05,
"quote_asset_bal": 8307.5056841768,
"total_value_mid": 9902.4461841768,
"total_value_exit_net": 9901.2499788018,
"total_value": 9902.4461841768,
"base_cost_quote": 1342.881106025,
"unrealized_pnl_exit_net": 250.8631886001
},
{
"timestamp": "2025-05-25T23:59:00+00:00",
"base_asset_bal": 134.19,
"quote_asset_bal": 8318.3682806768,
"total_value_mid": 9908.5197806768,
"total_value_exit_net": 9907.3271670518,
"total_value": 9908.5197806768,
"base_cost_quote": 1332.686065475,
"unrealized_pnl_exit_net": 256.2728209001
},
{
"timestamp": "2025-05-26T23:59:00+00:00",
"base_asset_bal": 135.46,
"quote_asset_bal": 8303.5807061268,
"total_value_mid": 9897.9449061268,
"total_value_exit_net": 9896.7491329768,
"total_value": 9897.9449061268,
"base_cost_quote": 1347.801393475,
"unrealized_pnl_exit_net": 245.3670333751
},
{
"timestamp": "2025-05-27T23:59:00+00:00",
"base_asset_bal": 132.47,
"quote_asset_bal": 8339.3449808018,
"total_value_mid": 9927.6602808018,
"total_value_exit_net": 9926.4690443268,
"total_value": 9927.6602808018,
"base_cost_quote": 1312.38695255,
"unrealized_pnl_exit_net": 274.7371109751
},
{
"timestamp": "2025-05-28T23:59:00+00:00",
"base_asset_bal": 135.48,
"quote_asset_bal": 8304.2552274268,
"total_value_mid": 9904.2740274268,
"total_value_exit_net": 9903.0740133268,
"total_value": 9904.2740274268,
"base_cost_quote": 1347.8685438,
"unrealized_pnl_exit_net": 250.9502421001
},
{
"timestamp": "2025-05-29T23:59:00+00:00",
"base_asset_bal": 136.34,
"quote_asset_bal": 8294.4548054518,
"total_value_mid": 9895.0864054518,
"total_value_exit_net": 9893.8859317518,
"total_value": 9895.0864054518,
"base_cost_quote": 1358.054277375,
"unrealized_pnl_exit_net": 241.3768489251
},
{
"timestamp": "2025-05-30T23:59:00+00:00",
"base_asset_bal": 151.36,
"quote_asset_bal": 8133.7038837518,
"total_value_mid": 9670.0078837518,
"total_value_exit_net": 9668.8556557518,
"total_value": 9670.0078837518,
"base_cost_quote": 1519.8958676,
"unrealized_pnl_exit_net": 15.2559044
},
{
"timestamp": "2025-05-31T23:59:00+00:00",
"base_asset_bal": 149.39,
"quote_asset_bal": 8155.4939639018,
"total_value_mid": 9710.6438639018,
"total_value_exit_net": 9709.4775014768,
"total_value": 9710.6438639018,
"base_cost_quote": 1499.62647695,
"unrealized_pnl_exit_net": 54.357060625
},
{
"timestamp": "2025-06-01T23:59:00+00:00",
"base_asset_bal": 146.95,
"quote_asset_bal": 8181.2970223518,
"total_value_mid": 9740.4365223518,
"total_value_exit_net": 9739.2671677268,
"total_value": 9740.4365223518,
"base_cost_quote": 1474.36514515,
"unrealized_pnl_exit_net": 83.605000225
},
{
"timestamp": "2025-06-02T23:59:00+00:00",
"base_asset_bal": 144.6,
"quote_asset_bal": 8206.9188516768,
"total_value_mid": 9770.0448516768,
"total_value_exit_net": 9768.8725071768,
"total_value": 9770.0448516768,
"base_cost_quote": 1449.224603875,
"unrealized_pnl_exit_net": 112.729051625
},
{
"timestamp": "2025-06-03T23:59:00+00:00",
"base_asset_bal": 143.68,
"quote_asset_bal": 8217.2292116268,
"total_value_mid": 9767.5364116268,
"total_value_exit_net": 9766.3736812268,
"total_value": 9767.5364116268,
"base_cost_quote": 1439.208497425,
"unrealized_pnl_exit_net": 109.935972175
},
{
"timestamp": "2025-06-04T23:59:00+00:00",
"base_asset_bal": 145.54,
"quote_asset_bal": 8197.4344778768,
"total_value_mid": 9744.5246778768,
"total_value_exit_net": 9743.3643602268,
"total_value": 9744.5246778768,
"base_cost_quote": 1459.224298025,
"unrealized_pnl_exit_net": 86.705584325
},
{
"timestamp": "2025-06-05T23:59:00+00:00",
"base_asset_bal": 149.99,
"quote_asset_bal": 8152.4965028518,
"total_value_mid": 9646.3969028518,
"total_value_exit_net": 9645.2764775518,
"total_value": 9646.3969028518,
"base_cost_quote": 1504.765828575,
"unrealized_pnl_exit_net": -11.985853875
},
{
"timestamp": "2025-06-06T23:59:00+00:00",
"base_asset_bal": 148.4,
"quote_asset_bal": 8168.4345638518,
"total_value_mid": 9720.6985638518,
"total_value_exit_net": 9719.5343658518,
"total_value": 9720.6985638518,
"base_cost_quote": 1489.4870781,
"unrealized_pnl_exit_net": 61.6127239
},
{
"timestamp": "2025-06-07T23:59:00+00:00",
"base_asset_bal": 146,
"quote_asset_bal": 8193.8352932268,
"total_value_mid": 9751.6552932268,
"total_value_exit_net": 9750.4869282268,
"total_value": 9751.6552932268,
"base_cost_quote": 1464.24876355,
"unrealized_pnl_exit_net": 92.40287145
},
{
"timestamp": "2025-06-08T23:59:00+00:00",
"base_asset_bal": 146.98,
"quote_asset_bal": 8183.7516493268,
"total_value_mid": 9721.1624493268,
"total_value_exit_net": 9720.0093912268,
"total_value": 9721.1624493268,
"base_cost_quote": 1474.4682224,
"unrealized_pnl_exit_net": 61.7895195
},
{
"timestamp": "2025-06-09T23:59:00+00:00",
"base_asset_bal": 145.54,
"quote_asset_bal": 8199.1672511768,
"total_value_mid": 9766.6330511768,
"total_value_exit_net": 9765.4574518268,
"total_value": 9766.6330511768,
"base_cost_quote": 1459.3548959,
"unrealized_pnl_exit_net": 106.93530475
},
{
"timestamp": "2025-06-10T23:59:00+00:00",
"base_asset_bal": 140.41,
"quote_asset_bal": 8255.2645875018,
"total_value_mid": 9806.7950875018,
"total_value_exit_net": 9805.6314396268,
"total_value": 9806.7950875018,
"base_cost_quote": 1403.6831734,
"unrealized_pnl_exit_net": 146.683678725
},
{
"timestamp": "2025-06-11T23:59:00+00:00",
"base_asset_bal": 145.54,
"quote_asset_bal": 8200.0030596018,
"total_value_mid": 9739.8162596018,
"total_value_exit_net": 9738.6613997018,
"total_value": 9739.8162596018,
"base_cost_quote": 1459.25662225,
"unrealized_pnl_exit_net": 79.40171785
},
{
"timestamp": "2025-06-12T23:59:00+00:00",
"base_asset_bal": 149.92,
"quote_asset_bal": 8154.8861047768,
"total_value_mid": 9664.5805047768,
"total_value_exit_net": 9663.4482339768,
"total_value": 9664.5805047768,
"base_cost_quote": 1504.738808325,
"unrealized_pnl_exit_net": 3.823320875
},
{
"timestamp": "2025-06-13T23:59:00+00:00",
"base_asset_bal": 155.05,
"quote_asset_bal": 8105.8382439018,
"total_value_mid": 9600.5202439018,
"total_value_exit_net": 9599.3992324018,
"total_value": 9600.5202439018,
"base_cost_quote": 1555.2463606,
"unrealized_pnl_exit_net": -61.6853721
},
{
"timestamp": "2025-06-14T23:59:00+00:00",
"base_asset_bal": 156.09,
"quote_asset_bal": 8096.2669825518,
"total_value_mid": 9593.1700825518,
"total_value_exit_net": 9592.0474052268,
"total_value": 9593.1700825518,
"base_cost_quote": 1565.433895525,
"unrealized_pnl_exit_net": -69.65347285
},
{
"timestamp": "2025-06-15T23:59:00+00:00",
"base_asset_bal": 155.55,
"quote_asset_bal": 8101.8377813268,
"total_value_mid": 9599.7842813268,
"total_value_exit_net": 9598.6608214518,
"total_value": 9599.7842813268,
"base_cost_quote": 1560.267023275,
"unrealized_pnl_exit_net": -63.44398315
},
{
"timestamp": "2025-06-16T23:59:00+00:00",
"base_asset_bal": 157.63,
"quote_asset_bal": 8082.0479163268,
"total_value_mid": 9588.9907163268,
"total_value_exit_net": 9587.8605092268,
"total_value": 9588.9907163268,
"base_cost_quote": 1580.6053656,
"unrealized_pnl_exit_net": -74.7927727
},
{
"timestamp": "2025-06-17T23:59:00+00:00",
"base_asset_bal": 160.26,
"quote_asset_bal": 8057.4755837767,
"total_value_mid": 9567.1247837768,
"total_value_exit_net": 9565.9925468768,
"total_value": 9567.1247837768,
"base_cost_quote": 1605.8670977,
"unrealized_pnl_exit_net": -97.3501346
},
{
"timestamp": "2025-06-18T23:59:00+00:00",
"base_asset_bal": 160.28,
"quote_asset_bal": 8058.0660740767,
"total_value_mid": 9577.5204740768,
"total_value_exit_net": 9576.3808832768,
"total_value": 9577.5204740768,
"base_cost_quote": 1605.837375425,
"unrealized_pnl_exit_net": -87.522566225
},
{
"timestamp": "2025-06-19T23:59:00+00:00",
"base_asset_bal": 160.8,
"quote_asset_bal": 8053.4418509017,
"total_value_mid": 9574.6098509018,
"total_value_exit_net": 9573.4689749018,
"total_value": 9574.6098509018,
"base_cost_quote": 1610.86224125,
"unrealized_pnl_exit_net": -90.83511725
},
{
"timestamp": "2025-06-20T23:59:00+00:00",
"base_asset_bal": 166.25,
"quote_asset_bal": 8003.3392488517,
"total_value_mid": 9526.1892488518,
"total_value_exit_net": 9525.0471113518,
"total_value": 9526.1892488518,
"base_cost_quote": 1661.47537265,
"unrealized_pnl_exit_net": -139.76751015
},
{
"timestamp": "2025-06-21T23:59:00+00:00",
"base_asset_bal": 170.41,
"quote_asset_bal": 7966.2641701767,
"total_value_mid": 9455.6475701768,
"total_value_exit_net": 9454.5305326268,
"total_value": 9455.6475701768,
"base_cost_quote": 1696.973876575,
"unrealized_pnl_exit_net": -208.707514125
},
{
"timestamp": "2025-06-22T23:59:00+00:00",
"base_asset_bal": 179.14,
"quote_asset_bal": 7893.0364351267,
"total_value_mid": 9387.0640351268,
"total_value_exit_net": 9385.9435144268,
"total_value": 9387.0640351268,
"base_cost_quote": 1767.508137625,
"unrealized_pnl_exit_net": -274.601058325
},
{
"timestamp": "2025-06-23T23:59:00+00:00",
"base_asset_bal": 169.8,
"quote_asset_bal": 7975.2231532517,
"total_value_mid": 9510.2151532518,
"total_value_exit_net": 9509.0639092518,
"total_value": 9510.2151532518,
"base_cost_quote": 1681.8732596,
"unrealized_pnl_exit_net": -148.0325036
},
{
"timestamp": "2025-06-24T23:59:00+00:00",
"base_asset_bal": 166.47,
"quote_asset_bal": 8006.2283296017,
"total_value_mid": 9541.0817296018,
"total_value_exit_net": 9539.9305895518,
"total_value": 9541.0817296018,
"base_cost_quote": 1651.531820575,
"unrealized_pnl_exit_net": -117.829560625
},
{
"timestamp": "2025-06-25T23:59:00+00:00",
"base_asset_bal": 172.03,
"quote_asset_bal": 7956.3360784267,
"total_value_mid": 9485.6827784268,
"total_value_exit_net": 9484.5357684018,
"total_value": 9485.6827784268,
"base_cost_quote": 1701.96771915,
"unrealized_pnl_exit_net": -173.768029175
},
{
"timestamp": "2025-06-26T23:59:00+00:00",
"base_asset_bal": 175.82,
"quote_asset_bal": 7923.7419645517,
"total_value_mid": 9444.5849645518,
"total_value_exit_net": 9443.4443323018,
"total_value": 9444.5849645518,
"base_cost_quote": 1732.1713549,
"unrealized_pnl_exit_net": -212.46898715
},
{
"timestamp": "2025-06-27T23:59:00+00:00",
"base_asset_bal": 172.53,
"quote_asset_bal": 7952.7975774267,
"total_value_mid": 9491.7651774268,
"total_value_exit_net": 9490.6109517268,
"total_value": 9491.7651774268,
"base_cost_quote": 1701.826113025,
"unrealized_pnl_exit_net": -164.012738725
},
{
"timestamp": "2025-06-28T23:59:00+00:00",
"base_asset_bal": 170.29,
"quote_asset_bal": 7972.9999454017,
"total_value_mid": 9505.6099454018,
"total_value_exit_net": 9504.4604879018,
"total_value": 9505.6099454018,
"base_cost_quote": 1681.774885875,
"unrealized_pnl_exit_net": -150.314343375
},
{
"timestamp": "2025-06-29T23:59:00+00:00",
"base_asset_bal": 164.73,
"quote_asset_bal": 8023.8304437017,
"total_value_mid": 9547.5829437018,
"total_value_exit_net": 9546.4401293268,
"total_value": 9547.5829437018,
"base_cost_quote": 1631.238812225,
"unrealized_pnl_exit_net": -108.6291266
},
{
"timestamp": "2025-06-30T23:59:00+00:00",
"base_asset_bal": 174.82,
"quote_asset_bal": 7933.1031134267,
"total_value_mid": 9478.5119134268,
"total_value_exit_net": 9477.3528568268,
"total_value": 9478.5119134268,
"base_cost_quote": 1722.142939225,
"unrealized_pnl_exit_net": -177.893195825
},
{
"timestamp": "2025-07-01T23:59:00+00:00",
"base_asset_bal": 185.14,
"quote_asset_bal": 7844.6699341517,
"total_value_mid": 9403.5487341518,
"total_value_exit_net": 9402.3795750518,
"total_value": 9403.5487341518,
"base_cost_quote": 1808.04561795,
"unrealized_pnl_exit_net": -250.33597705
},
{
"timestamp": "2025-07-02T23:59:00+00:00",
"base_asset_bal": 169.72,
"quote_asset_bal": 7979.8103568767,
"total_value_mid": 9514.0791568768,
"total_value_exit_net": 9512.9284552768,
"total_value": 9514.0791568768,
"base_cost_quote": 1671.587451025,
"unrealized_pnl_exit_net": -138.469352625
},
{
"timestamp": "2025-07-03T23:59:00+00:00",
"base_asset_bal": 170.3,
"quote_asset_bal": 7975.0417138517,
"total_value_mid": 9514.5537138518,
"total_value_exit_net": 9513.3990798518,
"total_value": 9514.5537138518,
"base_cost_quote": 1676.7390118,
"unrealized_pnl_exit_net": -138.3816458
},
{
"timestamp": "2025-07-04T23:59:00+00:00",
"base_asset_bal": 179.04,
"quote_asset_bal": 7898.1128477017,
"total_value_mid": 9459.3416477018,
"total_value_exit_net": 9458.1707261018,
"total_value": 9459.3416477018,
"base_cost_quote": 1752.420830625,
"unrealized_pnl_exit_net": -192.3629522249
},
{
"timestamp": "2025-07-05T23:59:00+00:00",
"base_asset_bal": 172.84,
"quote_asset_bal": 7953.8066303017,
"total_value_mid": 9488.6258303018,
"total_value_exit_net": 9487.4747159018,
"total_value": 9488.6258303018,
"base_cost_quote": 1696.7792307,
"unrealized_pnl_exit_net": -163.1111450999
},
{
"timestamp": "2025-07-06T23:59:00+00:00",
"base_asset_bal": 170.15,
"quote_asset_bal": 7978.1714890767,
"total_value_mid": 9512.9244890768,
"total_value_exit_net": 9511.7734243268,
"total_value": 9512.9244890768,
"base_cost_quote": 1671.6227775,
"unrealized_pnl_exit_net": -138.0208422499
},
{
"timestamp": "2025-07-07T23:59:00+00:00",
"base_asset_bal": 171.83,
"quote_asset_bal": 7963.4061389267,
"total_value_mid": 9503.0029389268,
"total_value_exit_net": 9501.8482413268,
"total_value": 9503.0029389268,
"base_cost_quote": 1686.7485133,
"unrealized_pnl_exit_net": -148.3064108999
},
{
"timestamp": "2025-07-08T23:59:00+00:00",
"base_asset_bal": 171.92,
"quote_asset_bal": 7963.2876761767,
"total_value_mid": 9517.4444761768,
"total_value_exit_net": 9516.2788585768,
"total_value": 9517.4444761768,
"base_cost_quote": 1686.82837315,
"unrealized_pnl_exit_net": -133.8371907499
},
{
"timestamp": "2025-07-09T23:59:00+00:00",
"base_asset_bal": 166.41,
"quote_asset_bal": 8014.3814340517,
"total_value_mid": 9565.3226340517,
"total_value_exit_net": 9564.1594281517,
"total_value": 9565.3226340517,
"base_cost_quote": 1636.305609475,
"unrealized_pnl_exit_net": -86.5276153749
},
{
"timestamp": "2025-07-10T23:59:00+00:00",
"base_asset_bal": 159.47,
"quote_asset_bal": 8080.7402823017,
"total_value_mid": 9622.8151823017,
"total_value_exit_net": 9621.6586261267,
"total_value": 9622.8151823017,
"base_cost_quote": 1570.558335975,
"unrealized_pnl_exit_net": -29.6399921499
},
{
"timestamp": "2025-07-11T23:59:00+00:00",
"base_asset_bal": 157.85,
"quote_asset_bal": 8097.2271392267,
"total_value_mid": 9647.3141392267,
"total_value_exit_net": 9646.1515739767,
"total_value": 9647.3141392267,
"base_cost_quote": 1555.35944535,
"unrealized_pnl_exit_net": -6.4350105999
},
{
"timestamp": "2025-07-12T23:59:00+00:00",
"base_asset_bal": 148.63,
"quote_asset_bal": 8194.9084855017,
"total_value_mid": 9679.7221855017,
"total_value_exit_net": 9678.6085752267,
"total_value": 9679.7221855017,
"base_cost_quote": 1459.390022225,
"unrealized_pnl_exit_net": 24.3100675001
},
{
"timestamp": "2025-07-13T23:59:00+00:00",
"base_asset_bal": 119.1,
"quote_asset_bal": 8564.9113877267,
"total_value_mid": 9958.3813877267,
"total_value_exit_net": 9957.3362852267,
"total_value": 9958.3813877267,
"base_cost_quote": 1094.67018735,
"unrealized_pnl_exit_net": 297.7547101501
},
{
"timestamp": "2025-07-14T23:59:00+00:00",
"base_asset_bal": 117.68,
"quote_asset_bal": 8587.3024486516,
"total_value_mid": 9973.5728486517,
"total_value_exit_net": 9972.5331458517,
"total_value": 9973.5728486517,
"base_cost_quote": 1074.414707125,
"unrealized_pnl_exit_net": 310.8159900751
},
{
"timestamp": "2025-07-15T23:59:00+00:00",
"base_asset_bal": 124.29,
"quote_asset_bal": 8512.4794113517,
"total_value_mid": 9913.2277113517,
"total_value_exit_net": 9912.1771501267,
"total_value": 9913.2277113517,
"base_cost_quote": 1150.379838275,
"unrealized_pnl_exit_net": 249.3179005001
},
{
"timestamp": "2025-07-16T23:59:00+00:00",
"base_asset_bal": 125.64,
"quote_asset_bal": 8497.8300131017,
"total_value_mid": 9912.5364131017,
"total_value_exit_net": 9911.4753833017,
"total_value": 9912.5364131017,
"base_cost_quote": 1165.65978965,
"unrealized_pnl_exit_net": 247.9855805501
},
{
"timestamp": "2025-07-17T23:59:00+00:00",
"base_asset_bal": 130.7,
"quote_asset_bal": 8443.0768587517,
"total_value_mid": 9866.3998587517,
"total_value_exit_net": 9865.3323665017,
"total_value": 9866.3998587517,
"base_cost_quote": 1221.190906775,
"unrealized_pnl_exit_net": 201.0646009751
},
{
"timestamp": "2025-07-18T23:59:00+00:00",
"base_asset_bal": 133.92,
"quote_asset_bal": 8408.7037797267,
"total_value_mid": 9849.6829797268,
"total_value_exit_net": 9848.6022453268,
"total_value": 9849.6829797268,
"base_cost_quote": 1256.6121528,
"unrealized_pnl_exit_net": 183.2863128001
},
{
"timestamp": "2025-07-19T23:59:00+00:00",
"base_asset_bal": 132.04,
"quote_asset_bal": 8429.3350784767,
"total_value_mid": 9860.6486784768,
"total_value_exit_net": 9859.5751932768,
"total_value": 9860.6486784768,
"base_cost_quote": 1236.387095375,
"unrealized_pnl_exit_net": 193.8530194251
},
{
"timestamp": "2025-07-20T23:59:00+00:00",
"base_asset_bal": 126.55,
"quote_asset_bal": 8490.6399116017,
"total_value_mid": 9910.5309116018,
"total_value_exit_net": 9909.4659933518,
"total_value": 9910.5309116018,
"base_cost_quote": 1175.690006675,
"unrealized_pnl_exit_net": 243.1360750751
},
{
"timestamp": "2025-07-21T23:59:00+00:00",
"base_asset_bal": 121.6,
"quote_asset_bal": 8547.2049532767,
"total_value_mid": 9960.1969532768,
"total_value_exit_net": 9959.1372092768,
"total_value": 9960.1969532768,
"base_cost_quote": 1119.8704734,
"unrealized_pnl_exit_net": 292.0617826001
},
{
"timestamp": "2025-07-22T23:59:00+00:00",
"base_asset_bal": 121.16,
"quote_asset_bal": 8553.2945904017,
"total_value_mid": 9945.4229904018,
"total_value_exit_net": 9944.3788941018,
"total_value": 9945.4229904018,
"base_cost_quote": 1114.936075375,
"unrealized_pnl_exit_net": 276.1482283251
},
{
"timestamp": "2025-07-23T23:59:00+00:00",
"base_asset_bal": 135.03,
"quote_asset_bal": 8402.5264197517,
"total_value_mid": 9812.2396197518,
"total_value_exit_net": 9811.1823348518,
"total_value": 9812.2396197518,
"base_cost_quote": 1266.6776963,
"unrealized_pnl_exit_net": 141.9782188001
},
{
"timestamp": "2025-07-24T23:59:00+00:00",
"base_asset_bal": 137.93,
"quote_asset_bal": 8373.4229538767,
"total_value_mid": 9798.2398538768,
"total_value_exit_net": 9797.1712412018,
"total_value": 9798.2398538768,
"base_cost_quote": 1297.003923925,
"unrealized_pnl_exit_net": 126.7443634001
},
{
"timestamp": "2025-07-25T23:59:00+00:00",
"base_asset_bal": 133.54,
"quote_asset_bal": 8419.8933247017,
"total_value_mid": 9824.7341247018,
"total_value_exit_net": 9823.6804941018,
"total_value": 9824.7341247018,
"base_cost_quote": 1251.450384375,
"unrealized_pnl_exit_net": 152.3367850251
},
{
"timestamp": "2025-07-26T23:59:00+00:00",
"base_asset_bal": 133.54,
"quote_asset_bal": 8420.1182527017,
"total_value_mid": 9820.9528527018,
"total_value_exit_net": 9819.9022267518,
"total_value": 9820.9528527018,
"base_cost_quote": 1251.435973575,
"unrealized_pnl_exit_net": 148.3480004751
},
{
"timestamp": "2025-07-27T23:59:00+00:00",
"base_asset_bal": 129.73,
"quote_asset_bal": 8460.7952315267,
"total_value_mid": 9846.3116315268,
"total_value_exit_net": 9845.2724942268,
"total_value": 9846.3116315268,
"base_cost_quote": 1210.974450175,
"unrealized_pnl_exit_net": 173.5028125251
},
{
"timestamp": "2025-07-28T23:59:00+00:00",
"base_asset_bal": 117.13,
"quote_asset_bal": 8604.4161502768,
"total_value_mid": 9980.6936502768,
"total_value_exit_net": 9979.6614421518,
"total_value": 9980.6936502768,
"base_cost_quote": 1069.276256175,
"unrealized_pnl_exit_net": 305.9690357001
},
{
"timestamp": "2025-07-29T23:59:00+00:00",
"base_asset_bal": 113.97,
"quote_asset_bal": 8651.9411433267,
"total_value_mid": 9880.5377433268,
"total_value_exit_net": 9879.6162958768,
"total_value": 9880.5377433268,
"base_cost_quote": 1023.386965,
"unrealized_pnl_exit_net": 204.2881875501
},
{
"timestamp": "2025-07-30T23:59:00+00:00",
"base_asset_bal": 119.72,
"quote_asset_bal": 8592.2535946268,
"total_value_mid": 9826.5667946268,
"total_value_exit_net": 9825.6410597268,
"total_value": 9826.5667946268,
"base_cost_quote": 1084.002292425,
"unrealized_pnl_exit_net": 149.3851726751
},
{
"timestamp": "2025-07-31T23:59:00+00:00",
"base_asset_bal": 129.3,
"quote_asset_bal": 8496.6947214517,
"total_value_mid": 9759.9557214518,
"total_value_exit_net": 9759.0082757018,
"total_value": 9759.9557214518,
"base_cost_quote": 1180.0559787,
"unrealized_pnl_exit_net": 82.2575755501
},
{
"timestamp": "2025-08-01T23:59:00+00:00",
"base_asset_bal": 132.96,
"quote_asset_bal": 8462.7023109268,
"total_value_mid": 9733.7999109268,
"total_value_exit_net": 9732.8465877268,
"total_value": 9733.7999109268,
"base_cost_quote": 1215.39466285,
"unrealized_pnl_exit_net": 54.7496139501
},
{
"timestamp": "2025-08-02T23:59:00+00:00",
"base_asset_bal": 134.01,
"quote_asset_bal": 8453.5566822518,
"total_value_mid": 9737.3724822519,
"total_value_exit_net": 9736.4096204019,
"total_value": 9737.3724822519,
"base_cost_quote": 1225.465910625,
"unrealized_pnl_exit_net": 57.3870275251
},
{
"timestamp": "2025-08-03T23:59:00+00:00",
"base_asset_bal": 129.82,
"quote_asset_bal": 8494.3437251268,
"total_value_mid": 9757.4923251269,
"total_value_exit_net": 9756.5449636769,
"total_value": 9757.4923251269,
"base_cost_quote": 1185.1089656,
"unrealized_pnl_exit_net": 77.0922729501
},
{
"timestamp": "2025-08-04T23:59:00+00:00",
"base_asset_bal": 124.19,
"quote_asset_bal": 8550.4557525268,
"total_value_mid": 9796.0814525269,
"total_value_exit_net": 9795.1472332519,
"total_value": 9796.0814525269,
"base_cost_quote": 1129.48347775,
"unrealized_pnl_exit_net": 115.2080029751
},
{
"timestamp": "2025-08-05T23:59:00+00:00",
"base_asset_bal": 129.83,
"quote_asset_bal": 8495.3520846268,
"total_value_mid": 9757.2996846269,
"total_value_exit_net": 9756.3532239269,
"total_value": 9757.2996846269,
"base_cost_quote": 1185.140088925,
"unrealized_pnl_exit_net": 75.8610503751
},
{
"timestamp": "2025-08-06T23:59:00+00:00",
"base_asset_bal": 125.71,
"quote_asset_bal": 8536.2954802518,
"total_value_mid": 9785.8528802519,
"total_value_exit_net": 9784.9157122019,
"total_value": 9785.8528802519,
"base_cost_quote": 1144.6998815,
"unrealized_pnl_exit_net": 103.9203504501
},
{
"timestamp": "2025-08-07T23:59:00+00:00",
"base_asset_bal": 121.2,
"quote_asset_bal": 8582.0937438018,
"total_value_mid": 9823.1817438019,
"total_value_exit_net": 9822.2509278019,
"total_value": 9823.1817438019,
"base_cost_quote": 1099.1929769,
"unrealized_pnl_exit_net": 140.9642071001
},
{
"timestamp": "2025-08-08T23:59:00+00:00",
"base_asset_bal": 119.73,
"quote_asset_bal": 8597.6035111768,
"total_value_mid": 9839.2036111769,
"total_value_exit_net": 9838.2724111019,
"total_value": 9839.2036111769,
"base_cost_quote": 1084.02100645,
"unrealized_pnl_exit_net": 156.6478934751
},
{
"timestamp": "2025-08-09T23:59:00+00:00",
"base_asset_bal": 115.39,
"quote_asset_bal": 8643.4538483268,
"total_value_mid": 9873.5112483269,
"total_value_exit_net": 9872.5887052769,
"total_value": 9873.5112483269,
"base_cost_quote": 1038.52891295,
"unrealized_pnl_exit_net": 190.6059440001
},
{
"timestamp": "2025-08-10T23:59:00+00:00",
"base_asset_bal": 115.87,
"quote_asset_bal": 8638.7302193018,
"total_value_mid": 9878.5392193019,
"total_value_exit_net": 9877.6093625519,
"total_value": 9878.5392193019,
"base_cost_quote": 1043.72921025,
"unrealized_pnl_exit_net": 195.1499330001
},
{
"timestamp": "2025-08-11T23:59:00+00:00",
"base_asset_bal": 124.15,
"quote_asset_bal": 8553.5418851268,
"total_value_mid": 9802.4908851269,
"total_value_exit_net": 9801.5541733769,
"total_value": 9802.4908851269,
"base_cost_quote": 1129.432539575,
"unrealized_pnl_exit_net": 118.5797486751
},
{
"timestamp": "2025-08-12T23:59:00+00:00",
"base_asset_bal": 118.28,
"quote_asset_bal": 8614.5975958518,
"total_value_mid": 9856.5375958519,
"total_value_exit_net": 9855.6061408519,
"total_value": 9856.5375958519,
"base_cost_quote": 1068.8294213,
"unrealized_pnl_exit_net": 172.1791237001
},
{
"timestamp": "2025-08-13T23:59:00+00:00",
"base_asset_bal": 115.89,
"quote_asset_bal": 8640.3771078018,
"total_value_mid": 9871.1289078019,
"total_value_exit_net": 9870.2058439519,
"total_value": 9871.1289078019,
"base_cost_quote": 1043.520153575,
"unrealized_pnl_exit_net": 186.3085825751
},
{
"timestamp": "2025-08-14T23:59:00+00:00",
"base_asset_bal": 121.33,
"quote_asset_bal": 8585.4044883768,
"total_value_mid": 9784.1448883769,
"total_value_exit_net": 9783.2458330769,
"total_value": 9784.1448883769,
"base_cost_quote": 1099.24881875,
"unrealized_pnl_exit_net": 98.5925259501
},
{
"timestamp": "2025-08-15T23:59:00+00:00",
"base_asset_bal": 121.77,
"quote_asset_bal": 8581.1261137518,
"total_value_mid": 9801.2615137519,
"total_value_exit_net": 9800.3464122019,
"total_value": 9801.2615137519,
"base_cost_quote": 1104.154795475,
"unrealized_pnl_exit_net": 115.0655029751
},
{
"timestamp": "2025-08-16T23:59:00+00:00",
"base_asset_bal": 119.77,
"quote_asset_bal": 8601.4078137018,
"total_value_mid": 9811.0848137019,
"total_value_exit_net": 9810.1775559519,
"total_value": 9811.0848137019,
"base_cost_quote": 1084.099765475,
"unrealized_pnl_exit_net": 124.6699767751
},
{
"timestamp": "2025-08-17T23:59:00+00:00",
"base_asset_bal": 120.76,
"quote_asset_bal": 8591.5008515268,
"total_value_mid": 9806.3464515269,
"total_value_exit_net": 9805.4353173269,
"total_value": 9806.3464515269,
"base_cost_quote": 1094.17021265,
"unrealized_pnl_exit_net": 119.7642531501
},
{
"timestamp": "2025-08-18T23:59:00+00:00",
"base_asset_bal": 123.81,
"quote_asset_bal": 8561.6638357018,
"total_value_mid": 9784.9066357019,
"total_value_exit_net": 9783.9892036019,
"total_value": 9784.9066357019,
"base_cost_quote": 1124.539672675,
"unrealized_pnl_exit_net": 97.7856952251
},
{
"timestamp": "2025-08-19T23:59:00+00:00",
"base_asset_bal": 131.09,
"quote_asset_bal": 8491.5318211018,
"total_value_mid": 9736.8868211019,
"total_value_exit_net": 9735.9528048519,
"total_value": 9736.8868211019,
"base_cost_quote": 1195.33122655,
"unrealized_pnl_exit_net": 49.0897572001
},
{
"timestamp": "2025-08-20T23:59:00+00:00",
"base_asset_bal": 124.83,
"quote_asset_bal": 8552.9165367269,
"total_value_mid": 9784.9886367269,
"total_value_exit_net": 9784.0645826519,
"total_value": 9784.9886367269,
"base_cost_quote": 1134.665661475,
"unrealized_pnl_exit_net": 96.4823844501
},
{
"timestamp": "2025-08-21T23:59:00+00:00",
"base_asset_bal": 129.5,
"quote_asset_bal": 8507.8489298269,
"total_value_mid": 9752.3439298269,
"total_value_exit_net": 9751.4105585769,
"total_value": 9752.3439298269,
"base_cost_quote": 1180.135738475,
"unrealized_pnl_exit_net": 63.4258902751
},
{
"timestamp": "2025-08-22T23:59:00+00:00",
"base_asset_bal": 119.28,
"quote_asset_bal": 8609.8487581519,
"total_value_mid": 9830.0831581519,
"total_value_exit_net": 9829.1679823519,
"total_value": 9830.0831581519,
"base_cost_quote": 1078.925687825,
"unrealized_pnl_exit_net": 140.3935363751
},
{
"timestamp": "2025-08-23T23:59:00+00:00",
"base_asset_bal": 118.79,
"quote_asset_bal": 8615.1912774518,
"total_value_mid": 9836.3524774519,
"total_value_exit_net": 9835.4366065519,
"total_value": 9836.3524774519,
"base_cost_quote": 1073.928843,
"unrealized_pnl_exit_net": 146.3164861001
},
{
"timestamp": "2025-08-24T23:59:00+00:00",
"base_asset_bal": 120.82,
"quote_asset_bal": 8595.9973345518,
"total_value_mid": 9824.7367345519,
"total_value_exit_net": 9823.8151800019,
"total_value": 9824.7367345519,
"base_cost_quote": 1094.1095672,
"unrealized_pnl_exit_net": 133.7082782501
},
{
"timestamp": "2025-08-25T23:59:00+00:00",
"base_asset_bal": 132.77,
"quote_asset_bal": 8480.9739492519,
"total_value_mid": 9738.3058492519,
"total_value_exit_net": 9737.3628503269,
"total_value": 9738.3058492519,
"base_cost_quote": 1210.22919165,
"unrealized_pnl_exit_net": 46.1597094251
},
{
"timestamp": "2025-08-26T23:59:00+00:00",
"base_asset_bal": 122.87,
"quote_asset_bal": 8577.7891512269,
"total_value_mid": 9797.8882512269,
"total_value_exit_net": 9796.9731769019,
"total_value": 9797.8882512269,
"base_cost_quote": 1114.3491355,
"unrealized_pnl_exit_net": 104.8348901751
},
{
"timestamp": "2025-08-27T23:59:00+00:00",
"base_asset_bal": 121.81,
"quote_asset_bal": 8588.9218628769,
"total_value_mid": 9815.5485628769,
"total_value_exit_net": 9814.6285928519,
"total_value": 9815.5485628769,
"base_cost_quote": 1104.128775975,
"unrealized_pnl_exit_net": 121.5779540001
},
{
"timestamp": "2025-08-28T23:59:00+00:00",
"base_asset_bal": 119.82,
"quote_asset_bal": 8609.4205202019,
"total_value_mid": 9833.9809202019,
"total_value_exit_net": 9833.0624999019,
"total_value": 9833.9809202019,
"base_cost_quote": 1083.980676225,
"unrealized_pnl_exit_net": 139.6613034751
},
{
"timestamp": "2025-08-29T23:59:00+00:00",
"base_asset_bal": 125.86,
"quote_asset_bal": 8549.4398545519,
"total_value_mid": 9779.0920545519,
"total_value_exit_net": 9778.1698154019,
"total_value": 9779.0920545519,
"base_cost_quote": 1144.49632895,
"unrealized_pnl_exit_net": 84.2336319001
},
{
"timestamp": "2025-08-30T23:59:00+00:00",
"base_asset_bal": 125.35,
"quote_asset_bal": 8554.6790337019,
"total_value_mid": 9804.4185337019,
"total_value_exit_net": 9803.4812290769,
"total_value": 9804.4185337019,
"base_cost_quote": 1139.527304975,
"unrealized_pnl_exit_net": 109.2748904001
},
{
"timestamp": "2025-08-31T23:59:00+00:00",
"base_asset_bal": 127.94,
"quote_asset_bal": 8529.5430740269,
"total_value_mid": 9778.2374740269,
"total_value_exit_net": 9777.3009532269,
"total_value": 9778.2374740269,
"base_cost_quote": 1164.802046825,
"unrealized_pnl_exit_net": 82.9558323751
},
{
"timestamp": "2025-09-01T23:59:00+00:00",
"base_asset_bal": 135.86,
"quote_asset_bal": 8454.3653009019,
"total_value_mid": 9734.1665009019,
"total_value_exit_net": 9733.2066500019,
"total_value": 9734.1665009019,
"base_cost_quote": 1240.560623175,
"unrealized_pnl_exit_net": 38.2807259251
},
{
"timestamp": "2025-09-02T23:59:00+00:00",
"base_asset_bal": 130.02,
"quote_asset_bal": 8510.4307973269,
"total_value_mid": 9765.123797327,
"total_value_exit_net": 9764.182777577,
"total_value": 9765.123797327,
"base_cost_quote": 1184.941139825,
"unrealized_pnl_exit_net": 68.8108404251
},
{
"timestamp": "2025-09-03T23:59:00+00:00",
"base_asset_bal": 128.98,
"quote_asset_bal": 8520.7701324019,
"total_value_mid": 9773.165932402,
"total_value_exit_net": 9772.226635552,
"total_value": 9773.165932402,
"base_cost_quote": 1174.918428425,
"unrealized_pnl_exit_net": 76.5380747251
},
{
"timestamp": "2025-09-04T23:59:00+00:00",
"base_asset_bal": 133.21,
"quote_asset_bal": 8480.6276170519,
"total_value_mid": 9736.797917052,
"total_value_exit_net": 9735.855789327,
"total_value": 9736.797917052,
"base_cost_quote": 1215.304695425,
"unrealized_pnl_exit_net": 39.9234768501
},
{
"timestamp": "2025-09-05T23:59:00+00:00",
"base_asset_bal": 131.07,
"quote_asset_bal": 8501.2625982769,
"total_value_mid": 9759.534598277,
"total_value_exit_net": 9758.590894277,
"total_value": 9759.534598277,
"base_cost_quote": 1195.075534925,
"unrealized_pnl_exit_net": 62.2527610751
},
{
"timestamp": "2025-09-06T23:59:00+00:00",
"base_asset_bal": 132.13,
"quote_asset_bal": 8491.2599437519,
"total_value_mid": 9754.422743752,
"total_value_exit_net": 9753.475371652,
"total_value": 9754.422743752,
"base_cost_quote": 1205.227343075,
"unrealized_pnl_exit_net": 56.9880848251
},
{
"timestamp": "2025-09-07T23:59:00+00:00",
"base_asset_bal": 132.13,
"quote_asset_bal": 8491.4100375269,
"total_value_mid": 9755.894137527,
"total_value_exit_net": 9754.945774452,
"total_value": 9755.894137527,
"base_cost_quote": 1205.2008232,
"unrealized_pnl_exit_net": 58.3349137251
},
{
"timestamp": "2025-09-08T23:59:00+00:00",
"base_asset_bal": 128.98,
"quote_asset_bal": 8522.0116701769,
"total_value_mid": 9774.407470177,
"total_value_exit_net": 9773.468173327,
"total_value": 9774.407470177,
"base_cost_quote": 1174.918428425,
"unrealized_pnl_exit_net": 76.5380747251
},
{
"timestamp": "2025-09-09T23:59:00+00:00",
"base_asset_bal": 130.03,
"quote_asset_bal": 8512.3903422019,
"total_value_mid": 9764.579242202,
"total_value_exit_net": 9763.640100527,
"total_value": 9764.579242202,
"base_cost_quote": 1184.956151075,
"unrealized_pnl_exit_net": 66.2936072501
},
{
"timestamp": "2025-09-10T23:59:00+00:00",
"base_asset_bal": 127.42,
"quote_asset_bal": 8537.976275102,
"total_value_mid": 9785.418075102,
"total_value_exit_net": 9784.482493752,
"total_value": 9785.418075102,
"base_cost_quote": 1159.7231405,
"unrealized_pnl_exit_net": 86.7830781501
},
{
"timestamp": "2025-09-11T23:59:00+00:00",
"base_asset_bal": 126.91,
"quote_asset_bal": 8543.207357402,
"total_value_mid": 9784.387157402,
"total_value_exit_net": 9783.456272552,
"total_value": 9784.387157402,
"base_cost_quote": 1154.716288175,
"unrealized_pnl_exit_net": 85.5326269751
},
{
"timestamp": "2025-09-12T23:59:00+00:00",
"base_asset_bal": 124.34,
"quote_asset_bal": 8568.760172402,
"total_value_mid": 9803.456372402,
"total_value_exit_net": 9802.530350252,
"total_value": 9803.456372402,
"base_cost_quote": 1129.48627985,
"unrealized_pnl_exit_net": 104.2838980001
},
{
"timestamp": "2025-09-13T23:59:00+00:00",
"base_asset_bal": 121.81,
"quote_asset_bal": 8594.425393702,
"total_value_mid": 9823.488293702,
"total_value_exit_net": 9822.566496527,
"total_value": 9823.488293702,
"base_cost_quote": 1104.178613325,
"unrealized_pnl_exit_net": 123.9624895001
},
{
"timestamp": "2025-09-14T23:59:00+00:00",
"base_asset_bal": 127.44,
"quote_asset_bal": 8539.232518202,
"total_value_mid": 9776.674918202,
"total_value_exit_net": 9775.746836402,
"total_value": 9776.674918202,
"base_cost_quote": 1159.7267432,
"unrealized_pnl_exit_net": 76.7875750001
},
{
"timestamp": "2025-09-15T23:59:00+00:00",
"base_asset_bal": 131.64,
"quote_asset_bal": 8499.269134702,
"total_value_mid": 9753.798334702,
"total_value_exit_net": 9752.857437802,
"total_value": 9753.798334702,
"base_cost_quote": 1200.1950717,
"unrealized_pnl_exit_net": 53.3932314001
},
{
"timestamp": "2025-09-16T23:59:00+00:00",
"base_asset_bal": 130.58,
"quote_asset_bal": 8509.727307402,
"total_value_mid": 9761.9895074021,
"total_value_exit_net": 9761.0503107521,
"total_value": 9761.9895074021,
"base_cost_quote": 1190.08569535,
"unrealized_pnl_exit_net": 61.2373080001
},
{
"timestamp": "2025-09-17T23:59:00+00:00",
"base_asset_bal": 126.92,
"quote_asset_bal": 8545.508027877,
"total_value_mid": 9786.7856278771,
"total_value_exit_net": 9785.8546696771,
"total_value": 9786.7856278771,
"base_cost_quote": 1154.7101836,
"unrealized_pnl_exit_net": 85.6364582001
},
{
"timestamp": "2025-09-18T23:59:00+00:00",
"base_asset_bal": 125.88,
"quote_asset_bal": 8555.996044302,
"total_value_mid": 9790.8788443021,
"total_value_exit_net": 9789.9526822021,
"total_value": 9790.8788443021,
"base_cost_quote": 1144.5313552,
"unrealized_pnl_exit_net": 89.4252827001
},
{
"timestamp": "2025-09-19T23:59:00+00:00",
"base_asset_bal": 131.63,
"quote_asset_bal": 8500.649982052,
"total_value_mid": 9760.3490820521,
"total_value_exit_net": 9759.4043077271,
"total_value": 9760.3490820521,
"base_cost_quote": 1200.17765865,
"unrealized_pnl_exit_net": 58.5766670251
},
{
"timestamp": "2025-09-20T23:59:00+00:00",
"base_asset_bal": 130.57,
"quote_asset_bal": 8510.983394677,
"total_value_mid": 9767.0667946771,
"total_value_exit_net": 9766.1247321271,
"total_value": 9767.0667946771,
"base_cost_quote": 1190.0258505,
"unrealized_pnl_exit_net": 65.1154869501
},
{
"timestamp": "2025-09-21T23:59:00+00:00",
"base_asset_bal": 118.89,
"quote_asset_bal": 8628.730172127,
"total_value_mid": 9828.3302721271,
"total_value_exit_net": 9827.4305720521,
"total_value": 9828.3302721271,
"base_cost_quote": 1073.7539119,
"unrealized_pnl_exit_net": 124.9464880251
},
{
"timestamp": "2025-09-22T23:59:00+00:00",
"base_asset_bal": 134.21,
"quote_asset_bal": 8482.7086033271,
"total_value_mid": 9678.5197033271,
"total_value_exit_net": 9677.6228450021,
"total_value": 9678.5197033271,
"base_cost_quote": 1220.18985655,
"unrealized_pnl_exit_net": -25.2756148749
},
{
"timestamp": "2025-09-23T23:59:00+00:00",
"base_asset_bal": 136.07,
"quote_asset_bal": 8466.6585357771,
"total_value_mid": 9668.1566357771,
"total_value_exit_net": 9667.2555122021,
"total_value": 9668.1566357771,
"base_cost_quote": 1235.27195965,
"unrealized_pnl_exit_net": -34.6749832249
},
{
"timestamp": "2025-09-24T23:59:00+00:00",
"base_asset_bal": 134.48,
"quote_asset_bal": 8481.2026821521,
"total_value_mid": 9682.1090821521,
"total_value_exit_net": 9681.2084023521,
"total_value": 9682.1090821521,
"base_cost_quote": 1220.1440222,
"unrealized_pnl_exit_net": -20.1383019999
},
{
"timestamp": "2025-09-25T23:59:00+00:00",
"base_asset_bal": 147.82,
"quote_asset_bal": 8367.6479814021,
"total_value_mid": 9587.1629814021,
"total_value_exit_net": 9586.2483451521,
"total_value": 9587.1629814021,
"base_cost_quote": 1331.165525925,
"unrealized_pnl_exit_net": -112.5651621749
},
{
"timestamp": "2025-09-26T23:59:00+00:00",
"base_asset_bal": 141.87,
"quote_asset_bal": 8418.1614607521,
"total_value_mid": 9631.1499607521,
"total_value_exit_net": 9630.2402193771,
"total_value": 9631.1499607521,
"base_cost_quote": 1280.734130725,
"unrealized_pnl_exit_net": -68.6553720999
},
{
"timestamp": "2025-09-27T23:59:00+00:00",
"base_asset_bal": 142.6,
"quote_asset_bal": 8412.1026009771,
"total_value_mid": 9628.4806009771,
"total_value_exit_net": 9627.5683174771,
"total_value": 9628.4806009771,
"base_cost_quote": 1285.7587964,
"unrealized_pnl_exit_net": -70.2930798999
},
{
"timestamp": "2025-09-28T23:59:00+00:00",
"base_asset_bal": 142.06,
"quote_asset_bal": 8417.0555384271,
"total_value_mid": 9634.5097384271,
"total_value_exit_net": 9633.5966477771,
"total_value": 9634.5097384271,
"base_cost_quote": 1280.69360035,
"unrealized_pnl_exit_net": -64.1524909999
},
{
"timestamp": "2025-09-29T23:59:00+00:00",
"base_asset_bal": 142.95,
"quote_asset_bal": 8409.7664911271,
"total_value_mid": 9633.4184911271,
"total_value_exit_net": 9632.5007521271,
"total_value": 9633.4184911271,
"base_cost_quote": 1285.8400573,
"unrealized_pnl_exit_net": -63.1057962999
},
{
"timestamp": "2025-09-30T23:59:00+00:00",
"base_asset_bal": 147.23,
"quote_asset_bal": 8374.5296056771,
"total_value_mid": 9600.9555056771,
"total_value_exit_net": 9600.0356862521,
"total_value": 9600.9555056771,
"base_cost_quote": 1321.1921515,
"unrealized_pnl_exit_net": -95.6860709249
},
{
"timestamp": "2025-10-01T23:59:00+00:00",
"base_asset_bal": 142.07,
"quote_asset_bal": 8418.6445337521,
"total_value_mid": 9646.1293337522,
"total_value_exit_net": 9645.2087201522,
"total_value": 9646.1293337522,
"base_cost_quote": 1275.64701825,
"unrealized_pnl_exit_net": -49.0828318499
},
{
"timestamp": "2025-10-02T23:59:00+00:00",
"base_asset_bal": 140.13,
"quote_asset_bal": 8435.9026623271,
"total_value_mid": 9666.2440623272,
"total_value_exit_net": 9665.3213062772,
"total_value": 9666.2440623272,
"base_cost_quote": 1255.53954895,
"unrealized_pnl_exit_net": -26.1209049999
},
{
"timestamp": "2025-10-03T23:59:00+00:00",
"base_asset_bal": 139.87,
"quote_asset_bal": 8438.5048847021,
"total_value_mid": 9674.9556847022,
"total_value_exit_net": 9674.0283466022,
"total_value": 9674.9556847022,
"base_cost_quote": 1250.486862275,
"unrealized_pnl_exit_net": -14.9634003749
},
{
"timestamp": "2025-10-04T23:59:00+00:00",
"base_asset_bal": 145.81,
"quote_asset_bal": 8387.0789520521,
"total_value_mid": 9633.7544520522,
"total_value_exit_net": 9632.8194454272,
"total_value": 9633.7544520522,
"base_cost_quote": 1300.931267225,
"unrealized_pnl_exit_net": -55.1907738499
},
{
"timestamp": "2025-10-05T23:59:00+00:00",
"base_asset_bal": 149.06,
"quote_asset_bal": 8359.7116826271,
"total_value_mid": 9620.7592826272,
"total_value_exit_net": 9619.8134969272,
"total_value": 9620.7592826272,
"base_cost_quote": 1326.10163085,
"unrealized_pnl_exit_net": -65.9998165499
},
{
"timestamp": "2025-10-06T23:59:00+00:00",
"base_asset_bal": 146.34,
"quote_asset_bal": 8383.0537617021,
"total_value_mid": 9643.0411617022,
"total_value_exit_net": 9642.0961711522,
"total_value": 9643.0411617022,
"base_cost_quote": 1300.927264225,
"unrealized_pnl_exit_net": -41.8848547749
},
{
"timestamp": "2025-10-07T23:59:00+00:00",
"base_asset_bal": 151.83,
"quote_asset_bal": 8336.9027437771,
"total_value_mid": 9595.5734437772,
"total_value_exit_net": 9594.6294407522,
"total_value": 9595.5734437772,
"base_cost_quote": 1346.368319475,
"unrealized_pnl_exit_net": -88.6416224999
},
{
"timestamp": "2025-10-08T23:59:00+00:00",
"base_asset_bal": 150.01,
"quote_asset_bal": 8352.4654055271,
"total_value_mid": 9615.5496055272,
"total_value_exit_net": 9614.6022923772,
"total_value": 9615.5496055272,
"base_cost_quote": 1331.2088584,
"unrealized_pnl_exit_net": -69.0719715499
},
{
"timestamp": "2025-10-09T23:59:00+00:00",
"base_asset_bal": 154.27,
"quote_asset_bal": 8317.5335410521,
"total_value_mid": 9584.0902410522,
"total_value_exit_net": 9583.1403235272,
"total_value": 9584.0902410522,
"base_cost_quote": 1366.54353955,
"unrealized_pnl_exit_net": -100.9367570749
},
{
"timestamp": "2025-10-10T23:59:00+00:00",
"base_asset_bal": 168.86,
"quote_asset_bal": 8223.2525717021,
"total_value_mid": 9195.8861717022,
"total_value_exit_net": 9195.1566965022,
"total_value": 9195.8861717022,
"base_cost_quote": 1462.3099105,
"unrealized_pnl_exit_net": -490.4057857
},
{
"timestamp": "2025-10-11T23:59:00+00:00",
"base_asset_bal": 178.41,
"quote_asset_bal": 8170.4113301271,
"total_value_mid": 9183.7801301272,
"total_value_exit_net": 9183.0201035272,
"total_value": 9183.7801301272,
"base_cost_quote": 1517.621062775,
"unrealized_pnl_exit_net": -505.012289375
},
{
"timestamp": "2025-10-12T23:59:00+00:00",
"base_asset_bal": 173.61,
"quote_asset_bal": 8197.0522308772,
"total_value_mid": 9309.8923308772,
"total_value_exit_net": 9309.0577008022,
"total_value": 9309.8923308772,
"base_cost_quote": 1492.500836725,
"unrealized_pnl_exit_net": -380.4953668
},
{
"timestamp": "2025-10-13T23:59:00+00:00",
"base_asset_bal": 171.89,
"quote_asset_bal": 8208.8212100772,
"total_value_mid": 9365.6409100772,
"total_value_exit_net": 9364.7732953022,
"total_value": 9365.6409100772,
"base_cost_quote": 1482.372846425,
"unrealized_pnl_exit_net": -326.4207611999
},
{
"timestamp": "2025-10-14T23:59:00+00:00",
"base_asset_bal": 176.49,
"quote_asset_bal": 8180.0952374772,
"total_value_mid": 9344.9292374772,
"total_value_exit_net": 9344.0556119772,
"total_value": 9344.9292374772,
"base_cost_quote": 1512.582886975,
"unrealized_pnl_exit_net": -348.622512475
},
{
"timestamp": "2025-10-15T23:59:00+00:00",
"base_asset_bal": 188.18,
"quote_asset_bal": 8105.4009089522,
"total_value_mid": 9290.9349089522,
"total_value_exit_net": 9290.0457584522,
"total_value": 9290.9349089522,
"base_cost_quote": 1588.2014584,
"unrealized_pnl_exit_net": -403.5566089
},
{
"timestamp": "2025-10-16T23:59:00+00:00",
"base_asset_bal": 197.13,
"quote_asset_bal": 8051.2217904022,
"total_value_mid": 9249.7721904022,
"total_value_exit_net": 9248.8732776022,
"total_value": 9249.7721904022,
"base_cost_quote": 1643.44866275,
"unrealized_pnl_exit_net": -445.79717555
},
{
"timestamp": "2025-10-17T23:59:00+00:00",
"base_asset_bal": 200.57,
"quote_asset_bal": 8032.7362747272,
"total_value_mid": 9222.1163747272,
"total_value_exit_net": 9221.2243396522,
"total_value": 9222.1163747272,
"base_cost_quote": 1663.634290625,
"unrealized_pnl_exit_net": -475.1462257
},
{
"timestamp": "2025-10-18T23:59:00+00:00",
"base_asset_bal": 196.33,
"quote_asset_bal": 8058.3617370772,
"total_value_mid": 9248.1215370772,
"total_value_exit_net": 9247.2292172272,
"total_value": 9248.1215370772,
"base_cost_quote": 1638.384567525,
"unrealized_pnl_exit_net": -449.517087375
},
{
"timestamp": "2025-10-19T23:59:00+00:00",
"base_asset_bal": 165.9,
"quote_asset_bal": 8262.4746404522,
"total_value_mid": 9460.2726404522,
"total_value_exit_net": 9459.3742919522,
"total_value": 9460.2726404522,
"base_cost_quote": 1437.07760045,
"unrealized_pnl_exit_net": -240.1779489499
},
{
"timestamp": "2025-10-20T23:59:00+00:00",
"base_asset_bal": 127.09,
"quote_asset_bal": 8619.6812117772,
"total_value_mid": 9861.3505117773,
"total_value_exit_net": 9860.4192598023,
"total_value": 9861.3505117773,
"base_cost_quote": 1073.64483015,
"unrealized_pnl_exit_net": 167.0932178751
},
{
"timestamp": "2025-10-21T23:59:00+00:00",
"base_asset_bal": 147.11,
"quote_asset_bal": 8457.8028885271,
"total_value_mid": 9600.8475885272,
"total_value_exit_net": 9599.9903050022,
"total_value": 9600.8475885272,
"base_cost_quote": 1235.151769575,
"unrealized_pnl_exit_net": -92.9643530999
},
{
"timestamp": "2025-10-22T23:59:00+00:00",
"base_asset_bal": 147.43,
"quote_asset_bal": 8461.3346247521,
"total_value_mid": 9586.2255247522,
"total_value_exit_net": 9585.3818565772,
"total_value": 9586.2255247522,
"base_cost_quote": 1230.1307066,
"unrealized_pnl_exit_net": -106.0834747749
},
{
"timestamp": "2025-10-23T23:59:00+00:00",
"base_asset_bal": 140.3,
"quote_asset_bal": 8518.7670123771,
"total_value_mid": 9622.9280123772,
"total_value_exit_net": 9622.0998916272,
"total_value": 9622.9280123772,
"base_cost_quote": 1174.673444825,
"unrealized_pnl_exit_net": -71.3405655749
},
{
"timestamp": "2025-10-24T23:59:00+00:00",
"base_asset_bal": 140.28,
"quote_asset_bal": 8519.8975585521,
"total_value_mid": 9604.2619585521,
"total_value_exit_net": 9603.4486852521,
"total_value": 9604.2619585521,
"base_cost_quote": 1174.59288445,
"unrealized_pnl_exit_net": -91.0417577499
},
{
"timestamp": "2025-10-25T23:59:00+00:00",
"base_asset_bal": 151.67,
"quote_asset_bal": 8434.700396877,
"total_value_mid": 9549.4748968771,
"total_value_exit_net": 9548.6388160021,
"total_value": 9549.4748968771,
"base_cost_quote": 1260.416103625,
"unrealized_pnl_exit_net": -146.4776844999
},
{
"timestamp": "2025-10-26T23:59:00+00:00",
"base_asset_bal": 148.95,
"quote_asset_bal": 8455.590874827,
"total_value_mid": 9559.3103748271,
"total_value_exit_net": 9558.4825852021,
"total_value": 9559.3103748271,
"base_cost_quote": 1240.260798475,
"unrealized_pnl_exit_net": -137.3690880999
},
{
"timestamp": "2025-10-27T23:59:00+00:00",
"base_asset_bal": 153.78,
"quote_asset_bal": 8421.365491002,
"total_value_mid": 9533.1948910021,
"total_value_exit_net": 9532.3610189521,
"total_value": 9533.1948910021,
"base_cost_quote": 1275.48329555,
"unrealized_pnl_exit_net": -164.4877675999
},
{
"timestamp": "2025-10-28T23:59:00+00:00",
"base_asset_bal": 160.91,
"quote_asset_bal": 8371.889023352,
"total_value_mid": 9491.8226233521,
"total_value_exit_net": 9490.9826731521,
"total_value": 9491.8226233521,
"base_cost_quote": 1325.9060843,
"unrealized_pnl_exit_net": -206.8124344999
},
{
"timestamp": "2025-10-29T23:59:00+00:00",
"base_asset_bal": 165.32,
"quote_asset_bal": 8342.480870577,
"total_value_mid": 9468.3100705771,
"total_value_exit_net": 9467.4656986771,
"total_value": 9468.3100705771,
"base_cost_quote": 1356.129034525,
"unrealized_pnl_exit_net": -231.1442064249
},
{
"timestamp": "2025-10-30T23:59:00+00:00",
"base_asset_bal": 177.14,
"quote_asset_bal": 8268.391440802,
"total_value_mid": 9384.3734408021,
"total_value_exit_net": 9383.5364543021,
"total_value": 9384.3734408021,
"base_cost_quote": 1431.5964927,
"unrealized_pnl_exit_net": -316.4514792
},
{
"timestamp": "2025-10-31T23:59:00+00:00",
"base_asset_bal": 173.16,
"quote_asset_bal": 8294.511320602,
"total_value_mid": 9406.1985206021,
"total_value_exit_net": 9405.3647552021,
"total_value": 9406.1985206021,
"base_cost_quote": 1406.3587786,
"unrealized_pnl_exit_net": -295.5053439999
},
{
"timestamp": "2025-11-01T23:59:00+00:00",
"base_asset_bal": 167.03,
"quote_asset_bal": 8335.910185352,
"total_value_mid": 9434.9675853521,
"total_value_exit_net": 9434.1432923021,
"total_value": 9434.9675853521,
"base_cost_quote": 1366.09520355,
"unrealized_pnl_exit_net": -267.8620965999
},
{
"timestamp": "2025-11-02T23:59:00+00:00",
"base_asset_bal": 149.9,
"quote_asset_bal": 8459.603856477,
"total_value_mid": 9525.3928564771,
"total_value_exit_net": 9524.5935147271,
"total_value": 9525.3928564771,
"base_cost_quote": 1245.222516975,
"unrealized_pnl_exit_net": -180.2328587249
},
{
"timestamp": "2025-11-03T23:59:00+00:00",
"base_asset_bal": 159.53,
"quote_asset_bal": 8401.233232177,
"total_value_mid": 9427.0111321771,
"total_value_exit_net": 9426.2417987521,
"total_value": 9427.0111321771,
"base_cost_quote": 1305.693836475,
"unrealized_pnl_exit_net": -280.6852699
},
{
"timestamp": "2025-11-04T23:59:00+00:00",
"base_asset_bal": 158.5,
"quote_asset_bal": 8413.948853552,
"total_value_mid": 9387.1388535521,
"total_value_exit_net": 9386.4089610521,
"total_value": 9387.1388535521,
"base_cost_quote": 1295.5297191,
"unrealized_pnl_exit_net": -323.0696116
},
{
"timestamp": "2025-11-05T23:59:00+00:00",
"base_asset_bal": 154.44,
"quote_asset_bal": 8440.708252052,
"total_value_mid": 9407.5026520521,
"total_value_exit_net": 9406.7775562521,
"total_value": 9407.5026520521,
"base_cost_quote": 1270.3648596,
"unrealized_pnl_exit_net": -304.2955554
},
{
"timestamp": "2025-11-06T23:59:00+00:00",
"base_asset_bal": 150.41,
"quote_asset_bal": 8468.366666102,
"total_value_mid": 9446.031666102,
"total_value_exit_net": 9445.298417352,
"total_value": 9446.031666102,
"base_cost_quote": 1245.19539665,
"unrealized_pnl_exit_net": -268.2636454
},
{
"timestamp": "2025-11-07T23:59:00+00:00",
"base_asset_bal": 149.66,
"quote_asset_bal": 8475.364554552,
"total_value_mid": 9494.549154552,
"total_value_exit_net": 9493.784766102,
"total_value": 9494.549154552,
"base_cost_quote": 1240.1582216,
"unrealized_pnl_exit_net": -221.7380100499
},
{
"timestamp": "2025-11-08T23:59:00+00:00",
"base_asset_bal": 152.66,
"quote_asset_bal": 8456.364258202,
"total_value_mid": 9466.9734582021,
"total_value_exit_net": 9466.2155013021,
"total_value": 9466.9734582021,
"base_cost_quote": 1260.32793755,
"unrealized_pnl_exit_net": -250.4766944499
},
{
"timestamp": "2025-11-09T23:59:00+00:00",
"base_asset_bal": 153.42,
"quote_asset_bal": 8452.162432102,
"total_value_mid": 9467.8028321021,
"total_value_exit_net": 9467.0411018021,
"total_value": 9467.8028321021,
"base_cost_quote": 1265.36251065,
"unrealized_pnl_exit_net": -250.4838409499
},
{
"timestamp": "2025-11-10T23:59:00+00:00",
"base_asset_bal": 152.63,
"quote_asset_bal": 8458.062676227,
"total_value_mid": 9471.5258762271,
"total_value_exit_net": 9470.7657788271,
"total_value": 9471.5258762271,
"base_cost_quote": 1260.365465675,
"unrealized_pnl_exit_net": -247.6623630749
},
{
"timestamp": "2025-11-11T23:59:00+00:00",
"base_asset_bal": 159.54,
"quote_asset_bal": 8414.1817457021,
"total_value_mid": 9444.8101457021,
"total_value_exit_net": 9444.0371744021,
"total_value": 9444.8101457021,
"base_cost_quote": 1305.6669163,
"unrealized_pnl_exit_net": -275.8114875999
},
{
"timestamp": "2025-11-12T23:59:00+00:00",
"base_asset_bal": 161.92,
"quote_asset_bal": 8399.790729127,
"total_value_mid": 9429.6019291271,
"total_value_exit_net": 9428.8295707271,
"total_value": 9429.6019291271,
"base_cost_quote": 1320.740913325,
"unrealized_pnl_exit_net": -291.702071725
},
{
"timestamp": "2025-11-13T23:59:00+00:00",
"base_asset_bal": 163.55,
"quote_asset_bal": 8390.741794252,
"total_value_mid": 9404.7517942521,
"total_value_exit_net": 9403.9912867521,
"total_value": 9404.7517942521,
"base_cost_quote": 1330.7369047,
"unrealized_pnl_exit_net": -317.4874122
},
{
"timestamp": "2025-11-14T23:59:00+00:00",
"base_asset_bal": 165.16,
"quote_asset_bal": 8382.150560877,
"total_value_mid": 9402.8393608771,
"total_value_exit_net": 9402.0738442771,
"total_value": 9402.8393608771,
"base_cost_quote": 1340.798545275,
"unrealized_pnl_exit_net": -320.875261875
},
{
"timestamp": "2025-11-15T23:59:00+00:00",
"base_asset_bal": 159.64,
"quote_asset_bal": 8418.010986877,
"total_value_mid": 9404.5861868771,
"total_value_exit_net": 9403.8462554771,
"total_value": 9404.5861868771,
"base_cost_quote": 1305.567942125,
"unrealized_pnl_exit_net": -319.732673525
},
{
"timestamp": "2025-11-16T23:59:00+00:00",
"base_asset_bal": 167.91,
"quote_asset_bal": 8368.513647527,
"total_value_mid": 9374.2945475271,
"total_value_exit_net": 9373.5402118521,
"total_value": 9374.2945475271,
"base_cost_quote": 1355.930485725,
"unrealized_pnl_exit_net": -350.9039214
},
{
"timestamp": "2025-11-17T23:59:00+00:00",
"base_asset_bal": 164.58,
"quote_asset_bal": 8389.961033402,
"total_value_mid": 9388.9616334021,
"total_value_exit_net": 9388.2123829521,
"total_value": 9388.9616334021,
"base_cost_quote": 1335.79209325,
"unrealized_pnl_exit_net": -337.5407437
},
{
"timestamp": "2025-11-18T23:59:00+00:00",
"base_asset_bal": 163.75,
"quote_asset_bal": 8396.058532452,
"total_value_mid": 9396.5710324521,
"total_value_exit_net": 9395.8206480771,
"total_value": 9396.5710324521,
"base_cost_quote": 1330.6676528,
"unrealized_pnl_exit_net": -330.905537175
},
{
"timestamp": "2025-11-19T23:59:00+00:00",
"base_asset_bal": 171.32,
"quote_asset_bal": 8351.666220327,
"total_value_mid": 9352.1750203271,
"total_value_exit_net": 9351.4246387271,
"total_value": 9352.1750203271,
"base_cost_quote": 1376.094997775,
"unrealized_pnl_exit_net": -376.336579375
},
{
"timestamp": "2025-11-20T23:59:00+00:00",
"base_asset_bal": 176.54,
"quote_asset_bal": 8322.6532819271,
"total_value_mid": 9323.6350819271,
"total_value_exit_net": 9322.8843455771,
"total_value": 9323.6350819271,
"base_cost_quote": 1406.272013575,
"unrealized_pnl_exit_net": -406.040949925
},
{
"timestamp": "2025-11-21T23:59:00+00:00",
"base_asset_bal": 190.12,
"quote_asset_bal": 8249.0251932271,
"total_value_mid": 9277.5743932271,
"total_value_exit_net": 9276.8029813271,
"total_value": 9277.5743932271,
"base_cost_quote": 1481.755183525,
"unrealized_pnl_exit_net": -453.977395425
},
{
"timestamp": "2025-11-22T23:59:00+00:00",
"base_asset_bal": 192,
"quote_asset_bal": 8239.9008926021,
"total_value_mid": 9267.1008926021,
"total_value_exit_net": 9266.3304926021,
"total_value": 9267.1008926021,
"base_cost_quote": 1491.7647851,
"unrealized_pnl_exit_net": -465.3351851
},
{
"timestamp": "2025-11-23T23:59:00+00:00",
"base_asset_bal": 189.19,
"quote_asset_bal": 8255.5771432021,
"total_value_mid": 9282.8788432021,
"total_value_exit_net": 9282.1083669271,
"total_value": 9282.8788432021,
"base_cost_quote": 1476.73852385,
"unrealized_pnl_exit_net": -450.207300125
},
{
"timestamp": "2025-11-24T23:59:00+00:00",
"base_asset_bal": 181.9,
"quote_asset_bal": 8296.8773180271,
"total_value_mid": 9322.7933180271,
"total_value_exit_net": 9322.0238810271,
"total_value": 9322.7933180271,
"base_cost_quote": 1436.474048125,
"unrealized_pnl_exit_net": -411.327485125
},
{
"timestamp": "2025-11-25T23:59:00+00:00",
"base_asset_bal": 181.87,
"quote_asset_bal": 8297.3682165271,
"total_value_mid": 9317.6589165271,
"total_value_exit_net": 9316.8936985022,
"total_value": 9317.6589165271,
"base_cost_quote": 1436.469444675,
"unrealized_pnl_exit_net": -416.9439627
},
{
"timestamp": "2025-11-26T23:59:00+00:00",
"base_asset_bal": 181.89,
"quote_asset_bal": 8297.8216858521,
"total_value_mid": 9325.5001858522,
"total_value_exit_net": 9324.7294269772,
"total_value": 9325.5001858522,
"base_cost_quote": 1436.4457269,
"unrealized_pnl_exit_net": -409.537985775
},
{
"timestamp": "2025-11-27T23:59:00+00:00",
"base_asset_bal": 170.52,
"quote_asset_bal": 8364.5709247272,
"total_value_mid": 9367.2285247272,
"total_value_exit_net": 9366.4765315272,
"total_value": 9367.2285247272,
"base_cost_quote": 1370.974960625,
"unrealized_pnl_exit_net": -369.069353825
},
{
"timestamp": "2025-11-28T23:59:00+00:00",
"base_asset_bal": 149.15,
"quote_asset_bal": 8503.9252617022,
"total_value_mid": 9448.0447617022,
"total_value_exit_net": 9447.3366720772,
"total_value": 9448.0447617022,
"base_cost_quote": 1235.13425645,
"unrealized_pnl_exit_net": -291.722846075
},
{
"timestamp": "2025-11-29T23:59:00+00:00",
"base_asset_bal": 156.4,
"quote_asset_bal": 8461.1975982271,
"total_value_mid": 9429.3135982272,
"total_value_exit_net": 9428.5875112272,
"total_value": 9429.3135982272,
"base_cost_quote": 1280.441111125,
"unrealized_pnl_exit_net": -313.051198125
},
{
"timestamp": "2025-11-30T23:59:00+00:00",
"base_asset_bal": 167.31,
"quote_asset_bal": 8396.1718192771,
"total_value_mid": 9369.9160192772,
"total_value_exit_net": 9369.1857111272,
"total_value": 9369.9160192772,
"base_cost_quote": 1345.952808075,
"unrealized_pnl_exit_net": -372.938916225
},
{
"timestamp": "2025-12-01T23:59:00+00:00",
"base_asset_bal": 174.47,
"quote_asset_bal": 8357.0936893771,
"total_value_mid": 9313.1892893772,
"total_value_exit_net": 9312.4722176772,
"total_value": 9313.1892893772,
"base_cost_quote": 1386.228992575,
"unrealized_pnl_exit_net": -430.850464275
},
{
"timestamp": "2025-12-02T23:59:00+00:00",
"base_asset_bal": 171.69,
"quote_asset_bal": 8372.9321172772,
"total_value_mid": 9351.5651172772,
"total_value_exit_net": 9350.8311425272,
"total_value": 9351.5651172772,
"base_cost_quote": 1371.166103875,
"unrealized_pnl_exit_net": -393.267078625
},
{
"timestamp": "2025-12-03T23:59:00+00:00",
"base_asset_bal": 170.8,
"quote_asset_bal": 8378.5481041772,
"total_value_mid": 9358.9401041772,
"total_value_exit_net": 9358.2048101772,
"total_value": 9358.9401041772,
"base_cost_quote": 1366.123925075,
"unrealized_pnl_exit_net": -386.467219075
},
{
"timestamp": "2025-12-04T23:59:00+00:00",
"base_asset_bal": 173.48,
"quote_asset_bal": 8363.9541746522,
"total_value_mid": 9349.3205746522,
"total_value_exit_net": 9348.5815498522,
"total_value": 9349.3205746522,
"base_cost_quote": 1381.22454205,
"unrealized_pnl_exit_net": -396.59716685
},
{
"timestamp": "2025-12-05T23:59:00+00:00",
"base_asset_bal": 178.85,
"quote_asset_bal": 8334.9751676272,
"total_value_mid": 9320.4386676273,
"total_value_exit_net": 9319.6995700023,
"total_value": 9320.4386676273,
"base_cost_quote": 1411.380642175,
"unrealized_pnl_exit_net": -426.6562398
},
{
"timestamp": "2025-12-06T23:59:00+00:00",
"base_asset_bal": 175.21,
"quote_asset_bal": 8355.6978703022,
"total_value_mid": 9335.1217703023,
"total_value_exit_net": 9334.3872023773,
"total_value": 9335.1217703023,
"base_cost_quote": 1391.1994176,
"unrealized_pnl_exit_net": -412.510085525
},
{
"timestamp": "2025-12-07T23:59:00+00:00",
"base_asset_bal": 180.68,
"quote_asset_bal": 8326.1253070272,
"total_value_mid": 9310.8313070273,
"total_value_exit_net": 9310.0927775273,
"total_value": 9310.8313070273,
"base_cost_quote": 1421.367927025,
"unrealized_pnl_exit_net": -437.400456525
},
{
"timestamp": "2025-12-08T23:59:00+00:00",
"base_asset_bal": 177.02,
"quote_asset_bal": 8346.7836360523,
"total_value_mid": 9332.7850360523,
"total_value_exit_net": 9332.0455350023,
"total_value": 9332.7850360523,
"base_cost_quote": 1401.2793719,
"unrealized_pnl_exit_net": -416.01747295
},
{
"timestamp": "2025-12-09T23:59:00+00:00",
"base_asset_bal": 176.11,
"quote_asset_bal": 8352.5526858523,
"total_value_mid": 9345.8130858523,
"total_value_exit_net": 9345.0681405523,
"total_value": 9345.8130858523,
"base_cost_quote": 1396.27221935,
"unrealized_pnl_exit_net": -403.75676465
},
{
"timestamp": "2025-12-10T23:59:00+00:00",
"base_asset_bal": 180.66,
"quote_asset_bal": 8327.9650261023,
"total_value_mid": 9314.3686261023,
"total_value_exit_net": 9313.6288234023,
"total_value": 9314.3686261023,
"base_cost_quote": 1421.46870255,
"unrealized_pnl_exit_net": -435.80490525
},
{
"timestamp": "2025-12-11T23:59:00+00:00",
"base_asset_bal": 185.31,
"quote_asset_bal": 8303.3240839273,
"total_value_mid": 9300.2918839273,
"total_value_exit_net": 9299.5441580773,
"total_value": 9300.2918839273,
"base_cost_quote": 1446.643269325,
"unrealized_pnl_exit_net": -450.423195175
},
{
"timestamp": "2025-12-12T23:59:00+00:00",
"base_asset_bal": 184.35,
"quote_asset_bal": 8309.1969918273,
"total_value_mid": 9295.4694918273,
"total_value_exit_net": 9294.7297874523,
"total_value": 9295.4694918273,
"base_cost_quote": 1441.581075525,
"unrealized_pnl_exit_net": -456.0482799
},
{
"timestamp": "2025-12-13T23:59:00+00:00",
"base_asset_bal": 181.57,
"quote_asset_bal": 8324.9312981773,
"total_value_mid": 9312.6720981773,
"total_value_exit_net": 9311.9312925773,
"total_value": 9312.6720981773,
"base_cost_quote": 1426.448934925,
"unrealized_pnl_exit_net": -439.448940525
},
{
"timestamp": "2025-12-14T23:59:00+00:00",
"base_asset_bal": 191.02,
"quote_asset_bal": 8274.9278145023,
"total_value_mid": 9270.1420145023,
"total_value_exit_net": 9269.3956038523,
"total_value": 9270.1420145023,
"base_cost_quote": 1476.77134845,
"unrealized_pnl_exit_net": -482.3035591
},
{
"timestamp": "2025-12-15T23:59:00+00:00",
"base_asset_bal": 196.96,
"quote_asset_bal": 8245.3789366523,
"total_value_mid": 9238.0573366523,
"total_value_exit_net": 9237.3128278523,
"total_value": 9238.0573366523,
"base_cost_quote": 1506.93155165,
"unrealized_pnl_exit_net": -514.99766045
},
{
"timestamp": "2025-12-16T23:59:00+00:00",
"base_asset_bal": 193.97,
"quote_asset_bal": 8260.8874753023,
"total_value_mid": 9244.3153753023,
"total_value_exit_net": 9243.5778043773,
"total_value": 9244.3153753023,
"base_cost_quote": 1491.8212274,
"unrealized_pnl_exit_net": -509.130898325
},
{
"timestamp": "2025-12-17T23:59:00+00:00",
"base_asset_bal": 203.09,
"quote_asset_bal": 8216.0912904523,
"total_value_mid": 9194.9850904523,
"total_value_exit_net": 9194.2509201023,
"total_value": 9194.9850904523,
"base_cost_quote": 1537.06493475,
"unrealized_pnl_exit_net": -558.9053051
},
{
"timestamp": "2025-12-18T23:59:00+00:00",
"base_asset_bal": 211.62,
"quote_asset_bal": 8176.6088129523,
"total_value_mid": 9152.1770129523,
"total_value_exit_net": 9151.4453368023,
"total_value": 9152.1770129523,
"base_cost_quote": 1577.2968861,
"unrealized_pnl_exit_net": -602.46036225
},
{
"timestamp": "2025-12-19T23:59:00+00:00",
"base_asset_bal": 199.95,
"quote_asset_bal": 8232.4966163273,
"total_value_mid": 9220.2496163273,
"total_value_exit_net": 9219.5088015773,
"total_value": 9220.2496163273,
"base_cost_quote": 1522.007950475,
"unrealized_pnl_exit_net": -534.995765225
},
{
"timestamp": "2025-12-20T23:59:00+00:00",
"base_asset_bal": 197.92,
"quote_asset_bal": 8243.1726266273,
"total_value_mid": 9238.7102266273,
"total_value_exit_net": 9237.9635734273,
"total_value": 9238.7102266273,
"base_cost_quote": 1512.022266825,
"unrealized_pnl_exit_net": -517.231320025
},
{
"timestamp": "2025-12-21T23:59:00+00:00",
"base_asset_bal": 195.68,
"quote_asset_bal": 8259.0537457273,
"total_value_mid": 9212.0153457273,
"total_value_exit_net": 9211.3006245273,
"total_value": 9212.0153457273,
"base_cost_quote": 1496.888725175,
"unrealized_pnl_exit_net": -544.641846375
},
{
"timestamp": "2025-12-22T23:59:00+00:00",
"base_asset_bal": 189.5,
"quote_asset_bal": 8289.7834131523,
"total_value_mid": 9227.8084131523,
"total_value_exit_net": 9227.1048944023,
"total_value": 9227.8084131523,
"base_cost_quote": 1466.70020075,
"unrealized_pnl_exit_net": -529.3787195
},
{
"timestamp": "2025-12-23T23:59:00+00:00",
"base_asset_bal": 190.52,
"quote_asset_bal": 8285.3019541523,
"total_value_mid": 9224.5655541523,
"total_value_exit_net": 9223.8611064523,
"total_value": 9224.5655541523,
"base_cost_quote": 1471.74277985,
"unrealized_pnl_exit_net": -533.18362755
},
{
"timestamp": "2025-12-24T23:59:00+00:00",
"base_asset_bal": 184.5,
"quote_asset_bal": 8316.0681936523,
"total_value_mid": 9262.5531936523,
"total_value_exit_net": 9261.8433299023,
"total_value": 9262.5531936523,
"base_cost_quote": 1441.56336225,
"unrealized_pnl_exit_net": -495.788226
},
{
"timestamp": "2025-12-25T23:59:00+00:00",
"base_asset_bal": 190.5,
"quote_asset_bal": 8286.3243563523,
"total_value_mid": 9223.5843563523,
"total_value_exit_net": 9222.8814113523,
"total_value": 9223.5843563523,
"base_cost_quote": 1471.6901404,
"unrealized_pnl_exit_net": -535.1330854
},
{
"timestamp": "2025-12-26T23:59:00+00:00",
"base_asset_bal": 188.47,
"quote_asset_bal": 8296.6539820023,
"total_value_mid": 9235.2345820023,
"total_value_exit_net": 9234.5306465523,
"total_value": 9235.2345820023,
"base_cost_quote": 1461.6546194,
"unrealized_pnl_exit_net": -523.77795485
},
{
"timestamp": "2025-12-27T23:59:00+00:00",
"base_asset_bal": 184.48,
"quote_asset_bal": 8317.0293216022,
"total_value_mid": 9256.0325216023,
"total_value_exit_net": 9255.3282692023,
"total_value": 9256.0325216023,
"base_cost_quote": 1441.6015909,
"unrealized_pnl_exit_net": -503.3026433
},
{
"timestamp": "2025-12-28T23:59:00+00:00",
"base_asset_bal": 188.47,
"quote_asset_bal": 8297.0039008522,
"total_value_mid": 9245.0080008523,
"total_value_exit_net": 9244.2969977773,
"total_value": 9245.0080008523,
"base_cost_quote": 1461.7258728,
"unrealized_pnl_exit_net": -514.432775875
},
{
"timestamp": "2025-12-29T23:59:00+00:00",
"base_asset_bal": 191.51,
"quote_asset_bal": 8282.2044396022,
"total_value_mid": 9226.3487396023,
"total_value_exit_net": 9225.6406313773,
"total_value": 9226.3487396023,
"base_cost_quote": 1476.81538145,
"unrealized_pnl_exit_net": -533.379189675
},
{
"timestamp": "2025-12-30T23:59:00+00:00",
"base_asset_bal": 189.48,
"quote_asset_bal": 8292.5882839522,
"total_value_mid": 9232.4090839523,
"total_value_exit_net": 9231.7042183523,
"total_value": 9232.4090839523,
"base_cost_quote": 1466.73923,
"unrealized_pnl_exit_net": -527.6232956
},
{
"timestamp": "2025-12-31T23:59:00+00:00",
"base_asset_bal": 173.18,
"quote_asset_bal": 8387.5792647023,
"total_value_mid": 9315.8240647023,
"total_value_exit_net": 9315.1278811023,
"total_value": 9315.8240647023,
"base_cost_quote": 1376.1581451,
"unrealized_pnl_exit_net": -448.6095287
},
{
"timestamp": "2026-01-01T23:59:00+00:00",
"base_asset_bal": 165.17,
"quote_asset_bal": 8434.3010636023,
"total_value_mid": 9301.4435636023,
"total_value_exit_net": 9300.7932067273,
"total_value": 9301.4435636023,
"base_cost_quote": 1330.8557938,
"unrealized_pnl_exit_net": -464.363650675
},
{
"timestamp": "2026-01-02T23:59:00+00:00",
"base_asset_bal": 162.31,
"quote_asset_bal": 8450.1608750023,
"total_value_mid": 9312.0269750023,
"total_value_exit_net": 9311.3805754273,
"total_value": 9312.0269750023,
"base_cost_quote": 1315.75347555,
"unrealized_pnl_exit_net": -454.533775125
},
{
"timestamp": "2026-01-03T23:59:00+00:00",
"base_asset_bal": 164.2,
"quote_asset_bal": 8440.4433381773,
"total_value_mid": 9309.0613381773,
"total_value_exit_net": 9308.4098746773,
"total_value": 9309.0613381773,
"base_cost_quote": 1325.796702325,
"unrealized_pnl_exit_net": -457.830165825
},
{
"timestamp": "2026-01-04T23:59:00+00:00",
"base_asset_bal": 164.16,
"quote_asset_bal": 8440.9029321273,
"total_value_mid": 9315.8757321273,
"total_value_exit_net": 9315.2195025273,
"total_value": 9315.8757321273,
"base_cost_quote": 1325.771083125,
"unrealized_pnl_exit_net": -451.454512725
},
{
"timestamp": "2026-01-05T23:59:00+00:00",
"base_asset_bal": 161.33,
"quote_asset_bal": 8456.6401296773,
"total_value_mid": 9339.1152296773,
"total_value_exit_net": 9338.4533733523,
"total_value": 9339.1152296773,
"base_cost_quote": 1310.719202675,
"unrealized_pnl_exit_net": -428.905959
},
{
"timestamp": "2026-01-06T23:59:00+00:00",
"base_asset_bal": 162.17,
"quote_asset_bal": 8452.5164915523,
"total_value_mid": 9355.8033915523,
"total_value_exit_net": 9355.1259263773,
"total_value": 9355.8033915523,
"base_cost_quote": 1315.70103625,
"unrealized_pnl_exit_net": -413.091601425
},
{
"timestamp": "2026-01-07T23:59:00+00:00",
"base_asset_bal": 167.37,
"quote_asset_bal": 8423.6053158023,
"total_value_mid": 9365.8984158023,
"total_value_exit_net": 9365.1916959773,
"total_value": 9365.8984158023,
"base_cost_quote": 1345.9655176,
"unrealized_pnl_exit_net": -404.379137425
},
{
"timestamp": "2026-01-08T23:59:00+00:00",
"base_asset_bal": 171.04,
"quote_asset_bal": 8404.3679000023,
"total_value_mid": 9343.3775000024,
"total_value_exit_net": 9342.6732428024,
"total_value": 9343.3775000024,
"base_cost_quote": 1366.1150184,
"unrealized_pnl_exit_net": -427.8096756
},
{
"timestamp": "2026-01-09T23:59:00+00:00",
"base_asset_bal": 173.82,
"quote_asset_bal": 8389.7488680523,
"total_value_mid": 9331.8532680524,
"total_value_exit_net": 9331.1466897524,
"total_value": 9331.8532680524,
"base_cost_quote": 1381.2399536,
"unrealized_pnl_exit_net": -439.8421319
},
{
"timestamp": "2026-01-10T23:59:00+00:00",
"base_asset_bal": 168.4,
"quote_asset_bal": 8421.2540716273,
"total_value_mid": 9355.8740716274,
"total_value_exit_net": 9355.1731066274,
"total_value": 9355.8740716274,
"base_cost_quote": 1350.971969625,
"unrealized_pnl_exit_net": -417.052934625
},
{
"timestamp": "2026-01-11T23:59:00+00:00",
"base_asset_bal": 170.34,
"quote_asset_bal": 8411.4981088274,
"total_value_mid": 9333.0375088274,
"total_value_exit_net": 9332.3463542774,
"total_value": 9333.0375088274,
"base_cost_quote": 1361.040115075,
"unrealized_pnl_exit_net": -440.191869625
},
{
"timestamp": "2026-01-12T23:59:00+00:00",
"base_asset_bal": 173.16,
"quote_asset_bal": 8396.8093677524,
"total_value_mid": 9318.0205677524,
"total_value_exit_net": 9317.3296593524,
"total_value": 9318.0205677524,
"base_cost_quote": 1376.10950865,
"unrealized_pnl_exit_net": -455.58921705
},
{
"timestamp": "2026-01-13T23:59:00+00:00",
"base_asset_bal": 167.52,
"quote_asset_bal": 8427.4610454774,
"total_value_mid": 9355.5218454774,
"total_value_exit_net": 9354.8257998774,
"total_value": 9355.5218454774,
"base_cost_quote": 1345.949405525,
"unrealized_pnl_exit_net": -418.584651125
},
{
"timestamp": "2026-01-14T23:59:00+00:00",
"base_asset_bal": 162.99,
"quote_asset_bal": 8453.4237532274,
"total_value_mid": 9374.3172532274,
"total_value_exit_net": 9373.6265831024,
"total_value": 9374.3172532274,
"base_cost_quote": 1320.758126225,
"unrealized_pnl_exit_net": -400.55529635
},
{
"timestamp": "2026-01-15T23:59:00+00:00",
"base_asset_bal": 170.21,
"quote_asset_bal": 8413.7063589774,
"total_value_mid": 9346.4571589774,
"total_value_exit_net": 9345.7575958774,
"total_value": 9346.4571589774,
"base_cost_quote": 1360.990878175,
"unrealized_pnl_exit_net": -428.939641275
},
{
"timestamp": "2026-01-16T23:59:00+00:00",
"base_asset_bal": 167.49,
"quote_asset_bal": 8429.2045232024,
"total_value_mid": 9365.4736232024,
"total_value_exit_net": 9364.7714213774,
"total_value": 9365.4736232024,
"base_cost_quote": 1345.9290903,
"unrealized_pnl_exit_net": -410.362192125
},
{
"timestamp": "2026-01-17T23:59:00+00:00",
"base_asset_bal": 168.36,
"quote_asset_bal": 8424.4246753024,
"total_value_mid": 9363.8734753025,
"total_value_exit_net": 9363.1688887025,
"total_value": 9363.8734753025,
"base_cost_quote": 1350.95025335,
"unrealized_pnl_exit_net": -412.20603995
},
{
"timestamp": "2026-01-18T23:59:00+00:00",
"base_asset_bal": 170.33,
"quote_asset_bal": 8415.0257417024,
"total_value_mid": 9327.9945417025,
"total_value_exit_net": 9327.3098151025,
"total_value": 9327.9945417025,
"base_cost_quote": 1360.9911784,
"unrealized_pnl_exit_net": -448.707105
},
{
"timestamp": "2026-01-19T23:59:00+00:00",
"base_asset_bal": 174.24,
"quote_asset_bal": 8395.4509737024,
"total_value_mid": 9285.8173737025,
"total_value_exit_net": 9285.1495989025,
"total_value": 9285.8173737025,
"base_cost_quote": 1381.0926432,
"unrealized_pnl_exit_net": -491.394018
},
{
"timestamp": "2026-01-20T23:59:00+00:00",
"base_asset_bal": 184.47,
"quote_asset_bal": 8345.8471707024,
"total_value_mid": 9231.3031707025,
"total_value_exit_net": 9230.6390787025,
"total_value": 9231.3031707025,
"base_cost_quote": 1431.3555121,
"unrealized_pnl_exit_net": -546.5636041
},
{
"timestamp": "2026-01-21T23:59:00+00:00",
"base_asset_bal": 181.35,
"quote_asset_bal": 8361.4993431274,
"total_value_mid": 9250.1143431275,
"total_value_exit_net": 9249.4478818775,
"total_value": 9250.1143431275,
"base_cost_quote": 1416.303931875,
"unrealized_pnl_exit_net": -528.355393125
},
{
"timestamp": "2026-01-22T23:59:00+00:00",
"base_asset_bal": 186.51,
"quote_asset_bal": 8336.9439879524,
"total_value_mid": 9234.0570879525,
"total_value_exit_net": 9233.3842531275,
"total_value": 9234.0570879525,
"base_cost_quote": 1441.4302625,
"unrealized_pnl_exit_net": -544.989997325
},
{
"timestamp": "2026-01-23T23:59:00+00:00",
"base_asset_bal": 183.38,
"quote_asset_bal": 8352.4891090524,
"total_value_mid": 9243.7159090525,
"total_value_exit_net": 9243.0474889525,
"total_value": 9243.7159090525,
"base_cost_quote": 1426.3325477,
"unrealized_pnl_exit_net": -535.7741678
},
{
"timestamp": "2026-01-24T23:59:00+00:00",
"base_asset_bal": 174.25,
"quote_asset_bal": 8398.5170907024,
"total_value_mid": 9280.2220907025,
"total_value_exit_net": 9279.5608119525,
"total_value": 9280.2220907025,
"base_cost_quote": 1381.1134588,
"unrealized_pnl_exit_net": -500.06973755
},
{
"timestamp": "2026-01-25T23:59:00+00:00",
"base_asset_bal": 127.9,
"quote_asset_bal": 8715.3661635525,
"total_value_mid": 9791.0051635525,
"total_value_exit_net": 9790.1984343025,
"total_value": 9791.0051635525,
"base_cost_quote": 1068.55981925,
"unrealized_pnl_exit_net": 6.2724515001
},
{
"timestamp": "2026-01-26T23:59:00+00:00",
"base_asset_bal": 130.82,
"quote_asset_bal": 8700.1472098775,
"total_value_mid": 9584.4904098775,
"total_value_exit_net": 9583.8271524776,
"total_value": 9584.4904098775,
"base_cost_quote": 1088.720228225,
"unrealized_pnl_exit_net": -205.0402856249
},
{
"timestamp": "2026-01-27T23:59:00+00:00",
"base_asset_bal": 137.34,
"quote_asset_bal": 8662.8201141275,
"total_value_mid": 9508.8345141275,
"total_value_exit_net": 9508.2000033275,
"total_value": 9508.8345141275,
"base_cost_quote": 1129.060060425,
"unrealized_pnl_exit_net": -283.680171225
},
{
"timestamp": "2026-01-28T23:59:00+00:00",
"base_asset_bal": 141.32,
"quote_asset_bal": 8640.3310824524,
"total_value_mid": 9498.1434824525,
"total_value_exit_net": 9497.5001231525,
"total_value": 9498.1434824525,
"base_cost_quote": 1154.2694533,
"unrealized_pnl_exit_net": -297.1004126
},
{
"timestamp": "2026-01-29T23:59:00+00:00",
"base_asset_bal": 145.78,
"quote_asset_bal": 8617.4534836525,
"total_value_mid": 9452.7728836525,
"total_value_exit_net": 9452.1463941025,
"total_value": 9452.7728836525,
"base_cost_quote": 1179.507968,
"unrealized_pnl_exit_net": -344.81505755
},
{
"timestamp": "2026-01-30T23:59:00+00:00",
"base_asset_bal": 133.28,
"quote_asset_bal": 8696.2296460775,
"total_value_mid": 9478.5832460775,
"total_value_exit_net": 9477.9964808775,
"total_value": 9478.5832460775,
"base_cost_quote": 1103.931227925,
"unrealized_pnl_exit_net": -322.164393125
},
{
"timestamp": "2026-01-31T23:59:00+00:00",
"base_asset_bal": 163.07,
"quote_asset_bal": 8537.0984964775,
"total_value_mid": 9358.9712964775,
"total_value_exit_net": 9358.3548918775,
"total_value": 9358.9712964775,
"base_cost_quote": 1265.057181825,
"unrealized_pnl_exit_net": -443.800786425
},
{
"timestamp": "2026-02-01T23:59:00+00:00",
"base_asset_bal": 188.6,
"quote_asset_bal": 8418.7393192525,
"total_value_mid": 9258.0093192525,
"total_value_exit_net": 9257.3798667525,
"total_value": 9258.0093192525,
"base_cost_quote": 1385.71630835,
"unrealized_pnl_exit_net": -547.07576085
},
{
"timestamp": "2026-02-02T23:59:00+00:00",
"base_asset_bal": 142.21,
"quote_asset_bal": 8661.1529212275,
"total_value_mid": 9400.6449212275,
"total_value_exit_net": 9400.0903022275,
"total_value": 9400.6449212275,
"base_cost_quote": 1149.208360325,
"unrealized_pnl_exit_net": -410.270979325
},
{
"timestamp": "2026-02-03T23:59:00+00:00",
"base_asset_bal": 149.08,
"quote_asset_bal": 8629.9849526275,
"total_value_mid": 9387.3113526276,
"total_value_exit_net": 9386.7433578276,
"total_value": 9387.3113526276,
"base_cost_quote": 1184.362706325,
"unrealized_pnl_exit_net": -427.604301125
},
{
"timestamp": "2026-02-04T23:59:00+00:00",
"base_asset_bal": 142.73,
"quote_asset_bal": 8667.6003451525,
"total_value_mid": 9381.2503451526,
"total_value_exit_net": 9380.7151076526,
"total_value": 9381.2503451526,
"base_cost_quote": 1149.10458255,
"unrealized_pnl_exit_net": -435.98982005
},
{
"timestamp": "2026-02-05T23:59:00+00:00",
"base_asset_bal": 166.7,
"quote_asset_bal": 8559.6408553525,
"total_value_mid": 9289.7868553526,
"total_value_exit_net": 9289.2392458526,
"total_value": 9289.7868553526,
"base_cost_quote": 1259.79153555,
"unrealized_pnl_exit_net": -530.19314505
},
{
"timestamp": "2026-02-06T23:59:00+00:00",
"base_asset_bal": 142.89,
"quote_asset_bal": 8676.5361148025,
"total_value_mid": 9366.6948148026,
"total_value_exit_net": 9366.1771957776,
"total_value": 9366.6948148026,
"base_cost_quote": 1144.05679955,
"unrealized_pnl_exit_net": -454.415718575
},
{
"timestamp": "2026-02-07T23:59:00+00:00",
"base_asset_bal": 141.85,
"quote_asset_bal": 8683.2517109525,
"total_value_mid": 9362.7132109526,
"total_value_exit_net": 9362.2036148276,
"total_value": 9362.7132109526,
"base_cost_quote": 1139.02422795,
"unrealized_pnl_exit_net": -460.072324075
},
{
"timestamp": "2026-02-08T23:59:00+00:00",
"base_asset_bal": 146.84,
"quote_asset_bal": 8659.8499546025,
"total_value_mid": 9366.1503546026,
"total_value_exit_net": 9365.6206293026,
"total_value": 9366.1503546026,
"base_cost_quote": 1164.1888873,
"unrealized_pnl_exit_net": -458.4182126
},
{
"timestamp": "2026-02-09T23:59:00+00:00",
"base_asset_bal": 139.63,
"quote_asset_bal": 8696.3684318026,
"total_value_mid": 9387.5369318026,
"total_value_exit_net": 9387.0185554276,
"total_value": 9387.5369318026,
"base_cost_quote": 1128.9797002,
"unrealized_pnl_exit_net": -438.329576575
},
{
"timestamp": "2026-02-10T23:59:00+00:00",
"base_asset_bal": 146.68,
"quote_asset_bal": 8662.8424992275,
"total_value_mid": 9383.0412992276,
"total_value_exit_net": 9382.5011501276,
"total_value": 9383.0412992276,
"base_cost_quote": 1164.246630575,
"unrealized_pnl_exit_net": -444.587979675
},
{
"timestamp": "2026-02-11T23:59:00+00:00",
"base_asset_bal": 142.6,
"quote_asset_bal": 8684.1079738776,
"total_value_mid": 9389.9779738776,
"total_value_exit_net": 9389.4485713776,
"total_value": 9389.9779738776,
"base_cost_quote": 1144.097530075,
"unrealized_pnl_exit_net": -438.756932575
},
{
"timestamp": "2026-02-12T23:59:00+00:00",
"base_asset_bal": 138.58,
"quote_asset_bal": 8705.3137086025,
"total_value_mid": 9406.5285086026,
"total_value_exit_net": 9406.0025975026,
"total_value": 9406.5285086026,
"base_cost_quote": 1123.93131675,
"unrealized_pnl_exit_net": -423.24242785
},
{
"timestamp": "2026-02-13T23:59:00+00:00",
"base_asset_bal": 138.34,
"quote_asset_bal": 8707.7674406026,
"total_value_mid": 9440.9694406026,
"total_value_exit_net": 9440.4195391026,
"total_value": 9440.9694406026,
"base_cost_quote": 1123.9227103,
"unrealized_pnl_exit_net": -391.2706118
},
{
"timestamp": "2026-02-14T23:59:00+00:00",
"base_asset_bal": 139.23,
"quote_asset_bal": 8703.9007150776,
"total_value_mid": 9459.9196150776,
"total_value_exit_net": 9459.3526009026,
"total_value": 9459.9196150776,
"base_cost_quote": 1129.018028925,
"unrealized_pnl_exit_net": -373.5661431
},
{
"timestamp": "2026-02-15T23:59:00+00:00",
"base_asset_bal": 143.94,
"quote_asset_bal": 8679.7313273276,
"total_value_mid": 9435.4163273276,
"total_value_exit_net": 9434.8495635776,
"total_value": 9435.4163273276,
"base_cost_quote": 1154.151264725,
"unrealized_pnl_exit_net": -399.033028475
},
{
"timestamp": "2026-02-16T23:59:00+00:00",
"base_asset_bal": 142.98,
"quote_asset_bal": 8685.3785593276,
"total_value_mid": 9443.1725593276,
"total_value_exit_net": 9442.6042138276,
"total_value": 9443.1725593276,
"base_cost_quote": 1149.107484725,
"unrealized_pnl_exit_net": -391.881830225
},
{
"timestamp": "2026-02-17T23:59:00+00:00",
"base_asset_bal": 146.81,
"quote_asset_bal": 8665.7435222775,
"total_value_mid": 9430.6236222776,
"total_value_exit_net": 9430.0499622026,
"total_value": 9430.6236222776,
"base_cost_quote": 1169.210750875,
"unrealized_pnl_exit_net": -404.90431095
},
{
"timestamp": "2026-02-18T23:59:00+00:00",
"base_asset_bal": 150.87,
"quote_asset_bal": 8646.3676062025,
"total_value_mid": 9406.7524062026,
"total_value_exit_net": 9406.1821176026,
"total_value": 9406.7524062026,
"base_cost_quote": 1189.3177198,
"unrealized_pnl_exit_net": -429.5032084
},
{
"timestamp": "2026-02-19T23:59:00+00:00",
"base_asset_bal": 150.91,
"quote_asset_bal": 8646.9248466525,
"total_value_mid": 9407.5112466526,
"total_value_exit_net": 9406.9408068526,
"total_value": 9407.5112466526,
"base_cost_quote": 1189.3409372,
"unrealized_pnl_exit_net": -429.324977
},
{
"timestamp": "2026-02-20T23:59:00+00:00",
"base_asset_bal": 148.92,
"quote_asset_bal": 8657.6468792275,
"total_value_mid": 9420.1172792276,
"total_value_exit_net": 9419.5454264276,
"total_value": 9420.1172792276,
"base_cost_quote": 1179.274092725,
"unrealized_pnl_exit_net": -417.375545525
},
{
"timestamp": "2026-02-21T23:59:00+00:00",
"base_asset_bal": 152.9,
"quote_asset_bal": 8637.6849571275,
"total_value_mid": 9405.2429571275,
"total_value_exit_net": 9404.6672886275,
"total_value": 9405.2429571275,
"base_cost_quote": 1199.417789175,
"unrealized_pnl_exit_net": -432.435457675
},
{
"timestamp": "2026-02-22T23:59:00+00:00",
"base_asset_bal": 153.93,
"quote_asset_bal": 8633.0405926025,
"total_value_mid": 9396.5333926025,
"total_value_exit_net": 9395.9607730025,
"total_value": 9396.5333926025,
"base_cost_quote": 1204.3918169,
"unrealized_pnl_exit_net": -441.4716365
},
{
"timestamp": "2026-02-23T23:59:00+00:00",
"base_asset_bal": 160.13,
"quote_asset_bal": 8603.5637705025,
"total_value_mid": 9373.7890705026,
"total_value_exit_net": 9373.2114015276,
"total_value": 9373.7890705026,
"base_cost_quote": 1234.5648297,
"unrealized_pnl_exit_net": -464.917198675
},
{
"timestamp": "2026-02-24T23:59:00+00:00",
"base_asset_bal": 159.1,
"quote_asset_bal": 8608.9915648025,
"total_value_mid": 9379.0355648026,
"total_value_exit_net": 9378.4580318026,
"total_value": 9379.0355648026,
"base_cost_quote": 1229.54326635,
"unrealized_pnl_exit_net": -460.07679935
},
{
"timestamp": "2026-02-25T23:59:00+00:00",
"base_asset_bal": 152.93,
"quote_asset_bal": 8639.8407249275,
"total_value_mid": 9407.5493249276,
"total_value_exit_net": 9406.9735434776,
"total_value": 9407.5493249276,
"base_cost_quote": 1199.380361125,
"unrealized_pnl_exit_net": -432.247542575
}
]
trades.json payload is intentionally not embedded in this report (deprecated). The CSV attachment below is a 100-row audit sample of the full ledger, not the complete trade list - fetch the canonical full population (124,175 closed trades) via GET /backtests/d5be7668-7735-4a5a-8a58-327ff1cf19c7/trades (paginate through all pages).100-row audit sample from 124,175 closed trades (RFC 4180 CSV)
100-row audit sample from 124,175 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-24T00:06:00Z,2024-04-24T00:49:00Z,18.64,18.69,0.27,,,0.005940675,0.1180391631,0.0037746,0.003784725,,,TP
,,2024-04-24T00:07:00Z,2024-04-24T00:37:00Z,18.62,18.67,0.27,,,0.005948775,0.1183270677,0.00377055,0.003780675,,,TP
,,2024-04-24T00:10:00Z,2024-04-24T00:37:00Z,18.59,18.64,0.27,,,0.005960925,0.1187600861,0.003764475,0.0037746,,,TP
,,2024-04-24T00:15:00Z,2024-04-24T00:55:00Z,18.53,18.58,0.27,,,0.005985225,0.1196303292,0.003752325,0.00376245,,,TP
,,2024-04-24T00:17:00Z,2024-04-24T00:34:00Z,18.51,18.56,0.28,,,0.0062153,0.119921664,0.0038871,0.0038976,,,TP
,,2024-04-24T00:19:00Z,2024-04-24T00:31:00Z,18.45,18.5,0.28,,,0.0062405,0.120799458,0.0038745,0.003885,,,TP
,,2024-04-24T00:19:00Z,2024-04-24T02:31:00Z,18.43,18.48,0.28,,,0.0062489,0.1210933261,0.0038703,0.0038808,,,TP
,,2024-04-24T00:22:00Z,2024-04-24T00:28:00Z,18.41,18.46,0.28,,,0.0062573,0.1213878327,0.0038661,0.0038766,,,TP
,,2024-04-24T00:24:00Z,2024-04-24T00:27:00Z,18.37,18.42,0.28,,,0.0062741,0.1219787697,0.0038577,0.0038682,,,TP
,,2024-04-24T00:35:00Z,2024-04-24T00:36:00Z,18.55,18.6,0.27,,,0.005977125,0.1193396226,0.003756375,0.0037665,,,TP
,,2024-04-24T00:35:00Z,2024-04-24T00:37:00Z,18.57,18.62,0.27,,,0.005969025,0.1190495423,0.003760425,0.00377055,,,TP
,,2024-04-24T00:39:00Z,2024-04-24T00:49:00Z,18.62,18.67,0.27,,,0.005948775,0.1183270677,0.00377055,0.003780675,,,TP
,,2024-04-24T00:41:00Z,2024-04-24T00:49:00Z,18.6,18.65,0.27,,,0.005956875,0.1186155914,0.0037665,0.003776625,,,TP
,,2024-04-24T00:50:00Z,2024-04-24T01:04:00Z,18.67,18.72,0.27,,,0.005928525,0.1176084628,0.003780675,0.0037908,,,TP
,,2024-04-24T00:53:00Z,2024-04-24T01:03:00Z,18.65,18.7,0.27,,,0.005936625,0.1178954424,0.003776625,0.00378675,,,TP
,,2024-04-24T00:54:00Z,2024-04-24T02:07:00Z,18.6,18.65,0.27,,,0.005956875,0.1186155914,0.0037665,0.003776625,,,TP
,,2024-04-24T00:58:00Z,2024-04-24T01:02:00Z,18.62,18.67,0.27,,,0.005948775,0.1183270677,0.00377055,0.003780675,,,TP
,,2024-04-24T01:06:00Z,2024-04-24T01:06:00Z,18.71,18.76,0.27,,,0.005912325,0.1170363442,0.003788775,0.0037989,,,TP
,,2024-04-24T01:07:00Z,2024-04-24T01:30:00Z,18.76,18.81,0.27,,,0.005892075,0.1163246269,0.0037989,0.003809025,,,TP
,,2024-04-24T01:09:00Z,2024-04-24T01:11:00Z,18.71,18.76,0.27,,,0.005912325,0.1170363442,0.003788775,0.0037989,,,TP
,,2024-04-24T01:13:00Z,2024-04-24T01:19:00Z,18.71,18.76,0.27,,,0.005912325,0.1170363442,0.003788775,0.0037989,,,TP
,,2024-04-24T01:15:00Z,2024-04-24T01:17:00Z,18.69,18.74,0.27,,,0.005920425,0.1173220974,0.003784725,0.00379485,,,TP
,,2024-04-24T01:21:00Z,2024-04-24T01:24:00Z,18.74,18.79,0.27,,,0.005900175,0.1166088581,0.00379485,0.003804975,,,TP
,,2024-04-24T01:24:00Z,2024-04-24T05:15:00Z,18.78,18.83,0.27,,,0.005883975,0.1160410011,0.00380295,0.003813075,,,TP
,,2024-04-24T01:30:00Z,2024-04-24T04:47:00Z,18.8,18.85,0.27,,,0.005875875,0.1157579787,0.003807,0.003817125,,,TP
,,2024-06-09T02:58:00Z,2024-06-09T03:00:00Z,20,20.05,0.25,,,0.004990625,0.0998125,0.00375,0.003759375,,,TP
,,2024-06-10T07:35:00Z,2024-06-11T01:52:00Z,20,20.05,0.25,,,0.004990625,0.0998125,0.00375,0.003759375,,,TP
,,2024-06-11T15:28:00Z,2024-06-11T16:07:00Z,20,20.05,0.25,,,0.004990625,0.0998125,0.00375,0.003759375,,,TP
,,2024-06-12T08:23:00Z,2024-06-12T12:30:00Z,20,20.05,0.25,,,0.004990625,0.0998125,0.00375,0.003759375,,,TP
,,2024-06-14T16:36:00Z,2024-06-14T16:36:00Z,20,20.05,0.25,,,0.004990625,0.0998125,0.00375,0.003759375,,,TP
,,2024-06-14T16:52:00Z,2024-06-15T05:44:00Z,20,20.05,0.25,,,0.004990625,0.0998125,0.00375,0.003759375,,,TP
,,2024-06-17T20:56:00Z,2024-06-17T20:58:00Z,20,20.05,0.25,,,0.004990625,0.0998125,0.00375,0.003759375,,,TP
,,2024-06-17T22:20:00Z,2024-06-17T22:23:00Z,20,20.05,0.25,,,0.004990625,0.0998125,0.00375,0.003759375,,,TP
,,2024-06-17T22:54:00Z,2024-06-17T22:55:00Z,20,20.05,0.25,,,0.004990625,0.0998125,0.00375,0.003759375,,,TP
,,2024-08-21T01:10:00Z,2024-08-21T01:18:00Z,20,20.05,0.25,,,0.004990625,0.0998125,0.00375,0.003759375,,,TP
,,2024-12-01T14:08:00Z,2024-12-01T14:10:00Z,20,20.05,0.25,,,0.004990625,0.0998125,0.00375,0.003759375,,,TP
,,2024-12-01T15:02:00Z,2024-12-01T15:03:00Z,20,20.05,0.25,,,0.004990625,0.0998125,0.00375,0.003759375,,,TP
,,2024-12-04T18:31:00Z,2024-12-04T18:39:00Z,20,20.05,0.25,,,0.004990625,0.0998125,0.00375,0.003759375,,,TP
,,2024-12-05T11:19:00Z,2024-12-05T11:19:00Z,20,20.05,0.25,,,0.004990625,0.0998125,0.00375,0.003759375,,,TP
,,2024-12-05T12:09:00Z,2024-12-05T12:28:00Z,20,20.05,0.25,,,0.004990625,0.0998125,0.00375,0.003759375,,,TP
,,2024-12-05T20:47:00Z,2024-12-05T20:48:00Z,20,20.05,0.25,,,0.004990625,0.0998125,0.00375,0.003759375,,,TP
,,2024-12-08T17:10:00Z,2024-12-08T17:13:00Z,20,20.05,0.25,,,0.004990625,0.0998125,0.00375,0.003759375,,,TP
,,2024-12-13T19:00:00Z,2024-12-13T19:06:00Z,20,20.05,0.25,,,0.004990625,0.0998125,0.00375,0.003759375,,,TP
,,2024-12-14T10:10:00Z,2024-12-14T10:11:00Z,20,20.05,0.25,,,0.004990625,0.0998125,0.00375,0.003759375,,,TP
,,2024-12-14T15:00:00Z,2024-12-14T15:00:00Z,20,20.05,0.25,,,0.004990625,0.0998125,0.00375,0.003759375,,,TP
,,2024-12-14T15:34:00Z,2024-12-14T15:41:00Z,20,20.05,0.25,,,0.004990625,0.0998125,0.00375,0.003759375,,,TP
,,2024-12-14T22:09:00Z,2024-12-15T02:19:00Z,20,20.05,0.25,,,0.004990625,0.0998125,0.00375,0.003759375,,,TP
,,2024-12-17T02:27:00Z,2024-12-17T02:28:00Z,20,20.05,0.25,,,0.004990625,0.0998125,0.00375,0.003759375,,,TP
,,2024-12-21T01:06:00Z,2024-12-21T01:08:00Z,20,20.05,0.25,,,0.004990625,0.0998125,0.00375,0.003759375,,,TP
,,2024-12-21T08:05:00Z,2024-12-21T08:05:00Z,20,20.05,0.25,,,0.004990625,0.0998125,0.00375,0.003759375,,,TP
,,2025-10-10T21:37:00Z,2025-10-10T21:37:00Z,4.12,4.14,1.22,,,0.0168421,0.3350728155,0.0037698,0.0037881,,,TP
,,2025-10-10T21:40:00Z,2026-02-06T00:14:00Z,4.02,4.04,1.25,,,0.01744375,0.3471393035,0.00376875,0.0037875,,,TP
,,2026-02-02T03:35:00Z,2026-02-02T03:36:00Z,4.3,4.32,1.17,,,0.0157006,0.3147674419,0.00377325,0.0037584,,,TP
,,2026-02-02T03:38:00Z,2026-02-02T03:43:00Z,4.29,4.31,1.17,,,0.015718,0.3158508159,0.003764475,0.0037497,,,TP
,,2026-02-02T03:45:00Z,2026-02-02T03:46:00Z,4.3,4.32,1.17,,,0.0157006,0.3147674419,0.00377325,0.0037584,,,TP
,,2026-02-06T00:05:00Z,2026-02-06T00:37:00Z,4.29,4.31,1.17,,,0.015718,0.3158508159,0.003764475,0.0037497,,,TP
,,2026-02-06T00:08:00Z,2026-02-06T00:35:00Z,4.27,4.29,1.18,,,0.0158886,0.3180327869,0.00377895,0.003764475,,,TP
,,2026-02-06T00:10:00Z,2026-02-06T00:34:00Z,4.23,4.25,1.19,,,0.0160952,0.3224586288,0.003775275,0.00376125,,,TP
,,2026-02-06T00:10:00Z,2026-02-06T00:35:00Z,4.25,4.27,1.18,,,0.0159237,0.3202352941,0.00376125,0.003746925,,,TP
,,2026-02-06T00:12:00Z,2026-02-06T00:12:00Z,4.2,4.22,1.2,,,0.016422,0.3258333333,0.00378,0.003798,,,TP
,,2026-02-06T00:12:00Z,2026-02-06T00:31:00Z,4.2,4.22,1.2,,,0.016422,0.3258333333,0.00378,0.003798,,,TP
,,2026-02-06T00:14:00Z,2026-02-06T00:14:00Z,4.09,4.11,1.23,,,0.0170355,0.3386308068,0.003773025,0.003791475,,,TP
,,2026-02-06T00:15:00Z,2026-02-06T00:15:00Z,4.02,4.04,1.25,,,0.01744375,0.3471393035,0.00376875,0.0037875,,,TP
,,2026-02-06T00:16:00Z,2026-02-06T00:16:00Z,4.02,4.04,1.25,,,0.01744375,0.3471393035,0.00376875,0.0037875,,,TP
,,2026-02-06T00:18:00Z,2026-02-06T00:18:00Z,4.07,4.09,1.23,,,0.0170724,0.341031941,0.003754575,0.003773025,,,TP
,,2026-02-06T00:19:00Z,2026-02-06T00:19:00Z,4.04,4.06,1.24,,,0.017267,0.3446782178,0.0037572,0.0037758,,,TP
,,2026-02-06T00:23:00Z,2026-02-06T00:23:00Z,4.07,4.09,1.23,,,0.0170724,0.341031941,0.003754575,0.003773025,,,TP
,,2026-02-06T00:25:00Z,2026-02-06T00:26:00Z,4.09,4.11,1.23,,,0.0170355,0.3386308068,0.003773025,0.003791475,,,TP
,,2026-02-06T00:26:00Z,2026-02-06T00:26:00Z,4.12,4.14,1.22,,,0.0168421,0.3350728155,0.0037698,0.0037881,,,TP
,,2026-02-06T00:32:00Z,2026-02-06T00:33:00Z,4.19,4.21,1.2,,,0.01644,0.3269689737,0.003771,0.003789,,,TP
,,2026-02-06T00:43:00Z,2026-02-06T00:44:00Z,4.3,4.32,1.17,,,0.0157006,0.3147674419,0.00377325,0.0037584,,,TP
,,2026-02-06T01:01:00Z,2026-02-06T01:01:00Z,4.27,4.29,1.18,,,0.0158886,0.3180327869,0.00377895,0.003764475,,,TP
,,2026-02-06T01:02:00Z,2026-02-06T01:03:00Z,4.27,4.29,1.18,,,0.0158886,0.3180327869,0.00377895,0.003764475,,,TP
,,2026-02-06T03:11:00Z,2026-02-06T03:24:00Z,4.29,4.31,1.17,,,0.015718,0.3158508159,0.003764475,0.0037497,,,TP
,,2026-02-06T04:02:00Z,2026-02-06T04:06:00Z,4.3,4.32,1.17,,,0.0157006,0.3147674419,0.00377325,0.0037584,,,TP
,,2026-02-22T09:16:00Z,2026-02-25T15:00:00Z,5,5.02,1,,,0.012485,0.2497,0.00375,0.003765,,,TP
,,2026-02-22T10:46:00Z,2026-02-25T18:28:00Z,5.07,5.09,0.99,,,0.0122562,0.2441814596,0.003764475,0.003779325,,,TP
,,2026-02-22T11:02:00Z,2026-02-25T16:58:00Z,5.05,5.07,1,,,0.01241,0.2457425743,0.0037875,0.0038025,,,TP
,,2026-02-25T14:35:00Z,2026-02-25T14:43:00Z,4.96,4.98,1.01,,,0.01267045,0.2529233871,0.0037572,0.00377235,,,TP
,,2026-02-25T14:46:00Z,2026-02-25T14:47:00Z,4.98,5,1.01,,,0.01264015,0.2513052209,0.00377235,0.0037875,,,TP
,,2026-02-25T14:48:00Z,2026-02-25T14:49:00Z,4.98,5,1.01,,,0.01264015,0.2513052209,0.00377235,0.0037875,,,TP
,,2026-02-25T15:00:00Z,2026-02-25T16:25:00Z,5.02,5.04,1,,,0.012455,0.2481075697,0.003765,0.00378,,,TP
,,2026-02-25T15:06:00Z,2026-02-25T15:07:00Z,4.99,5.01,1.01,,,0.012625,0.250501002,0.003779925,0.003795075,,,TP
,,2026-02-25T15:09:00Z,2026-02-25T15:32:00Z,4.99,5.01,1.01,,,0.012625,0.250501002,0.003779925,0.003795075,,,TP
,,2026-02-25T15:23:00Z,2026-02-25T15:23:00Z,4.96,4.98,1.01,,,0.01267045,0.2529233871,0.0037572,0.00377235,,,TP
,,2026-02-25T15:33:00Z,2026-02-25T16:13:00Z,5,5.02,1,,,0.012485,0.2497,0.00375,0.003765,,,TP
,,2026-02-25T15:57:00Z,2026-02-25T15:58:00Z,4.98,5,1.01,,,0.01264015,0.2513052209,0.00377235,0.0037875,,,TP
,,2026-02-25T16:32:00Z,2026-02-25T16:35:00Z,5.03,5.05,1,,,0.01244,0.2473161034,0.0037725,0.0037875,,,TP
,,2026-02-25T16:46:00Z,2026-02-25T16:50:00Z,5.03,5.05,1,,,0.01244,0.2473161034,0.0037725,0.0037875,,,TP
,,2026-02-25T17:03:00Z,2026-02-25T17:12:00Z,5.05,5.07,1,,,0.01241,0.2457425743,0.0037875,0.0038025,,,TP
,,2026-02-25T17:18:00Z,2026-02-25T17:29:00Z,5.05,5.07,1,,,0.01241,0.2457425743,0.0037875,0.0038025,,,TP
,,2026-02-25T17:54:00Z,2026-02-25T18:15:00Z,5.05,5.07,1,,,0.01241,0.2457425743,0.0037875,0.0038025,,,TP
,,2026-02-25T18:30:00Z,2026-02-25T21:36:00Z,5.08,5.1,0.99,,,0.01224135,0.2434055118,0.0037719,0.00378675,,,TP
,,2026-02-25T19:31:00Z,2026-02-25T20:02:00Z,5.06,5.08,0.99,,,0.01227105,0.2449604743,0.00375705,0.0037719,,,TP
,,2026-02-25T20:03:00Z,2026-02-25T20:32:00Z,5.06,5.08,0.99,,,0.01227105,0.2449604743,0.00375705,0.0037719,,,TP
,,2026-02-25T21:15:00Z,2026-02-25T21:31:00Z,5.05,5.07,1,,,0.01241,0.2457425743,0.0037875,0.0038025,,,TP
,,2026-02-25T21:31:00Z,2026-02-25T21:34:00Z,5.06,5.08,0.99,,,0.01227105,0.2449604743,0.00375705,0.0037719,,,TP
,,2026-02-25T22:50:00Z,2026-02-25T23:05:00Z,5.05,5.07,1,,,0.01241,0.2457425743,0.0037875,0.0038025,,,TP
,,2026-02-25T23:40:00Z,2026-02-25T23:52:00Z,4.98,5,1.01,,,0.01264015,0.2513052209,0.00377235,0.0037875,,,TP
,,2026-02-25T23:42:00Z,2026-02-25T23:50:00Z,4.96,4.98,1.01,,,0.01267045,0.2529233871,0.0037572,0.00377235,,,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 AUCTIONUSDT?
Did it beat Buy & Hold of AUCTIONUSDT?
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 AUCTIONUSDT (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: 9,406.97 USDT
P&L: -593.03 USDT (-5.93%)
Result: LOSS
Completed trades: 124175
Open orders at end: 235
Win rate: 100.0%
Avg. profit/trade: 0.007171 USDT
Best trade: 0.017444 USDT
Worst trade: 0.004991 USDT
Total profit (trades only): 890.406284 USDT
Max drawdown: -27.47%
Profit factor: inf (no losing trades)
Sharpe ratio: -0.11
Total fees: 945.92 USDT
Avg hold time: 14.6h
TP / SL / TSL: 124175 / 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: 586.6s
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":"AUCTIONUSDT","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.01,"stopLoss":false,"tickSize":0.01,"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 34 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": "AUCTIONUSDT LongTimeLong Backtest",
"alternateName": "AUCTIONUSDT-3LongTimeLong.json-d5be7668-7735-4a5a-8a58-327ff1cf19c7",
"description": "Backtest of the LongTimeLong strategy on AUCTIONUSDT: -5.93% return over 2024-04-24 to 2026-02-25.",
"identifier": "d5be7668-7735-4a5a-8a58-327ff1cf19c7",
"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": [
"AUCTIONUSDT",
"LongTimeLong",
"crypto backtest",
"trading strategy",
"quantitative finance",
"algorithmic trading"
],
"about": [
{
"@type": "Thing",
"name": "AUCTIONUSDT",
"description": "Trading pair: AUCTIONUSDT"
},
{
"@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": -5.9303,
"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": 890.4062841,
"unitText": "USDT",
"description": "Total realized profit in quote currency"
},
{
"@type": "PropertyValue",
"name": "Final Portfolio Value",
"value": 9406.97354348,
"unitText": "USDT"
},
{
"@type": "PropertyValue",
"name": "Initial Capital",
"value": 10000,
"unitText": "USDT"
},
{
"@type": "PropertyValue",
"name": "Fulfilled Trades",
"value": 124175,
"unitText": "trades",
"minValue": 0
},
{
"@type": "PropertyValue",
"name": "Active Orders",
"value": 235,
"unitText": "orders",
"description": "Open positions still pending exit at end of window",
"minValue": 0
},
{
"@type": "PropertyValue",
"name": "Best Trade Profit",
"value": 0.01744375,
"unitText": "USDT"
},
{
"@type": "PropertyValue",
"name": "Worst Trade Profit",
"value": 0.00499063,
"unitText": "USDT"
},
{
"@type": "PropertyValue",
"name": "Average Trade Profit",
"value": 0.00717058,
"unitText": "USDT"
},
{
"@type": "PropertyValue",
"name": "Engine Elapsed Time",
"value": 586.63,
"unitText": "seconds",
"unitCode": "SEC",
"minValue": 0
},
{
"@type": "PropertyValue",
"name": "CAGR",
"value": -3.2681883054839878,
"unitText": "%",
"unitCode": "P1",
"description": "Compound Annual Growth Rate"
},
{
"@type": "PropertyValue",
"name": "Max Drawdown",
"value": -27.46918694967938,
"unitText": "%",
"unitCode": "P1",
"description": "Largest peak-to-trough decline of equity (negative)",
"maxValue": 0
},
{
"@type": "PropertyValue",
"name": "Max Drawdown (absolute)",
"value": -3465.8754292742997,
"unitText": "USDT",
"maxValue": 0
},
{
"@type": "PropertyValue",
"name": "Drawdown Duration",
"value": 272,
"unitText": "days",
"minValue": 0
},
{
"@type": "PropertyValue",
"name": "Sharpe Ratio (annualized)",
"value": -0.10966246036424768,
"description": "Mean / std of daily returns x 365"
},
{
"@type": "PropertyValue",
"name": "Sortino Ratio (annualized)",
"value": -0.10353181860735179,
"description": "Like Sharpe but only penalizes downside volatility"
},
{
"@type": "PropertyValue",
"name": "Volatility (annualized)",
"value": 16.849630405289698,
"unitText": "%",
"unitCode": "P1",
"minValue": 0
},
{
"@type": "PropertyValue",
"name": "Time in Market",
"value": 100,
"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.00996990425,
"unitText": "USDT"
},
{
"@type": "PropertyValue",
"name": "Average Win",
"value": 0.00996990425,
"unitText": "USDT"
},
{
"@type": "PropertyValue",
"name": "Average Loss",
"value": 0,
"unitText": "USDT"
},
{
"@type": "PropertyValue",
"name": "Median Trade Profit",
"value": 0.009257725,
"unitText": "USDT"
},
{
"@type": "PropertyValue",
"name": "Gross Profit",
"value": 0.9969904249999999,
"unitText": "USDT",
"minValue": 0
},
{
"@type": "PropertyValue",
"name": "Gross Loss",
"value": 0,
"unitText": "USDT",
"maxValue": 0
},
{
"@type": "PropertyValue",
"name": "Total Fees Paid",
"value": 0.7552947749999999,
"unitText": "USDT",
"minValue": 0
},
{
"@type": "PropertyValue",
"name": "Total Volume Traded",
"value": 1007.5757000000001,
"unitText": "USDT",
"minValue": 0
},
{
"@type": "PropertyValue",
"name": "Longest Winning Streak",
"value": 100,
"unitText": "trades",
"minValue": 0
},
{
"@type": "PropertyValue",
"name": "Longest Losing Streak",
"value": 0,
"unitText": "trades",
"minValue": 0
},
{
"@type": "PropertyValue",
"name": "Median Holding Time",
"value": 0.14166666666666666,
"unitText": "hours",
"minValue": 0
},
{
"@type": "PropertyValue",
"name": "Mean Holding Time",
"value": 37.346626984127,
"unitText": "hours",
"minValue": 0
},
{
"@type": "PropertyValue",
"name": "Trades per Month",
"value": 5615.665239882004,
"unitText": "trades/month",
"minValue": 0
}
],
"dateCreated": "2026-05-08T13:39:09.791Z",
"dateModified": "2026-05-15T13:01:01.820Z",
"temporalCoverage": "2024-04-23T22:00:01.000Z/2026-02-25T22:59:59.000Z"
}
[!] Disclaimer
Backtester: uncoded.ch/backtesting * Generated 2026-05-15 13:01:01 UTC