@@ -276,7 +276,7 @@ def get_record_count(
276276 end : Optional [Union [pd .Timestamp , date , str , int ]] = None ,
277277 symbols : Optional [Union [List [str ], str ]] = None ,
278278 schema : Union [Schema , str ] = "trades" ,
279- stype_in : Optional [Union [SType , str ]] = "native " ,
279+ stype_in : Optional [Union [SType , str ]] = "raw_symbol " ,
280280 limit : Optional [int ] = None ,
281281 ) -> int :
282282 """
@@ -303,7 +303,7 @@ def get_record_count(
303303 If 'ALL_SYMBOLS' or `None` then will be for **all** symbols.
304304 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
305305 The data record schema for the request.
306- stype_in : SType or str, default 'native '
306+ stype_in : SType or str, default 'raw_symbol '
307307 The input symbology type to resolve from.
308308 limit : int, optional
309309 The maximum number of records to return. If `None` then no limit.
@@ -344,7 +344,7 @@ def get_billable_size(
344344 end : Optional [Union [pd .Timestamp , date , str , int ]] = None ,
345345 symbols : Optional [Union [List [str ], str ]] = None ,
346346 schema : Union [Schema , str ] = "trades" ,
347- stype_in : Optional [Union [SType , str ]] = "native " ,
347+ stype_in : Optional [Union [SType , str ]] = "raw_symbol " ,
348348 limit : Optional [int ] = None ,
349349 ) -> int :
350350 """
@@ -372,7 +372,7 @@ def get_billable_size(
372372 If 'ALL_SYMBOLS' or `None` then will be for **all** symbols.
373373 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
374374 The data record schema for the request.
375- stype_in : SType or str, default 'native '
375+ stype_in : SType or str, default 'raw_symbol '
376376 The input symbology type to resolve from.
377377 limit : int, optional
378378 The maximum number of records to return. If `None` then no limit.
@@ -392,7 +392,7 @@ def get_billable_size(
392392 ("symbols" , symbols_list ),
393393 ("schema" , str (validate_enum (schema , Schema , "schema" ))),
394394 ("stype_in" , str (stype_in_valid )),
395- ("stype_out" , str (SType .PRODUCT_ID )),
395+ ("stype_out" , str (SType .INSTRUMENT_ID )),
396396 ]
397397
398398 if limit is not None :
@@ -414,7 +414,7 @@ def get_cost(
414414 mode : Union [FeedMode , str ] = "historical-streaming" ,
415415 symbols : Optional [Union [List [str ], str ]] = None ,
416416 schema : Union [Schema , str ] = "trades" ,
417- stype_in : Optional [Union [SType , str ]] = "native " ,
417+ stype_in : Optional [Union [SType , str ]] = "raw_symbol " ,
418418 limit : Optional [int ] = None ,
419419 ) -> float :
420420 """
@@ -444,7 +444,7 @@ def get_cost(
444444 If 'ALL_SYMBOLS' or `None` then will be for **all** symbols.
445445 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
446446 The data record schema for the request.
447- stype_in : SType or str, default 'native '
447+ stype_in : SType or str, default 'raw_symbol '
448448 The input symbology type to resolve from.
449449 limit : int, optional
450450 The maximum number of records to return. If `None` then no limit.
@@ -464,7 +464,7 @@ def get_cost(
464464 ("symbols" , symbols_list ),
465465 ("schema" , str (validate_enum (schema , Schema , "schema" ))),
466466 ("stype_in" , str (stype_in_valid )),
467- ("stype_out" , str (SType .PRODUCT_ID )),
467+ ("stype_out" , str (SType .INSTRUMENT_ID )),
468468 ("mode" , validate_enum (mode , FeedMode , "mode" )),
469469 ]
470470
0 commit comments