chore: remove tracked files that should be gitignored

This commit is contained in:
jackyu66git
2026-05-04 18:06:03 +08:00
parent 5f6578c179
commit 9628100681
6 changed files with 0 additions and 45055 deletions
-6
View File
@@ -1,6 +0,0 @@
import sqlite3
conn = sqlite3.connect('data/trades.db')
rows = conn.execute('SELECT id, scale_count, amount_usd, fee_entry, fee_exit, net_pnl FROM trades').fetchall()
for r in rows:
print(f' #{r[0]}: scales={r[1]} amt=${r[2]} fee_entry={r[3]:.6f} fee_exit={r[4]:.6f} net={r[5]:.6f}')
conn.close()