File tree Expand file tree Collapse file tree 1 file changed +11
-2
lines changed
src/systemathics/apis/services/tick_analytics/v1 Expand file tree Collapse file tree 1 file changed +11
-2
lines changed Original file line number Diff line number Diff line change @@ -47,11 +47,17 @@ message TickSpreadRequest
47
47
// If empty, then all the available data is retrieved.
48
48
systemathics.apis.type.shared.v1.Constraints constraints = 2 ;
49
49
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
+
50
56
// [Optional] Accept quote conditions, by default the accept is set to null : accept all
51
- repeated string accept = 3 ;
57
+ repeated string accept = 5 ;
52
58
53
59
// [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 ;
55
61
}
56
62
57
63
// Contains the Spread data analytics.
@@ -77,6 +83,9 @@ message TickSpreadResponse
77
83
78
84
// The ticks count
79
85
int64 count = 7 ;
86
+
87
+ // The skipped count
88
+ int64 skipped = 8 ;
80
89
}
81
90
82
91
// Contains the side details.
You can’t perform that action at this time.
0 commit comments