home / defi

daily_entries

1 row where position_id = 14

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: date (date)

id ▼ position_id date daily_yield_usd rebalances notes exited_pool position_value_usd
152 14 14 2026-02-22 40.07 0   1 0.0

Advanced export

JSON shape: default, array, newline-delimited, object

CSV options:

CREATE TABLE daily_entries (
            id INTEGER PRIMARY KEY AUTOINCREMENT,
            position_id INTEGER NOT NULL,
            date DATE NOT NULL,
            daily_yield_usd REAL NOT NULL DEFAULT 0,
            rebalances INTEGER NOT NULL DEFAULT 0,
            notes TEXT, exited_pool INTEGER NOT NULL DEFAULT 0, position_value_usd REAL DEFAULT 0,
            FOREIGN KEY (position_id) REFERENCES positions(id),
            UNIQUE(position_id, date)
        );
Powered by Datasette · Queries took 7.803ms