Ta4j Parent

ta4j is a Java library providing a simple API for technical analysis.

License

License

MIT License
Categories

Categories

ta4j Business Logic Libraries Financial
GroupId

GroupId

org.ta4j
ArtifactId

ArtifactId

ta4j-parent
Last Version

Last Version

0.14
Release Date

Release Date

Type

Type

pom
Description

Description

Ta4j Parent
ta4j is a Java library providing a simple API for technical analysis.
Project URL

Project URL

http://github.com/ta4j/ta4j
Source Code Management

Source Code Management

http://github.com/ta4j/ta4j

Download ta4j-parent

Filename Size
ta4j-parent-0.14.pom 5 KB
Browse

How to add to project

<!-- https://jarcasting.com/artifacts/org.ta4j/ta4j-parent/ -->
<dependency>
    <groupId>org.ta4j</groupId>
    <artifactId>ta4j-parent</artifactId>
    <version>0.14</version>
    <type>pom</type>
</dependency>
// https://jarcasting.com/artifacts/org.ta4j/ta4j-parent/
implementation 'org.ta4j:ta4j-parent:0.14'
// https://jarcasting.com/artifacts/org.ta4j/ta4j-parent/
implementation ("org.ta4j:ta4j-parent:0.14")
'org.ta4j:ta4j-parent:pom:0.14'
<dependency org="org.ta4j" name="ta4j-parent" rev="0.14">
  <artifact name="ta4j-parent" type="pom" />
</dependency>
@Grapes(
@Grab(group='org.ta4j', module='ta4j-parent', version='0.14')
)
libraryDependencies += "org.ta4j" % "ta4j-parent" % "0.14"
[org.ta4j/ta4j-parent "0.14"]

Dependencies

There are no dependencies for this project. It is a standalone project that does not depend on any other jars.

Project Modules

  • ta4j-core
  • ta4j-examples

ta4j Build Status develop Build Status master Discord License: MIT Maven Central Sonatype Nexus (Snapshots)

Technical Analysis For Java

Ta4j main chart

Ta4j is an open source Java library for technical analysis. It provides the basic components for creation, evaluation and execution of trading strategies.


Features

  • 100% Pure Java - works on any Java Platform version 8 or later
  • More than 130 technical indicators (Aroon, ATR, moving averages, parabolic SAR, RSI, etc.)
  • A powerful engine for building custom trading strategies
  • Utilities to run and compare strategies
  • Minimal 3rd party dependencies
  • Simple integration
  • One more thing: it's MIT licensed

Maven configuration

Ta4j is available on Maven Central. You just have to add the following dependency in your pom.xml file.

<dependency>
  <groupId>org.ta4j</groupId>
  <artifactId>ta4j-core</artifactId>
  <version>0.14</version>
</dependency>

For snapshots, add the following repository to your pom.xml file.

<repository>
    <id>sonatype snapshots</id>
    <url>https://oss.sonatype.org/content/repositories/snapshots</url>
</repository>

The current snapshot version is 0.15-SNAPSHOT from the develop branch.

<dependency>
  <groupId>org.ta4j</groupId>
  <artifactId>ta4j-core</artifactId>
  <version>0.15-SNAPSHOT</version>
</dependency>

You can also download example code from the maven central repository by adding the following dependency to your pom.xml:

<dependency>
  <groupId>org.ta4j</groupId>
  <artifactId>ta4j-examples</artifactId>
  <version>0.14</version>
</dependency>

Getting Help

The wiki is the best place to start learning about ta4j. For more detailed questions, please use the issues tracker.

Contributing to ta4j

Here are some ways for you to contribute to ta4j:

See also: the contribution policy and Code of Cunduct

org.ta4j

Versions

Version
0.14
0.13
0.12
0.11
0.10