Ta4j Examples

Provides examples that demonstrate how to use ta4j

License

License

MIT License
Categories

Categories

ta4j Business Logic Libraries Financial
GroupId

GroupId

org.ta4j
ArtifactId

ArtifactId

ta4j-examples
Last Version

Last Version

0.14
Release Date

Release Date

Type

Type

jar
Description

Description

Ta4j Examples
Provides examples that demonstrate how to use ta4j

Download ta4j-examples

How to add to project

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

Dependencies

compile (4)

Group / Artifact Type Version
org.ta4j : ta4j-core jar 0.14
com.opencsv : opencsv jar 3.9
org.jfree : jfreechart jar 1.0.17
ch.qos.logback : logback-classic jar 1.2.3

test (1)

Group / Artifact Type Version
junit : junit jar 4.13.1

Project Modules

There are no modules declared in this project.

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