Skip to content

Commit a35cfba

Browse files
authored
Merge pull request #30 from GrupoTuring/fix/windows
Remove janelas padrão
2 parents f75755b + 5f1c531 commit a35cfba

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

docs/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
master_doc = 'index'
2424

2525
# The full version, including alpha/beta/rc tags
26-
release = '0.1.5'
26+
release = '0.1.6'
2727

2828

2929
# -- General configuration ---------------------------------------------------

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
setup(
77
name="turingquant",
8-
version="0.1.5",
8+
version="0.1.6",
99
packages=find_packages(),
1010
install_requires=["pandas", "pandas_datareader", "numpy", "matplotlib", "alpha_vantage", "bs4", "plotly", "yfinance"],
1111

turingquant/metrics.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -211,7 +211,7 @@ def ewma_volatility(close_prices, return_type, window, plot=True):
211211
return ewma_volatility
212212

213213

214-
def garman_klass_volatility(high_prices, low_prices, close_prices, open_prices, window=60, time_scale=1, plot=True):
214+
def garman_klass_volatility(high_prices, low_prices, close_prices, open_prices, window, time_scale=1, plot=True):
215215
"""
216216
Estima a volatilidade a partir dos seguintes preços: alta, baixa, abertura e fechamento
217217
@@ -284,7 +284,7 @@ def garman_klass_volatility(high_prices, low_prices, close_prices, open_prices,
284284
return garman_klass_vol
285285

286286

287-
def parkinson_volatility(high_prices, low_prices, window=60, time_scale=1, plot=True):
287+
def parkinson_volatility(high_prices, low_prices, window, time_scale=1, plot=True):
288288
"""
289289
Estimando a volatilidade a partir dos preços de Alta e de Baixa
290290

0 commit comments

Comments
 (0)