MVN

in.kncsolutions.dhelm.indicators : dhelm-indicators

Maven & Gradle

Jun 26, 2018

Dhelm-Indicators · Dhelm is a set of java-based open source libraries which can be used to develop software to perform technical analysis in stock market. The dhelm-indicator package includes APIs to calculate few common indicators. APIs for following indicators have been packaged into the v 1.0.0- 1. Simple Moving Average(SMA). 2. Exponential Moving Average(EMA). 3. Moving Average Convergence Divergence(MACD). 4. On Balance Volume(OBV). 5. Parabolic Stop and Reverse(PSAR). 6. Relative Strength Index(RSI). 7. Average Directional Index(ADX). 8. Bollinger Bands 9. Chaikin Money flow index. 10.Rate of Change(ROC). 11.Money Flow Index(MFI).

<dependency>
    <groupId>in.kncsolutions.dhelm.indicators</groupId>
    <artifactId>dhelm-indicators</artifactId>
    <version>1.0.1</version>
</dependency>
Copy
pom.xml
Table Of Contents

Latest Version

Choose a version of in.kncsolutions.dhelm.indicators : dhelm-indicators to add to Maven or Gradle - Latest Versions:

  • Latest Stable: 1.0.1

All Versions

Choose a version of in.kncsolutions.dhelm.indicators : dhelm-indicators to add to Maven or Gradle - All Versions:

Version Vulnerabilities Updated
1.0.x
dhelm-indicators-1.0.1
dhelm-indicators-1.0.0
dhelm-indicators-1.0.0-snapshot

How to add a dependency to Maven

Add the following in.kncsolutions.dhelm.indicators : dhelm-indicators maven dependency to the pom.xml file with your favorite IDE (IntelliJ / Eclipse / Netbeans):

<dependency>
    <groupId>in.kncsolutions.dhelm.indicators</groupId>
    <artifactId>dhelm-indicators</artifactId>
    <version>1.0.1</version>
</dependency>

How to add a dependency to Gradle

Gradle Groovy DSL: Add the following in.kncsolutions.dhelm.indicators : dhelm-indicators gradle dependency to your build.gradle file:

implementation 'in.kncsolutions.dhelm.indicators:dhelm-indicators:1.0.1'

Gradle Kotlin DSL: Add the following in.kncsolutions.dhelm.indicators : dhelm-indicators gradle kotlin dependency to your build.gradle.kts file:

implementation("in.kncsolutions.dhelm.indicators:dhelm-indicators:1.0.1")

How to add a dependency to SBT Scala

SBT Scala: Add the following in.kncsolutions.dhelm.indicators : dhelm-indicators sbt scala dependency to your build.sbt file:

libraryDependencies += "in.kncsolutions.dhelm.indicators" % "dhelm-indicators" % "1.0.1"