Skip to content

Commit a2211d9

Browse files
committed
DOC: Standardize max 2000 symbols per request
1 parent a0965f3 commit a2211d9

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

databento/historical/api/batch.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ def submit_job(
5757
dataset : Dataset or str
5858
The dataset code (string identifier) for the request.
5959
symbols : List[Union[str, int]] or str, optional
60-
The product symbols to filter for. Takes up to 10,000 symbols per request.
60+
The product symbols to filter for. Takes up to 2,000 symbols per request.
6161
If more than 1 symbol is specified, the data is merged and sorted by time.
6262
If `*` or ``None`` then will be for **all** symbols.
6363
schema : Schema or str {'mbo', 'mbp-1', 'mbp-10', 'trades', 'tbbo', 'ohlcv-1s', 'ohlcv-1m', 'ohlcv-1h', 'ohlcv-1d', 'definition', 'statistics', 'status'}, default 'trades' # noqa

databento/historical/api/metadata.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -277,7 +277,7 @@ def get_shape(
277277
dataset : Dataset or str
278278
The dataset code for the request.
279279
symbols : List[Union[str, int]] or str, optional
280-
The product symbols to filter for. Takes up to 10,000 symbols per request.
280+
The product symbols to filter for. Takes up to 2,000 symbols per request.
281281
If `*` or ``None`` then will be for **all** symbols.
282282
schema : Schema or str {'mbo', 'mbp-1', 'mbp-10', 'trades', 'tbbo', 'ohlcv-1s', 'ohlcv-1m', 'ohlcv-1h', 'ohlcv-1d', 'definition', 'statistics', 'status'}, default 'trades' # noqa
283283
The data record schema for the request.
@@ -354,7 +354,7 @@ def get_billable_size(
354354
dataset : Dataset or str
355355
The dataset code for the request.
356356
symbols : List[Union[str, int]] or str, optional
357-
The product symbols to filter for. Takes up to 10,000 symbols per request.
357+
The product symbols to filter for. Takes up to 2,000 symbols per request.
358358
If `*` or ``None`` then will be for **all** symbols.
359359
schema : Schema or str {'mbo', 'mbp-1', 'mbp-10', 'trades', 'tbbo', 'ohlcv-1s', 'ohlcv-1m', 'ohlcv-1h', 'ohlcv-1d', 'definition', 'statistics', 'status'}, default 'trades' # noqa
360360
The data record schema for the request.
@@ -423,7 +423,7 @@ def get_cost(
423423
mode : FeedMode or str {'live', 'historical-streaming', 'historical'}, default 'historical-streaming'
424424
The data feed mode for the request.
425425
symbols : List[Union[str, int]] or str, optional
426-
The product symbols to filter for. Takes up to 10,000 symbols per request.
426+
The product symbols to filter for. Takes up to 2,000 symbols per request.
427427
If `*` or ``None`` then will be for **all** symbols.
428428
schema : Schema or str {'mbo', 'mbp-1', 'mbp-10', 'trades', 'tbbo', 'ohlcv-1s', 'ohlcv-1m', 'ohlcv-1h', 'ohlcv-1d', 'definition', 'statistics', 'status'}, default 'trades' # noqa
429429
The data record schema for the request.

databento/historical/api/symbology.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ def resolve(
3838
dataset : Dataset or str
3939
The dataset code (string identifier) for the request.
4040
symbols : List[Union[str, int]] or str, optional
41-
The symbols to resolve. Takes up to 10,000 symbols per request.
41+
The symbols to resolve. Takes up to 2,000 symbols per request.
4242
If `*` or ``None`` then will be for **all** symbols.
4343
stype_in : SType or str, default 'native'
4444
The input symbology type to resolve from.

databento/historical/api/timeseries.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ def stream(
4141
dataset : Dataset or str
4242
The dataset code (string identifier) for the request.
4343
symbols : List[Union[str, int]] or str, optional
44-
The product symbols to filter for. Takes up to 10,000 symbols per request.
44+
The product symbols to filter for. Takes up to 2,000 symbols per request.
4545
If more than 1 symbol is specified, the data is merged and sorted by time.
4646
If `*` or ``None`` then will be for **all** symbols.
4747
schema : Schema or str {'mbo', 'mbp-1', 'mbp-10', 'trades', 'tbbo', 'ohlcv-1s', 'ohlcv-1m', 'ohlcv-1h', 'ohlcv-1d', 'definition', 'statistics', 'status'}, default 'trades' # noqa
@@ -137,7 +137,7 @@ async def stream_async(
137137
dataset : Dataset or str
138138
The dataset code (string identifier) for the request.
139139
symbols : List[Union[str, int]] or str, optional
140-
The product symbols to filter for. Takes up to 10,000 symbols per request.
140+
The product symbols to filter for. Takes up to 2,000 symbols per request.
141141
If more than 1 symbol is specified, the data is merged and sorted by time.
142142
If `*` or ``None`` then will be for **all** symbols.
143143
schema : Schema or str {'mbo', 'mbp-1', 'mbp-10', 'trades', 'tbbo', 'ohlcv-1s', 'ohlcv-1m', 'ohlcv-1h', 'ohlcv-1d', 'definition', 'statistics', 'status'}, default 'trades' # noqa

0 commit comments

Comments
 (0)