Add Python wrapper for utils module and update msyrs.pyi to include utils functions

This commit is contained in:
Palash Tyagi
2025-04-10 23:26:49 +01:00
parent 4df2d4147d
commit c0f7299643
3 changed files with 38 additions and 5 deletions

View File

@@ -34,16 +34,23 @@ class qdf:
def pivot_dataframe_by_ticker(*args, **kwargs) -> DataFrame: ...
class panel:
__all__ = ["historic_vol"]
__all__ = [
"historic_vol",
"get_bdates_from_col_hv",
"get_period_indices_hv",
"linear_composite",
]
@staticmethod
def historic_vol(*args, **kwargs) -> DataFrame: ...
@staticmethod
def get_bdates_from_col_hv(*args, **kwargs) -> Series: ...
@staticmethod
def get_period_indices_hv(*args, **kwargs) -> Series: ...
@staticmethod
def linear_composite(*args, **kwargs) -> DataFrame: ...
def linear_composite(*args, **kwargs) -> DataFrame: ...
class utils:
__all__ = ["get_bdates_series_default"]
@staticmethod
def get_bdates_series_default(*args, **kwargs) -> Series: ...