From 04093239b4918e42e9e288c1528a5afdeb0766a5 Mon Sep 17 00:00:00 2001 From: r4stl1n Date: Fri, 16 Feb 2024 19:46:36 -0800 Subject: [PATCH] Added missing fields maker_fees, maker_fill_cost --- portfolio.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/portfolio.go b/portfolio.go index 8b907d1..8923edd 100644 --- a/portfolio.go +++ b/portfolio.go @@ -151,7 +151,9 @@ type Order struct { ExpirationTime *Time `json:"expiration_time"` FccCancelCount int `json:"fcc_cancel_count"` LastUpdateTime *Time `json:"last_update_time"` + MakerFillCost int `json:"maker_fill_cost"` MakerFillCount int `json:"maker_fill_count"` + MakerFees Cents `json:"maker_fees"` NoPrice Cents `json:"no_price"` OrderID string `json:"order_id"` PlaceCount int `json:"place_count"`