| java.lang.Object org.jfree.data.ComparableObjectItem org.jfree.data.time.ohlc.OHLCItem
OHLCItem | public class OHLCItem extends ComparableObjectItem (Code) | | An item representing data in the form (period, open, high, low, close).
since: 1.0.4 |
Constructor Summary | |
public | OHLCItem(RegularTimePeriod period, double open, double high, double low, double close) Creates a new instance of OHLCItem . |
OHLCItem | public OHLCItem(RegularTimePeriod period, double open, double high, double low, double close)(Code) | | Creates a new instance of OHLCItem .
Parameters: period - the time period. Parameters: open - the open-value. Parameters: high - the high-value. Parameters: low - the low-value. Parameters: close - the close-value. |
getCloseValue | public double getCloseValue()(Code) | | Returns the close value.
The close value. |
getHighValue | public double getHighValue()(Code) | | Returns the high value.
The high value. |
getLowValue | public double getLowValue()(Code) | | Returns the low value.
The low value. |
getOpenValue | public double getOpenValue()(Code) | | Returns the open value.
The open value. |
getYValue | public double getYValue()(Code) | | Returns the y-value.
The y-value. |
|
|