File tree Expand file tree Collapse file tree
src/systemathics/apis/services/tick_analytics/v1 Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -47,11 +47,17 @@ message TickSpreadRequest
4747 // If empty, then all the available data is retrieved.
4848 systemathics.apis.type.shared.v1.Constraints constraints = 2 ;
4949
50+ // [Optional] The minimum accepted spread value, by default is set to min double value
51+ double min_accepted = 3 ;
52+
53+ // [Optional] The maximum accepted spread value, by default is set to max double value
54+ double max_accepted = 4 ;
55+
5056 // [Optional] Accept quote conditions, by default the accept is set to null : accept all
51- repeated string accept = 3 ;
57+ repeated string accept = 5 ;
5258
5359 // [Optional] Rejected quote conditions, by default the reject is set to null : do not reject
54- repeated string reject = 4 ;
60+ repeated string reject = 6 ;
5561}
5662
5763// Contains the Spread data analytics.
@@ -77,6 +83,9 @@ message TickSpreadResponse
7783
7884 // The ticks count
7985 int64 count = 7 ;
86+
87+ // The skipped count
88+ int64 skipped = 8 ;
8089}
8190
8291// Contains the side details.
You can’t perform that action at this time.
0 commit comments