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
@@ -228,11 +229,12 @@ Please note that a token created via the REST API is necessary to use this API.
228
229
Parameters to the execute method are as follows :
229
230
230
231
+**program** (string) - Required field. The signalflow to be run.
231
-
+**start** (int | string) - A milliseconds since epoch number or a string representing a relative time : e.g. -1h. Defaults to now.
232
-
+**end** (int | string) - A milliseconds since epoch number or a string representing a relative time : e.g. -30m. Defaults to infinity.
233
-
+**resolution** (int) - The interval across which to calculate, in 1000 millisecond intervals. Defaults to 1000.
232
+
+**start** (int | string) - A milliseconds since epoch number or a string representing a relative time : e.g. -1h. Defaults to now.
233
+
+**stop** (int | string) - A milliseconds since epoch number or a string representing a relative time : e.g. -30m. Defaults to infinity.
234
+
+**resolution** (int) - The interval across which to calculate, in 1000 millisecond intervals. Defaults to 1000.
234
235
+**maxDelay** (int) - The maximum time to wait for a datapoint to arrive, in 10000 millisecond intervals. Defaults to dynamic.
235
236
+**bigNumber** (boolean) - True if returned values require precision beyond MAX_SAFE_INTEGER. Returns all values in data messages as bignumber objects as per https://www.npmjs.com/package/bignumber.js Defaults to false.
237
+
+**immediate** (boolean) - Whether to adjust the stop timestamp so that the computation doesn't wait for future data to be available.
0 commit comments