diff --git a/README.md b/README.md
index de9b6c7..55e7b4f 100644
--- a/README.md
+++ b/README.md
@@ -113,7 +113,7 @@ $ pip install pandas_ta
Latest Version
--------------
-Best choice! Version: *0.3.30b*
+Best choice! Version: *0.3.31b*
* Includes all fixes and updates between **pypi** and what is covered in this README.
```sh
$ pip install -U git+https://github.com/twopirllc/pandas-ta
@@ -214,7 +214,7 @@ Thanks for using **Pandas TA**!
_Thank you for your contributions!_
-
+
@@ -652,8 +652,11 @@ Patterns that are **not bold**, require TA-Lib to be installed: ```pip install T
* xsidegap3methods
* _Heikin-Ashi_: **ha**
* _Z Score_: **cdl_z**
+
+
+
```python
-# Get all candle patterns (This is the default behaviour)
+# Get all candle patterns (Default)
df = df.ta.cdl_pattern(name="all")
# Get only one pattern
@@ -662,8 +665,8 @@ df = df.ta.cdl_pattern(name="doji")
# Get some patterns
df = df.ta.cdl_pattern(name=["doji", "inside"])
```
-
+
### **Cycles** (2)
* _Even Better Sinewave_: **ebsw**
@@ -784,6 +787,7 @@ Use parameter: cumulative=**True** for cumulative results.
| _Percent Return_ (Cumulative) with _Simple Moving Average_ (SMA) |
|:--------:|
|  |
+
### **Statistics** (11)
@@ -802,6 +806,7 @@ Use parameter: cumulative=**True** for cumulative results.
| _Z Score_ |
|:--------:|
|  |
+
### **Trend** (19)
@@ -946,7 +951,6 @@ print(pf.stats())
print(pf.returns_stats())
```
-
# **Changes**
diff --git a/setup.py b/setup.py
index 4dfafa5..f77f467 100644
--- a/setup.py
+++ b/setup.py
@@ -19,7 +19,7 @@ setup(
"pandas_ta.volatility",
"pandas_ta.volume"
],
- version=".".join(("0", "3", "30b")),
+ version=".".join(("0", "3", "31b")),
description=long_description,
long_description=long_description,
author="Kevin Johnson",