Skip to content

Commit

Permalink
Merge pull request #472 from stash86/fix-typo
Browse files Browse the repository at this point in the history
Fix few typo
  • Loading branch information
xmatthias committed Aug 17, 2024
2 parents 19b7c6f + 4f11a48 commit e6186ce
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions technical/indicators/indicators.py
Original file line number Diff line number Diff line change
Expand Up @@ -984,10 +984,10 @@ def VIDYA(dataframe, length=9, select=True):
by averaging the price values of the periods, over which it is calculated.
In the process, some extra value (weight) is added to the average prices,
as it is done during calculations of all weighted indicators, such as EMA , LWMA, and SMMA.
But during the VIDIYA indicator's calculation, every period's price
But during the VIDYA indicator's calculation, every period's price
receives a weight increment adapted to the current market's volatility .
select: True = CMO, False= StDev as volatility index
select: True = CMO, False= StdDev as volatility index
usage:
dataframe['VIDYA'] = VIDYA(dataframe)
"""
Expand Down Expand Up @@ -1021,20 +1021,20 @@ def VIDYA(dataframe, length=9, select=True):

def MADR(dataframe, length=21, stds=2):
"""
Moving Averae Deviation RAte just like bollinger bands ...
Moving Average Deviation Rate, similar to bollinger bands
Source: https://tradingview.com/script/25KCgL9H/
Author: tarantula3535
Moving average deviation rate
Simple moving average deviation rate and standard deviation.
The bollinger band is momentum value standard devition.
Bat the bollinger band is not normal distribution to close price.
The bollinger band is momentum value standard deviation.
But the bollinger band is not normal distribution to close price.
Moving average deviation rate is normal distribution.
This indicator is draw Moving average deviation rate and fill area 2σ standard devition.
If it exceeds , it is a trading opportunity.
This indicator will define upper and lower bounds based of stds-σ standard deviation of rate column.
If it exceeds stds-σ, it is a trading opportunity.
"""

Expand Down

0 comments on commit e6186ce

Please sign in to comment.