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

    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

    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

    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

    clone, fromString, getString, parseNumber, toString

    Methods inherited from class java.lang.Object

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

    • open

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

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

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

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

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

    • OHLC

      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

      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