Files
aitrade/pkg/model/position.go
T
kaedwen ea141eb012
Build and Push Docker Image / build-and-push (push) Failing after 1m41s
initial
2026-07-02 20:09:44 +02:00

16 lines
259 B
Go

package model
import "time"
type Position struct {
ID int64
Symbol string
Quantity int
EntryPrice float64
EntryTradeID int64
CurrentPrice *float64
UnrealizedPnL *float64
OpenedAt time.Time
UpdatedAt time.Time
}