@@ -28,6 +28,7 @@ def get_sma(
28
28
adjusted : Optional [bool ] = None ,
29
29
expand_underlying : Optional [bool ] = None ,
30
30
order : Optional [Union [str , Order ]] = None ,
31
+ limit : Optional [int ] = None ,
31
32
params : Optional [Dict [str , Any ]] = None ,
32
33
series_type : Optional [Union [str , SeriesType ]] = None ,
33
34
raw : bool = False ,
@@ -50,6 +51,7 @@ def get_sma(
50
51
:param expand_underlying: Whether to include the aggregates used to calculate this indicator in the response
51
52
:param order: Sort the results by timestamp. asc will return results in ascending order (oldest at the top),
52
53
desc will return results in descending order (newest at the top).The end of the aggregate time window
54
+ :param limit: Limit the number of results returned, default is 10 and max is 5000
53
55
:param params: Any additional query params
54
56
:param series_type: The price in the aggregate which will be used to calculate the simple moving average
55
57
i.e. 'close' will result in using close prices to calculate the simple moving average
@@ -81,6 +83,7 @@ def get_ema(
81
83
adjusted : Optional [bool ] = None ,
82
84
expand_underlying : Optional [bool ] = None ,
83
85
order : Optional [Union [str , Order ]] = None ,
86
+ limit : Optional [int ] = None ,
84
87
params : Optional [Dict [str , Any ]] = None ,
85
88
series_type : Optional [Union [str , SeriesType ]] = None ,
86
89
raw : bool = False ,
@@ -103,6 +106,7 @@ def get_ema(
103
106
:param expand_underlying: Whether to include the aggregates used to calculate this indicator in the response
104
107
:param order: Sort the results by timestamp. asc will return results in ascending order (oldest at the top),
105
108
desc will return results in descending order (newest at the top).The end of the aggregate time window
109
+ :param limit: Limit the number of results returned, default is 10 and max is 5000
106
110
:param params: Any additional query params
107
111
:param series_type: The price in the aggregate which will be used to calculate the simple moving average
108
112
i.e. 'close' will result in using close prices to calculate the simple moving average
@@ -134,6 +138,7 @@ def get_rsi(
134
138
adjusted : Optional [bool ] = None ,
135
139
expand_underlying : Optional [bool ] = None ,
136
140
order : Optional [Union [str , Order ]] = None ,
141
+ limit : Optional [int ] = None ,
137
142
params : Optional [Dict [str , Any ]] = None ,
138
143
series_type : Optional [Union [str , SeriesType ]] = None ,
139
144
raw : bool = False ,
@@ -156,6 +161,7 @@ def get_rsi(
156
161
:param expand_underlying: Whether to include the aggregates used to calculate this indicator in the response
157
162
:param order: Sort the results by timestamp. asc will return results in ascending order (oldest at the top),
158
163
desc will return results in descending order (newest at the top).The end of the aggregate time window
164
+ :param limit: Limit the number of results returned, default is 10 and max is 5000
159
165
:param params: Any additional query params
160
166
:param series_type: The price in the aggregate which will be used to calculate the simple moving average
161
167
i.e. 'close' will result in using close prices to calculate the simple moving average
@@ -189,6 +195,7 @@ def get_macd(
189
195
adjusted : Optional [bool ] = None ,
190
196
expand_underlying : Optional [bool ] = None ,
191
197
order : Optional [Union [str , Order ]] = None ,
198
+ limit : Optional [int ] = None ,
192
199
params : Optional [Dict [str , Any ]] = None ,
193
200
series_type : Optional [Union [str , SeriesType ]] = None ,
194
201
raw : bool = False ,
@@ -212,6 +219,7 @@ def get_macd(
212
219
:param expand_underlying: Whether to include the aggregates used to calculate this indicator in the response
213
220
:param order: Sort the results by timestamp. asc will return results in ascending order (oldest at the top),
214
221
desc will return results in descending order (newest at the top).The end of the aggregate time window
222
+ :param limit: Limit the number of results returned, default is 10 and max is 5000
215
223
:param params: Any additional query params
216
224
:param series_type: The price in the aggregate which will be used to calculate the simple moving average
217
225
i.e. 'close' will result in using close prices to calculate the simple moving average
0 commit comments