Google Sheet API

The journal that opens anywhere. Even a phone.

No terminal to open, no login to reach it. The moment a trade closes the row is appended and the strategy dashboard is rewritten, so the picture is always current, on any screen.

Equity curve +2.4%

Written the instant it closes

A closed trade becomes a row and a fresh dashboard. Nothing to press, nothing to sync, the sheet is already caught up before you look.

Trade closesthe engine reports the result
Row appendedone clean line through the API
Dashboard rewrittenthe strategy view is current
Journal.py
# fired only on a real close
def on_trade_closed(trade):
    row = build_row(trade)
    sheet.append_row(row)   # one call
    sheet.refresh_board()    # same view

    return "journal up to date"

A call only when it counts

A pass with nothing new spends nothing. The API is touched only when a trade actually closed, so the journal stays inside its quota and the refresh stays fast.

EVERY PASS no call no call no call trade closed no call no call one API call · row + dashboard Inside the quota nothing is spent on empty passes so the refresh is always fast Nothing wasted a call maps to a real result

Close, write, read anywhere

One quiet call turns a closed trade into a live journal you can open from any screen.

Trade closes Row appended Dashboard rewritten Readable anywhere