All Implemented Interfaces:
Cloneable

public final class OHLC extends GSeriesValue
The OHLC series value with Open, High, Mid, Low and Close values where Mid is optional.
Author:
Christopher Mindus
  • Field Summary Link icon

    Fields
    Modifier and Type
    Field
    Description
    final double
    The High value.
    final double
    The High value.
    final double
    The High value.
    final double
    The Mid value (or Double.NaN for none).
    final double
    The Open value.
  • Constructor Summary Link icon

    Constructors
    Constructor
    Description
    OHLC(double open, double high, double low, double close)
    Constructor for the OHLC value point without Mid value.
    OHLC(double open, double high, double mid, double low, double close)
    Constructor for the OHLC value point.
  • Method Summary Link icon

    Modifier and Type
    Method
    Description
    boolean
    Checks if two fill objects are equal.
    Gets the fill type.

    Methods inherited from class com.iizix.prop.ui.chart.series.GSeriesValue Link icon

    clone, fromString, getString, parseNumber, toString

    Methods inherited from class java.lang.Object Link icon

    finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
  • Field Details Link icon

    • open Link icon

      public final double open
      The Open value. An unspecified value is Double.NaN.
    • high Link icon

      public final double high
      The High value. An unspecified value is Double.NaN.
    • mid Link icon

      public final double mid
      The Mid value (or Double.NaN for none).
    • low Link icon

      public final double low
      The High value. An unspecified value is Double.NaN.
    • close Link icon

      public final double close
      The High value. An unspecified value is Double.NaN.
  • Constructor Details Link icon

    • OHLC Link icon

      public OHLC(double open, double high, double low, double close)
      Constructor for the OHLC value point without Mid value.
      Parameters:
      open - The Open value, Double.NaN for no value.
      high - The High value, Double.NaN for no value.
      low - The Low value, Double.NaN for no value.
      close - The Close value, Double.NaN for no value.
    • OHLC Link icon

      public OHLC(double open, double high, double mid, double low, double close)
      Constructor for the OHLC value point.
      Parameters:
      open - The Open value, Double.NaN for no value.
      high - The High value, Double.NaN for no value.
      mid - The Mid value, Double.NaN for no value.
      low - The Low value, Double.NaN for no value.
      close - The Close value, Double.NaN for no value.
  • Method Details Link icon