Skip to content

Commit

Permalink
prepare version 0.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
greyblake committed Oct 6, 2020
1 parent ea4af6a commit 5046d60
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 3 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#### Unreleased
#### v0.3.0 - 2020-10-06

* Implement Percentage Price Oscillator (PPO)
* More efficient BollingerBands
Expand All @@ -8,6 +8,7 @@
* More efficient Minimum
* More efficient Maximum
* More efficient SimpleMovingAverage
* Serde support

#### v0.2.0 - 2020-08-31

Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ta"
version = "0.2.0"
version = "0.3.0"
authors = ["Sergey Potapov <blake131313@gmail.com>"]
edition = "2018"
description = "Technical analysis library. Implements number of indicators: EMA, SMA, RSI, MACD, Stochastic, etc."
Expand Down
8 changes: 7 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ Technical analysis library for Rust.
Add to you `Cargo.toml`:
```
[dependencies]
ta = "0.2.0"
ta = "0.3.0"
```

Example:
Expand Down Expand Up @@ -86,6 +86,11 @@ So far there are the following indicators available.
* Rate of Change (ROC)
* On Balance Volume (OBV)


## Features

* `serde` - allows to serialize and deserialize indicators

## Running benchmarks

```
Expand All @@ -105,3 +110,4 @@ cargo bench
- [edwardycl](https://github.com/edwardycl) - StandardDeviation Implementation & More Efficient BollingerBands
- [rideron89](https://github.com/rideron89) Ron Rider - Keltner Channel
- [tirz](https://github.com/tirz) - Percentage Price Oscillator
- [Devin Gunay](https://github.com/dgunay) - serde support

0 comments on commit 5046d60

Please sign in to comment.