home / defi

weekly_summaries

✎ View and edit SQL

This data as json

0 records

CREATE TABLE weekly_summaries (
            id INTEGER PRIMARY KEY AUTOINCREMENT,
            week_start DATE NOT NULL UNIQUE,
            week_end DATE NOT NULL,
            portfolio_value_start REAL,
            portfolio_value_end REAL,
            total_fees_usd REAL DEFAULT 0,
            total_fees_pct REAL DEFAULT 0,
            verdict INTEGER,
            verdict_notes TEXT,
            decisions TEXT,
            market_trend TEXT
        );
Powered by Datasette · Queries took 9.297ms