You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
sqlite3 tmp.db -column 'Select Date, Symbol, Quantity, "Average Price", Fees from trades where "Instrument Type" = "Equity" and Type = "Trade" order by Symbol asc, Date asc;'
sqlite3 tmp.db -column 'Select max(Date), Symbol, sum(Quantity), sum(Fees), sum(Quantity * "Average Price") from trades where "Instrument Type" = "Equity" and Type = "Trade" group by symbol order by Symbol asc, Date asc;'