Skip to content

Commit

Permalink
Merge pull request peerchemist#65 from nicktids/spelling-mistake
Browse files Browse the repository at this point in the history
period spelt incorrect in STOCHD
  • Loading branch information
peerchemist authored May 22, 2020
2 parents d677e17 + 262fba2 commit e3a46fc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion finta/finta.py
Original file line number Diff line number Diff line change
Expand Up @@ -985,7 +985,7 @@ def STOCHD(cls, ohlc: DataFrame, period: int = 3, stoch_period: int = 14) -> Ser

return pd.Series(
cls.STOCH(ohlc, stoch_period).rolling(center=False, window=period).mean(),
name="{0} perood STOCH %D.".format(period),
name="{0} period STOCH %D.".format(period),
)

@classmethod
Expand Down

0 comments on commit e3a46fc

Please sign in to comment.