mirror of
https://github.com/Magnus167/msyrs.git
synced 2025-11-20 06:46:10 +00:00
Add Python wrapper for utils module and update msyrs.pyi to include utils functions
This commit is contained in:
@@ -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: ...
|
||||
|
||||
Reference in New Issue
Block a user