Skip to content

Commit

Permalink
Added RequestForQuote
Browse files Browse the repository at this point in the history
  • Loading branch information
dlucek committed Sep 18, 2023
1 parent 77d4c01 commit f5f2f6c
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions openfeed.proto
Original file line number Diff line number Diff line change
Expand Up @@ -400,6 +400,7 @@ message MarketUpdate {
MarketSummary marketSummary = 46;
HighRolling highRolling = 47;
LowRolling lowRolling = 48;
RequestForQuote requestForQuote = 49;
}
}

Expand Down Expand Up @@ -1067,3 +1068,12 @@ message InstrumentAction {
InstrumentDefinition newInstrument = 11;
}

/// Request For Quote
message RequestForQuote {
string quoteRequestId = 1;
string symbol = 2;
sint64 securityId = 3;
sint32 orderQuantity = 4;
sint32 quoteType = 5;
sint32 side = 6;
}

0 comments on commit f5f2f6c

Please sign in to comment.