com.github.fluorumlabs.disconnect.highcharts.PlotPriceenvelopesParamsOptions 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 PlotPriceenvelopesParamsOptions extends Any {
/**
* (Highstock) Percentage below the moving average that should be displayed.
* 0.1 means 90%. Relative to the calculated value.
*
* @see https://api.highcharts.com/highstock/plotOptions.priceenvelopes.params.bottomBand
*
* @implspec bottomBand?: number;
*
*/
@JSProperty("bottomBand")
double getBottomBand();
/**
* (Highstock) Percentage below the moving average that should be displayed.
* 0.1 means 90%. Relative to the calculated value.
*
* @see https://api.highcharts.com/highstock/plotOptions.priceenvelopes.params.bottomBand
*
* @implspec bottomBand?: number;
*
*/
@JSProperty("bottomBand")
void setBottomBand(double value);
/**
* (Highstock) The point index which indicator calculations will base. For
* example using OHLC data, index=2 means the indicator will be calculated
* using Low values.
*
* @see https://api.highcharts.com/highstock/plotOptions.priceenvelopes.params.index
*
* @implspec index?: number;
*
*/
@JSProperty("index")
double getIndex();
/**
* (Highstock) The point index which indicator calculations will base. For
* example using OHLC data, index=2 means the indicator will be calculated
* using Low values.
*
* @see https://api.highcharts.com/highstock/plotOptions.priceenvelopes.params.index
*
* @implspec index?: number;
*
*/
@JSProperty("index")
void setIndex(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.priceenvelopes.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.priceenvelopes.params.period
*
* @implspec period?: number;
*
*/
@JSProperty("period")
void setPeriod(double value);
/**
* (Highstock) Percentage above the moving average that should be displayed.
* 0.1 means 110%. Relative to the calculated value.
*
* @see https://api.highcharts.com/highstock/plotOptions.priceenvelopes.params.topBand
*
* @implspec topBand?: number;
*
*/
@JSProperty("topBand")
double getTopBand();
/**
* (Highstock) Percentage above the moving average that should be displayed.
* 0.1 means 110%. Relative to the calculated value.
*
* @see https://api.highcharts.com/highstock/plotOptions.priceenvelopes.params.topBand
*
* @implspec topBand?: number;
*
*/
@JSProperty("topBand")
void setTopBand(double value);
}