pandas-technical-indicators icon indicating copy to clipboard operation
pandas-technical-indicators copied to clipboard

Technical Indicators implemented in Python using Pandas

Results 12 pandas-technical-indicators issues
Sort by recently updated
recently updated
newest added

I propose this change ` def bollinger_bands(self, df, n): """ :param df: pandas.DataFrame :param n: :return: pandas.DataFrame """ sma = data.rolling(window = n).mean() std = data.rolling(window = n).std() upper_bb =...

Dear all Replace "ix" with "iloc". If not, it gives an error.

Dear all. I propose to replace ` #df = df.join(MACD) #df = df.join(MACDsign) #df = df.join(MACDdiff)` for ` frames = [MACD, MACDsign, MACDdiff] df = pd.concat(frames, join = 'inner', axis...

`SOk = pd.Series((df['Close'] - df['Low']) / (df['High'] - df['Low']), name='SO%k')` is not the correct calculation of the stochastics %K See here: http://stockcharts.com/school/doku.php?id=chart_school:technical_indicators:stochastic_oscillator_fast_slow_and_full %K = (Current Close - Lowest Low)/(Highest High...

bug
help wanted

Hello guys, I am using: Python 3.6 Before, I implemented this RSI formula and pass df['Close'] prices and compute the result inside a numpy array: def rsiFunc(prices, n=14): deltas =...

bug
help wanted

add the input like the period to the name

Hi, Thanks a lot for the code. it's really very helpful. I was working on the "Keltner channel" is there any way we can have an option wherein we can...

Created a dynamic class based on the functions before, so that they can be used by any data-format, just configuring by the inicialization

Pretty please, add VWAP?

help wanted

Accumulation/Distribution = ((Close – Low) – (High – Close)) / (High – Low) * Period Volume In order to fully understand how the indicator actually works, it is necessary to...

help wanted