From 4f4b0c381540a8696e0ce8c887884e7b5968e4b0 Mon Sep 17 00:00:00 2001 From: Will Charczuk Date: Sat, 16 Jul 2016 15:03:00 -0700 Subject: [PATCH] Update README.md --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 32b90ab..d02e59f 100644 --- a/README.md +++ b/README.md @@ -174,13 +174,13 @@ graph := chart.Chart{ graph.Render(chart.PNG, buffer) ``` -# Moving Averages +# Moving Averages (Simple & Exponential) -You can now also graph a moving average of a series using a special `MovingAverageSeries` that takes an `InnerSeries` as a required argument. +You can now also graph a moving average of a series using a special `SimpleMovingAverageSeries` that takes an `InnerSeries` as a required argument. ![](https://raw.githubusercontent.com/wcharczuk/go-chart/master/images/ma_goog_ltm.png) - There is a helper method, `GetLastValue` on the `MovingAverageSeries` to aid in creating a last value annotation for the series. + There is a helper method, `GetLastValue` on the `SimpleMovingAverageSeries` to aid in creating a last value annotation for the series. # More Intense Technical Analysis @@ -188,7 +188,7 @@ You can also have series that produce two values, i.e. a series that implements ![](https://raw.githubusercontent.com/wcharczuk/go-chart/master/images/spy_ltm_bbs.png) -Like the `MovingAverageSeries` this series takes an `InnerSeries` argument as required, and defaults to 10 samples and a `K` value of 2.0 (or two standard deviations in either direction). +Like the `SimpleMovingAverageSeries` this series takes an `InnerSeries` argument as required, and defaults to 10 samples and a `K` value of 2.0 (or two standard deviations in either direction). # Design Philosophy