You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
***Full Indicator Name Comments**: All 150 indicator files now include full indicator names as comments on line 2 for improved code readability and documentation (format: `# Full Indicator Name (ABBREVIATION)`).
19
+
20
+
### Changed
21
+
***Updated Indicator Counts**: Increased from 141 to 150 indicators (9 new additions), raising total count from 203 to 212 (150 indicators + 62 TA-Lib patterns).
22
+
***Enhanced RVGI**: Relative Vigor Index now includes histogram column (RVGI - Signal) in addition to RVGI and Signal columns.
23
+
7
24
### Fixed
8
25
***Code of Conduct Contact Information**: Updated enforcement contact from original maintainer's email to GitHub Issues link, making it maintainer-agnostic and easier to manage as the project evolves.
9
26
***PyPI Release Version**: Fixed CI/CD workflow to use exact release tag version by setting `SETUPTOOLS_SCM_PRETEND_VERSION` environment variable. This prevents development versions (`.dev0`) from being published when `pyproject.toml` is modified during the build process. Releases now correctly use the clean tag version (e.g., `0.3.35` instead of `0.3.36.dev0`).
**Pandas TA Classic** is an easy-to-use library that leverages the Pandas package with **141 indicators and utility functions** and **62 TA Lib candlestick patterns** (**203 total**). Many commonly used indicators are included, such as: _Simple Moving Average_ (**sma**), _Moving Average Convergence Divergence_ (**macd**), _Hull Exponential Moving Average_ (**hma**), _Bollinger Bands_ (**bbands**), _On-Balance Volume_ (**obv**), _Aroon & Aroon Oscillator_ (**aroon**), _Squeeze_ (**squeeze**) and **many more**.
23
+
> **Pandas TA Classic** is an easy-to-use library that leverages the Pandas package with **150 indicators and utility functions** and **62 TA Lib candlestick patterns** (**212 total**). Many commonly used indicators are included, such as: _Simple Moving Average_ (**sma**), _Moving Average Convergence Divergence_ (**macd**), _Hull Exponential Moving Average_ (**hma**), _Bollinger Bands_ (**bbands**), _On-Balance Volume_ (**obv**), _Aroon & Aroon Oscillator_ (**aroon**), _Squeeze_ (**squeeze**) and **many more**.
24
24
25
25
This is the **classic/community maintained version** of the popular pandas-ta library.
26
26
@@ -42,7 +42,7 @@ This is the **classic/community maintained version** of the popular pandas-ta li
Copy file name to clipboardExpand all lines: docs/index.rst
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,7 +1,7 @@
1
1
Pandas TA Classic Documentation
2
2
===============================
3
3
4
-
**Pandas TA Classic** is an easy to use library that leverages the Pandas package with **141 indicators and utility functions** plus **62 TA-Lib candlestick patterns** (203 total). This is the **community maintained version** of the popular pandas-ta library.
4
+
**Pandas TA Classic** is an easy to use library that leverages the Pandas package with **150 indicators and utility functions** plus **62 TA-Lib candlestick patterns** (212 total). This is the **community maintained version** of the popular pandas-ta library.
5
5
6
6
.. note::
7
7
The library features **dynamic configuration management**:
Copy file name to clipboardExpand all lines: docs/indicators.rst
+20-11Lines changed: 20 additions & 11 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,18 +1,18 @@
1
1
Indicators Reference
2
2
===================
3
3
4
-
**Pandas TA Classic** includes 141 indicators and utility functions plus 62 TA-Lib candlestick patterns (203 total) organized into the following categories:
4
+
**Pandas TA Classic** includes 150 indicators and utility functions plus 62 TA-Lib candlestick patterns (212 total) organized into the following categories:
* **Trend** (18) - Trend identification and direction indicators
12
+
* **Trend** (19) - Trend identification and direction indicators
13
13
* **Utility** (10) - Helper and utility functions
14
14
* **Volatility** (14) - Volatility and range-based indicators
15
-
* **Volume** (15) - Volume analysis indicators
15
+
* **Volume** (16) - Volume analysis indicators
16
16
17
17
.. note::
18
18
The category system now uses **dynamic discovery** - indicators are automatically detected from the package structure, ensuring the list is always up-to-date with available indicators.
@@ -53,12 +53,13 @@ Available patterns:
53
53
.. note::
54
54
**Bold patterns** are native implementations. Use ``df.ta.cdl_doji()`` or ``df.ta.cdl_inside()`` to access the native doji and inside bar patterns directly.
55
55
56
-
Cycles (1)
56
+
Cycles (2)
57
57
----------
58
58
59
+
* *Detrended Synthetic Price*: **dsp**
59
60
* *Even Better Sinewave*: **ebsw**
60
61
61
-
Momentum (41)
62
+
Momentum (46)
62
63
-------------
63
64
64
65
Momentum and oscillator indicators for measuring the speed of price changes:
@@ -81,9 +82,11 @@ Momentum and oscillator indicators for measuring the speed of price changes:
81
82
* *Inertia*: **inertia**
82
83
* *KDJ*: **kdj**
83
84
* *KST Oscillator*: **kst**
85
+
* *Linear Regression RSI*: **lrsi**
84
86
* *Moving Average Convergence Divergence*: **macd**
85
87
* *Momentum*: **mom**
86
88
* *Pretty Good Oscillator*: **pgo**
89
+
* *Projection Oscillator*: **po**
87
90
* *Percentage Price Oscillator*: **ppo**
88
91
* *Psychological Line*: **psl**
89
92
* *Percentage Volume Oscillator*: **pvo**
@@ -101,11 +104,13 @@ Momentum and oscillator indicators for measuring the speed of price changes:
101
104
* *Stochastic RSI*: **stochrsi**
102
105
* *TD Sequential*: **td_seq** (Excluded from ``df.ta.strategy()``)
103
106
* *Trix*: **trix**
107
+
* *TRIX Histogram*: **trixh**
104
108
* *True strength index*: **tsi**
105
109
* *Ultimate Oscillator*: **uo**
110
+
* *Volume Weighted MACD*: **vwmacd**
106
111
* *Williams %R*: **willr**
107
112
108
-
Overlap (34)
113
+
Overlap (36)
109
114
------------
110
115
111
116
Moving averages and trend-following indicators:
@@ -124,11 +129,13 @@ Moving averages and trend-following indicators:
124
129
* *Kaufman's Adaptive Moving Average*: **kama**
125
130
* *Linear Regression*: **linreg**
126
131
* *Moving Average*: **ma** (Generic moving average selector)
**Pandas Technical Analysis (Pandas TA Classic)** is an easy to use library that leverages the Pandas package with **141 indicators and utility functions** plus **62 TA-Lib candlestick patterns** (**203 total**). This is the **community maintained version** of the popular pandas-ta library.
8
+
**Pandas Technical Analysis (Pandas TA Classic)** is an easy to use library that leverages the Pandas package with **150 indicators and utility functions** plus **62 TA-Lib candlestick patterns** (**212 total**). This is the **community maintained version** of the popular pandas-ta library.
0 commit comments