#
ta
Here are 18 public repositories matching this topic...
Technical Analysis Library Time-Series
technical
data
library
time
time-series
trading
analysis
python3
series
technical-analysis
ta-lib
ta
technical-analysis-library
technical-trading-systems
-
Updated
Apr 12, 2020 - Python
-
Updated
Mar 30, 2017 - Python
An open source technical analysis library for modern trading software
-
Updated
Oct 12, 2018 - C#
Service which reads current data from the Technische Alternative C.M.I. JSON API and publishes it to the logreposit backend.
-
Updated
Jun 2, 2019 - Java
If I catch you cheating, I'm gonna tell you no cheating.
-
Updated
Aug 16, 2016 - Java
-
Updated
May 3, 2019 - HTML
-
Updated
Nov 4, 2019 - Python
Improve this page
Add a description, image, and links to the ta topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the ta topic, visit your repo's landing page and select "manage topics."
When calculating the SMA of index 6 with period 5, it includes index 1, as the sum is inclusive.
However, it should only calculate with indexes 2, 3, 4, 5 and 6.
Solution:
Formula underneath the sum should be
k = i - p + 1