Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/ta4j/ta4j

A Java library for technical analysis.
https://github.com/ta4j/ta4j

bitcoin ethereum forex java java-library litecoin ripple stocks ta4j tachnical-analysis technical-analysis trading trading-algorithms trading-strategies

Last synced: 26 days ago
JSON representation

A Java library for technical analysis.

Awesome Lists containing this project

README

        

# ta4j ![Build Status develop](https://github.com/ta4j/ta4j/workflows/Test/badge.svg?branch=develop) ![Build Status master](https://github.com/ta4j/ta4j/workflows/Test/badge.svg?branch=master) [![Discord](https://img.shields.io/discord/745552125769023488.svg?label=&logo=discord&logoColor=ffffff&color=7389D8&labelColor=6A7EC2)](https://discord.gg/HX9MbWZ) [![License: MIT](https://img.shields.io/badge/License-MIT-brightgreen.svg)](https://opensource.org/licenses/MIT) ![Maven Central](https://img.shields.io/maven-central/v/org.ta4j/ta4j-parent?color=blue&label=Version) ![Sonatype Nexus (Snapshots)](https://img.shields.io/nexus/s/org.ta4j/ta4j-parent?label=Snapshot&server=https%3A%2F%2Foss.sonatype.org%2F)

***Technical Analysis For Java***

![Ta4j main chart](https://raw.githubusercontent.com/ta4j/ta4j-wiki/master/img/ta4j_main_chart.png)

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.17

```

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.18-SNAPSHOT` from the [develop](https://github.com/ta4j/ta4j/tree/develop) branch.
```xml

org.ta4j
ta4j-core
0.18-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.17

```
### 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)