We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 29b6438 commit 61bb65eCopy full SHA for 61bb65e
docs/README.md
@@ -498,6 +498,9 @@ Advanced usage
498
```py
499
# The 5-period moving average for the upper bollinger band
500
stock['ma:5,(boll.upper:21,2)']
501
+
502
+# The change rate of the series above ↑
503
+stock['change:(ma:5,(boll.upper:21,2))']
504
```
505
506
### `ema`, Exponential Moving Average
test/test_basic.py
@@ -106,6 +106,8 @@ def test_ma(stock):
106
107
assert mama2.iloc[-1] == (ma2[-1] + ma2[-2]) / 2
108
109
+ stock['change:(ma:5,(boll.upper:21,2))']
110
111
112
COMMANDS = [
113
'ma:{}',
0 commit comments