All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.fluorumlabs.disconnect.highcharts.PlotPivotpointsParamsOptions Maven / Gradle / Ivy

There is a newer version: 0.1.0-alpha2
Show newest version
package com.github.fluorumlabs.disconnect.highcharts;

import java.lang.String;
import javax.annotation.Nullable;
import js.lang.Any;
import org.teavm.jso.JSProperty;

public interface PlotPivotpointsParamsOptions extends Any {
  /**
   * (Highstock) Algorithm used to calculate ressistance and support lines
   * based on pivot points. Implemented algorithms: 'standard',
   * 'fibonacci' and 'camarilla'
   *
   * @see https://api.highcharts.com/highstock/plotOptions.pivotpoints.params.algorithm
   *
   * @implspec algorithm?: string;
   *
   */
  @JSProperty("algorithm")
  @Nullable
  String getAlgorithm();

  /**
   * (Highstock) Algorithm used to calculate ressistance and support lines
   * based on pivot points. Implemented algorithms: 'standard',
   * 'fibonacci' and 'camarilla'
   *
   * @see https://api.highcharts.com/highstock/plotOptions.pivotpoints.params.algorithm
   *
   * @implspec algorithm?: string;
   *
   */
  @JSProperty("algorithm")
  void setAlgorithm(String 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.pivotpoints.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.pivotpoints.params.period
   *
   * @implspec period?: number;
   *
   */
  @JSProperty("period")
  void setPeriod(double value);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy