You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: packages/composites/tokenized-equity/src/endpoint/common.ts
+10-3Lines changed: 10 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -8,6 +8,7 @@ export const inputExample = {
8
8
regularStreamId: '0x0',
9
9
extendedStreamId: '0x0',
10
10
overnightStreamId: '0x0',
11
+
overnightStreamMaxAgeInSeconds: 100,
11
12
sessionMarket: 'nyse',
12
13
sessionMarketType: '24/5',
13
14
sessionBoundaries: ['04:00','16:00','20:00'],
@@ -39,6 +40,12 @@ export const inputDefinition = new InputParameters(
39
40
type: 'string',
40
41
description: 'Data Streams overnight hour feed ID for the underlying asset',
41
42
},
43
+
overnightStreamMaxAgeInSeconds: {
44
+
required: false,
45
+
type: 'number',
46
+
description:
47
+
'Ignore report if the streams report is older than current time by more than this value in seconds. If not provided, all reports will be processed regardless of age.',
0 commit comments