Ta4j Parent

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

Лицензия

Лицензия

MIT License
Категории

Категории

ta4j Прикладные библиотеки Financial
Группа

Группа

org.ta4j
Идентификатор

Идентификатор

ta4j-parent
Последняя версия

Последняя версия

0.14
Дата

Дата

Тип

Тип

pom
Описание

Описание

Ta4j Parent
ta4j is a Java library providing a simple API for technical analysis.
Ссылка на сайт

Ссылка на сайт

http://github.com/ta4j/ta4j
Система контроля версий

Система контроля версий

http://github.com/ta4j/ta4j

Скачать ta4j-parent

Имя Файла Размер
ta4j-parent-0.14.pom 5 KB
Обзор

Как подключить последнюю версию

<!-- 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"]

Зависимости

Библиотека не имеет зависимостей. Это самодостаточное приложение, которое не зависит ни от каких других библиотек.

Модули Проекта

  • 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

Версии библиотеки

Версия
0.14
0.13
0.12
0.11
0.10