Web app to track options trading activity. Log trades manually or import from CSV (Fidelity / Robinhood presets ready for your column names).
cd options-tracker
npm install
npx prisma db push
npm run devOpen http://localhost:3000.
- Dashboard – Summary and recent trades
- Trades – List all trades, net cost, add manually
- Add trade – Ticker, call/put, strike, expiry, action, quantity, price, date, notes
- Import CSV – Upload brokerage CSV, map columns (Fidelity/Robinhood presets: add exact column names in
src/lib/broker-presets.tswhen you have them), preview, import
- SQLite DB:
prisma/dev.db - Run
npx prisma studioto inspect data.
To push this project to GitHub:
-
Create a new repository on GitHub (no need to add a README or .gitignore—this repo already has them).
-
Add the remote and push:
git remote add origin https://github.com/YOUR_USERNAME/options-tracker.git git push -u origin master
If your default branch is
main, usegit push -u origin master:mainto pushmastertomain.