![JAR search and dependency download from the Maven repository](/logo.png)
com.github.fluorumlabs.disconnect.highcharts.PlotRsiParamsOptions Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of disconnect-highcharts Show documentation
Show all versions of disconnect-highcharts Show documentation
Highcharts API bindings for Disconnect Zero
package com.github.fluorumlabs.disconnect.highcharts;
import js.lang.Any;
import org.teavm.jso.JSProperty;
public interface PlotRsiParamsOptions extends Any {
/**
* (Highstock) Number of maximum decimals that are used in RSI calculations.
*
* @see https://api.highcharts.com/highstock/plotOptions.rsi.params.decimals
*
* @implspec decimals?: number;
*
*/
@JSProperty("decimals")
double getDecimals();
/**
* (Highstock) Number of maximum decimals that are used in RSI calculations.
*
* @see https://api.highcharts.com/highstock/plotOptions.rsi.params.decimals
*
* @implspec decimals?: number;
*
*/
@JSProperty("decimals")
void setDecimals(double value);
/**
* (Highstock) The base period for indicator calculations. This is the
* number of data points which are taken into account for the indicator
* calculations.
*
* @see https://api.highcharts.com/highstock/plotOptions.rsi.params.period
*
* @implspec period?: number;
*
*/
@JSProperty("period")
double getPeriod();
/**
* (Highstock) The base period for indicator calculations. This is the
* number of data points which are taken into account for the indicator
* calculations.
*
* @see https://api.highcharts.com/highstock/plotOptions.rsi.params.period
*
* @implspec period?: number;
*
*/
@JSProperty("period")
void setPeriod(double value);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy