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.
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
# 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.
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