Package io.deephaven.plot.datasets.ohlc
Interface OHLCDataSeriesInternal
- All Superinterfaces:
DataSeries
,DataSeriesInternal
,OHLCDataSeries
,PlotExceptionCause
,Serializable
,Series
,SeriesInternal
,XYDataSeries
,XYDataSeriesInternal
- All Known Implementing Classes:
OHLCDataSeriesArray
,OHLCDataSeriesSwappableTableArray
,OHLCDataSeriesTableArray
XYDataSeriesInternal
for open-high-low-close charts.-
Method Summary
Modifier and TypeMethodDescriptionCreate a copy of the series on a different set of axes.double
getClose
(int i) Gets the close value at indexi
.double
getHigh
(int i) Gets the high value at indexi
.double
getLow
(int i) Gets the low value at indexi
.double
getOpen
(int i) Gets the open value at indexi
.Methods inherited from interface io.deephaven.plot.datasets.DataSeries
errorBarColor, errorBarColor, errorBarColor, gradientVisible, lineColor, lineColor, lineColor, lineStyle, linesVisible, pointColor, pointColor, pointColor, pointLabel, pointLabelFormat, pointShape, pointShape, pointSize, pointSize, pointSize, pointSize, pointsVisible, seriesColor, seriesColor, seriesColor, toolTipPattern, xToolTipPattern, yToolTipPattern
Methods inherited from interface io.deephaven.plot.datasets.DataSeriesInternal
axes, chart, getErrorBarColor, getGradientVisible, getLineColor, getLineStyle, getLinesVisible, getPlotInfo, getPointLabelFormat, getPointsVisible, getSeriesColor, getXToolTipPattern, getYToolTipPattern, id, name, size
Methods inherited from interface io.deephaven.plot.SeriesInternal
addPartitionedTableHandle, addSwappableTable, addTableHandle, getPartitionedTableHandles, getSwappableTables, getTableHandles, removeTableHandle
Methods inherited from interface io.deephaven.plot.datasets.xy.XYDataSeries
pointColor, pointColor, pointColor, pointColor, pointColor, pointColor, pointColor, pointColorInteger, pointLabel, pointLabel, pointLabel, pointLabel, pointShape, pointShape, pointShape, pointShape, pointShape, pointSize, pointSize, pointSize, pointSize, pointSize, pointSize, pointSize
Methods inherited from interface io.deephaven.plot.datasets.xy.XYDataSeriesInternal
drawXError, drawYError, getEndX, getEndY, getPointColor, getPointColor, getPointLabel, getPointLabel, getPointShape, getPointShape, getPointSize, getPointSize, getStartX, getStartY, getX, getY
-
Method Details
-
copy
Description copied from interface:SeriesInternal
Create a copy of the series on a different set of axes.- Specified by:
copy
in interfaceDataSeriesInternal
- Specified by:
copy
in interfaceSeriesInternal
- Specified by:
copy
in interfaceXYDataSeriesInternal
- Parameters:
axes
- new axes.- Returns:
- copy of the series on a different set of axes.
-
getOpen
double getOpen(int i) Gets the open value at indexi
.- Parameters:
i
- index- Returns:
- open value at given index
-
getHigh
double getHigh(int i) Gets the high value at indexi
.- Parameters:
i
- index- Returns:
- high value at given index
-
getLow
double getLow(int i) Gets the low value at indexi
.- Parameters:
i
- index- Returns:
- low value at given index
-
getClose
double getClose(int i) Gets the close value at indexi
.- Parameters:
i
- index- Returns:
- close value at given index
-