Files
aitrade/pkg/model/balance.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

14 lines
217 B
Go

package model
import "time"
type Balance struct {
ID int64
Timestamp time.Time
TotalValue float64
CashBalance float64
BuyingPower float64
UnrealizedPnL *float64
RealizedPnL *float64
}