added historic_vol method to panel class in msyrs.pyi

This commit is contained in:
Palash Tyagi 2024-11-22 17:17:27 +00:00
parent 70f135da61
commit a9056ef308

View File

@ -32,3 +32,9 @@ class qdf:
def update_dataframe(*args, **kwargs) -> DataFrame: ... def update_dataframe(*args, **kwargs) -> DataFrame: ...
@staticmethod @staticmethod
def pivot_dataframe_by_ticker(*args, **kwargs) -> DataFrame: ... def pivot_dataframe_by_ticker(*args, **kwargs) -> DataFrame: ...
class panel:
__all__ = ["historic_vol"]
@staticmethod
def historic_vol(*args, **kwargs) -> DataFrame: ...