Skip to content

Commit

Permalink
TRAD-215 separate fill price / order price (#18)
Browse files Browse the repository at this point in the history
TRAD-215 add fill/order price
  • Loading branch information
Kevin Chen authored Sep 23, 2022
1 parent 8380712 commit 5d5f828
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion proto/api.proto
Original file line number Diff line number Diff line change
Expand Up @@ -433,11 +433,12 @@ message GetTradesResponse {
message Trade {
Side side = 1;
double size = 2;
double price = 3;
double fillPrice = 3;
string orderID = 4;
bool isMaker = 5;
string address = 6;
double feeOrRebate = 7;
double orderPrice = 8;
}

message GetServerTimeRequest {}
Expand Down

0 comments on commit 5d5f828

Please sign in to comment.