We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4362b42 commit d89d6cfCopy full SHA for d89d6cf
2 files changed
nsepython/rahu.py
@@ -570,7 +570,8 @@ def get_beta_df_maker(symbol,days):
570
df = df.iloc[1: , :] #thispointer.com/drop-first-row-of-pandas-dataframe-3-ways/
571
return df
572
573
-def get_beta(symbol,days,symbol2="NIFTY 50"):
+def get_beta(symbol,days=248,symbol2="NIFTY 50"):
574
+ #Default is 248 days. (Input of Subhash)
575
df = get_beta_df_maker(symbol,days)
576
df2 = get_beta_df_maker(symbol2,days)
577
setup.py
@@ -6,7 +6,7 @@
6
setuptools.setup(
7
name = 'nsepython',
8
packages=setuptools.find_packages(),
9
- version = '0.0.959',
+ version = '0.0.962',
10
include_package_data=True,
11
description = 'Python library for NSE India APIs',
12
long_description=long_description,
0 commit comments