- Add modernc.org/sqlite (pure Go, no CGO) - db/ package: trades, orders, config_log tables + CRUD - Trade persistence: every closed trade saved to SQLite - Restart recovery: open positions restored from DB - Automatic migration on startup
209 lines
6.3 KiB
Go
209 lines
6.3 KiB
Go
package db
|
|
|
|
import (
|
|
"database/sql"
|
|
"time"
|
|
)
|
|
|
|
// TradeRecord mirrors the database row for trades table.
|
|
type TradeRecord struct {
|
|
ID int64
|
|
Coin string
|
|
Direction string
|
|
Status string // open / closed
|
|
EntrySpread *float64
|
|
ExitSpread *float64
|
|
LongExchange string
|
|
ShortExchange string
|
|
LongEntry *float64
|
|
LongExit *float64
|
|
ShortEntry *float64
|
|
ShortExit *float64
|
|
LongPnl *float64
|
|
ShortPnl *float64
|
|
FeeEntry *float64
|
|
FeeExit *float64
|
|
NetPnl *float64
|
|
AmountUSD float64
|
|
ScaleCount int
|
|
ExitReason *string
|
|
Convergence *string
|
|
OpenedAt time.Time
|
|
ClosedAt *time.Time
|
|
}
|
|
|
|
// OrderRecord mirrors the database row for orders table.
|
|
type OrderRecord struct {
|
|
ID int64
|
|
TradeID int64
|
|
Leg string // long / short
|
|
Type string // entry / exit / scale
|
|
Exchange string
|
|
Side string // buy / sell
|
|
Price *float64
|
|
Size *float64
|
|
Fee *float64
|
|
OrderID *string
|
|
Status *string
|
|
CreatedAt time.Time
|
|
}
|
|
|
|
// SaveTrade inserts a new trade and returns its ID.
|
|
func (d *DB) SaveTrade(t *TradeRecord) (int64, error) {
|
|
res, err := d.Exec(`INSERT INTO trades (
|
|
coin, direction, status, entry_spread, exit_spread,
|
|
long_exchange, short_exchange, long_entry, long_exit, short_entry, short_exit,
|
|
long_pnl, short_pnl, fee_entry, fee_exit, net_pnl,
|
|
amount_usd, scale_count, exit_reason, convergence, opened_at, closed_at
|
|
) VALUES (?,?,?,?,?, ?,?,?,?,?, ?,?,?,?,?, ?,?,?,?,?, ?,?)`,
|
|
t.Coin, t.Direction, t.Status, t.EntrySpread, t.ExitSpread,
|
|
t.LongExchange, t.ShortExchange, t.LongEntry, t.LongExit, t.ShortEntry, t.ShortExit,
|
|
t.LongPnl, t.ShortPnl, t.FeeEntry, t.FeeExit, t.NetPnl,
|
|
t.AmountUSD, t.ScaleCount, t.ExitReason, t.Convergence, t.OpenedAt, t.ClosedAt,
|
|
)
|
|
if err != nil {
|
|
return 0, err
|
|
}
|
|
return res.LastInsertId()
|
|
}
|
|
|
|
// UpdateTradeStatus updates an existing trade's close data.
|
|
func (d *DB) UpdateTradeStatus(id int64, t *TradeRecord) error {
|
|
_, err := d.Exec(`UPDATE trades SET
|
|
status=?, exit_spread=?, long_exit=?, short_exit=?,
|
|
long_pnl=?, short_pnl=?, net_pnl=?,
|
|
scale_count=?, exit_reason=?, convergence=?, closed_at=?
|
|
WHERE id=?`,
|
|
t.Status, t.ExitSpread,
|
|
t.LongExit, t.ShortExit,
|
|
t.LongPnl, t.ShortPnl, t.NetPnl,
|
|
t.ScaleCount, t.ExitReason, t.Convergence, t.ClosedAt,
|
|
id,
|
|
)
|
|
return err
|
|
}
|
|
|
|
// GetOpenTrades returns all trades with status='open'.
|
|
func (d *DB) GetOpenTrades() ([]TradeRecord, error) {
|
|
rows, err := d.Query(`SELECT id, coin, direction, status, entry_spread, exit_spread,
|
|
long_exchange, short_exchange, long_entry, long_exit, short_entry, short_exit,
|
|
long_pnl, short_pnl, fee_entry, fee_exit, net_pnl,
|
|
amount_usd, scale_count, exit_reason, convergence, opened_at, closed_at
|
|
FROM trades WHERE status='open'`)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
defer rows.Close()
|
|
return scanTrades(rows)
|
|
}
|
|
|
|
// GetTrades returns paginated closed trades.
|
|
func (d *DB) GetTrades(page, limit int, coin string) ([]TradeRecord, int, error) {
|
|
// Count total
|
|
var total int
|
|
countSQL := "SELECT COUNT(*) FROM trades WHERE status='closed'"
|
|
args := []interface{}{}
|
|
if coin != "" {
|
|
countSQL += " AND coin=?"
|
|
args = append(args, coin)
|
|
}
|
|
if err := d.QueryRow(countSQL, args...).Scan(&total); err != nil {
|
|
return nil, 0, err
|
|
}
|
|
|
|
// Fetch page
|
|
offset := (page - 1) * limit
|
|
query := `SELECT id, coin, direction, status, entry_spread, exit_spread,
|
|
long_exchange, short_exchange, long_entry, long_exit, short_entry, short_exit,
|
|
long_pnl, short_pnl, fee_entry, fee_exit, net_pnl,
|
|
amount_usd, scale_count, exit_reason, convergence, opened_at, closed_at
|
|
FROM trades WHERE status='closed'`
|
|
if coin != "" {
|
|
query += " AND coin=?"
|
|
}
|
|
query += " ORDER BY closed_at DESC LIMIT ? OFFSET ?"
|
|
|
|
allArgs := args
|
|
allArgs = append(allArgs, limit, offset)
|
|
|
|
rows, err := d.Query(query, allArgs...)
|
|
if err != nil {
|
|
return nil, 0, err
|
|
}
|
|
defer rows.Close()
|
|
|
|
trades, err := scanTrades(rows)
|
|
return trades, total, err
|
|
}
|
|
|
|
// SaveOrder inserts an order record.
|
|
func (d *DB) SaveOrder(o *OrderRecord) (int64, error) {
|
|
res, err := d.Exec(`INSERT INTO orders
|
|
(trade_id, leg, type, exchange, side, price, size, fee, order_id, status, created_at)
|
|
VALUES (?,?,?,?,?, ?,?,?,?,?, ?)`,
|
|
o.TradeID, o.Leg, o.Type, o.Exchange, o.Side,
|
|
o.Price, o.Size, o.Fee, o.OrderID, o.Status, o.CreatedAt,
|
|
)
|
|
if err != nil {
|
|
return 0, err
|
|
}
|
|
return res.LastInsertId()
|
|
}
|
|
|
|
// GetTradeByID returns a single trade with its orders.
|
|
func (d *DB) GetTradeByID(id int64) (*TradeRecord, []OrderRecord, error) {
|
|
row := d.QueryRow(`SELECT id, coin, direction, status, entry_spread, exit_spread,
|
|
long_exchange, short_exchange, long_entry, long_exit, short_entry, short_exit,
|
|
long_pnl, short_pnl, fee_entry, fee_exit, net_pnl,
|
|
amount_usd, scale_count, exit_reason, convergence, opened_at, closed_at
|
|
FROM trades WHERE id=?`, id)
|
|
|
|
var t TradeRecord
|
|
err := row.Scan(
|
|
&t.ID, &t.Coin, &t.Direction, &t.Status, &t.EntrySpread, &t.ExitSpread,
|
|
&t.LongExchange, &t.ShortExchange, &t.LongEntry, &t.LongExit, &t.ShortEntry, &t.ShortExit,
|
|
&t.LongPnl, &t.ShortPnl, &t.FeeEntry, &t.FeeExit, &t.NetPnl,
|
|
&t.AmountUSD, &t.ScaleCount, &t.ExitReason, &t.Convergence, &t.OpenedAt, &t.ClosedAt,
|
|
)
|
|
if err != nil {
|
|
return nil, nil, err
|
|
}
|
|
|
|
// Fetch orders
|
|
oRows, err := d.Query(`SELECT id, trade_id, leg, type, exchange, side,
|
|
price, size, fee, order_id, status, created_at
|
|
FROM orders WHERE trade_id=? ORDER BY id`, id)
|
|
if err != nil {
|
|
return nil, nil, err
|
|
}
|
|
defer oRows.Close()
|
|
|
|
var orders []OrderRecord
|
|
for oRows.Next() {
|
|
var o OrderRecord
|
|
if err := oRows.Scan(&o.ID, &o.TradeID, &o.Leg, &o.Type, &o.Exchange, &o.Side,
|
|
&o.Price, &o.Size, &o.Fee, &o.OrderID, &o.Status, &o.CreatedAt); err != nil {
|
|
return nil, nil, err
|
|
}
|
|
orders = append(orders, o)
|
|
}
|
|
return &t, orders, nil
|
|
}
|
|
|
|
func scanTrades(rows *sql.Rows) ([]TradeRecord, error) {
|
|
var trades []TradeRecord
|
|
for rows.Next() {
|
|
var t TradeRecord
|
|
if err := rows.Scan(
|
|
&t.ID, &t.Coin, &t.Direction, &t.Status, &t.EntrySpread, &t.ExitSpread,
|
|
&t.LongExchange, &t.ShortExchange, &t.LongEntry, &t.LongExit, &t.ShortEntry, &t.ShortExit,
|
|
&t.LongPnl, &t.ShortPnl, &t.FeeEntry, &t.FeeExit, &t.NetPnl,
|
|
&t.AmountUSD, &t.ScaleCount, &t.ExitReason, &t.Convergence, &t.OpenedAt, &t.ClosedAt,
|
|
); err != nil {
|
|
return nil, err
|
|
}
|
|
trades = append(trades, t)
|
|
}
|
|
return trades, rows.Err()
|
|
}
|