Package 

Class CandlestickSeries.Item

    • Field Summary

      Fields 
      Modifier and Type Field Description
      private double low
      private double high
      private double open
      private double close
    • Constructor Summary

      Constructors 
      Constructor Description
      CandlestickSeries.Item(double low, double high, double open, double close) An individual candlestick value.
    • Method Summary

      Modifier and Type Method Description
      double getLow()
      void setLow(double low)
      double getHigh()
      void setHigh(double high)
      double getOpen()
      void setOpen(double open)
      double getClose()
      void setClose(double close)
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

      • CandlestickSeries.Item

        CandlestickSeries.Item(double low, double high, double open, double close)
        An individual candlestick value.