# ta4j
**Repository Path**: qwzhang01/ta4j
## Basic Information
- **Project Name**: ta4j
- **Description**: No description available
- **Primary Language**: Unknown
- **License**: MIT
- **Default Branch**: master
- **Homepage**: None
- **GVP Project**: No
## Statistics
- **Stars**: 1
- **Forks**: 1
- **Created**: 2021-03-08
- **Last Updated**: 2025-01-04
## Categories & Tags
**Categories**: Uncategorized
**Tags**: None
## README
# ta4j   [](https://discord.gg/HX9MbWZ) [](https://opensource.org/licenses/MIT)  
***Technical Analysis For Java***

Ta4j is an open source Java library for [technical analysis](http://en.wikipedia.org/wiki/Technical_analysis). It provides the basic components for creation, evaluation and execution of trading strategies.
---
### Features
* [x] 100% Pure Java - works on any Java Platform version 11 or later
* [x] More than 130 technical indicators (Aroon, ATR, moving averages, parabolic SAR, RSI, etc.)
* [x] A powerful engine for building custom trading strategies
* [x] Utilities to run and compare strategies
* [x] Minimal 3rd party dependencies
* [x] Simple integration
* [x] One more thing: it's MIT licensed
### Maven configuration
Ta4j is available on [Maven Central](http://search.maven.org/#search). You just have to add the following dependency in your `pom.xml` file.
```xml
org.ta4j
ta4j-core
0.16
```
For ***snapshots***, add the following repository to your `pom.xml` file.
```xml
sonatype snapshots
https://oss.sonatype.org/content/repositories/snapshots
```
The current ***snapshot version*** is `0.17-SNAPSHOT` from the [develop](https://github.com/ta4j/ta4j/tree/develop) branch.
```xml
org.ta4j
ta4j-core
0.17-SNAPSHOT
```
You can also download ***example code*** from the maven central repository by adding the following dependency to your pom.xml:
```xml
org.ta4j
ta4j-examples
0.16
```
### Getting Help
The [wiki](https://ta4j.github.io/ta4j-wiki/) is the best place to start learning about ta4j. For more detailed questions, please use the [issues tracker](https://github.com/ta4j/ta4j/issues).
### Contributing to ta4j
Here are some ways for you to contribute to ta4j:
* Take a look at the [Roadmap items](https://ta4j.github.io/ta4j-wiki/Roadmap-and-Tasks.html)
* [Fork this repository](http://help.github.com/forking/) and submit pull requests.
* Take a look at [How to contribute](https://ta4j.github.io/ta4j-wiki/How-to-contribute)
See also: the [contribution policy](.github/CONTRIBUTING.md) and [Code of Conduct](CODE_OF_CONDUCT.md)