Java 类org.jfree.data.xy.DefaultOHLCDataset 实例源码

项目:SmartStocks    文件:StockAnalysisPanel.java   
private DefaultOHLCDataset createDataSetFromStockInfo(StockInfo[][] dataList) {
    int totalLength = 0;
    for (int index = 0; index < dataList.length; index++) {
        logger.log("running on datalist index " + index + " value is null? " + (dataList[index]==null) );
        totalLength += dataList[index].length;
    }

    SimpleDateFormat dateFormat = new SimpleDateFormat();
    dateFormat.applyPattern("dd/MM/YYYY");

    OHLCDataItem[] ohlcData = new OHLCDataItem[totalLength];
    int OHLCIndex = 0;
    for (int dataListIndex = 0; dataListIndex < dataList.length; dataListIndex++) {
        StockInfo[] data = dataList[dataListIndex];
        for (int index = 0; index < data.length; index++) {
            logger.log("data in index " + index + " is null? " + (data[index] == null) );
            ohlcData[OHLCIndex] = new OHLCDataItem(data[index].date, data[index].open, data[index].high, data[index].low, data[index].close, data[index].volume);

            logger.log("<R> stock chart " + dateFormat.format(data[index].date.getTime()) + " open: " + data[index].open + " high: " + data[index].high + " low: " + data[index].low + " close: " + data[index].close);
            OHLCIndex++;
        }
    }

    return new DefaultOHLCDataset("Stock", ohlcData);
}
项目:parabuild-ci    文件:DefaultOHLCDatasetTests.java   
/**
 * A small test for the data range calculated on this dataset.
 */
public void testDataRange() {
    OHLCDataItem[] data = new OHLCDataItem[3];
    data[0] = new OHLCDataItem(new Date(11L), 2.0, 4.0, 1.0, 3.0, 100.0);
    data[1] = new OHLCDataItem(new Date(22L), 4.0, 9.0, 2.0, 5.0, 120.0);
    data[2] = new OHLCDataItem(new Date(33L), 3.0, 7.0, 3.0, 6.0, 140.0);
    DefaultOHLCDataset d = new DefaultOHLCDataset("S1", data);
    Range r = DatasetUtilities.findRangeBounds(d, false);
    assertEquals(1.0, r.getLowerBound(), EPSILON);
    assertEquals(9.0, r.getUpperBound(), EPSILON);
}
项目:groovychart    文件:DefaultOHLCDatasetBuilder.java   
public void processNode(Object name, Map map, Object value) throws Exception {
    if(value != null && value instanceof DefaultOHLCDataset) {
        this.xyDataset = (DefaultOHLCDataset)value;
    }else {
        // TODO
    }          
}
项目:nabs    文件:DefaultOHLCDatasetTests.java   
/**
 * A small test for the data range calculated on this dataset.
 */
public void testDataRange() {
    OHLCDataItem[] data = new OHLCDataItem[3];
    data[0] = new OHLCDataItem(new Date(11L), 2.0, 4.0, 1.0, 3.0, 100.0);
    data[1] = new OHLCDataItem(new Date(22L), 4.0, 9.0, 2.0, 5.0, 120.0);
    data[2] = new OHLCDataItem(new Date(33L), 3.0, 7.0, 3.0, 6.0, 140.0);
    DefaultOHLCDataset d = new DefaultOHLCDataset("S1", data);
    Range r = DatasetUtilities.findRangeBounds(d, false);
    assertEquals(1.0, r.getLowerBound(), EPSILON);
    assertEquals(9.0, r.getUpperBound(), EPSILON);
}
项目:astor    文件:DefaultOHLCDatasetTests.java   
/**
 * A small test for the data range calculated on this dataset.
 */
public void testDataRange() {
    OHLCDataItem[] data = new OHLCDataItem[3];
    data[0] = new OHLCDataItem(new Date(11L), 2.0, 4.0, 1.0, 3.0, 100.0);
    data[1] = new OHLCDataItem(new Date(22L), 4.0, 9.0, 2.0, 5.0, 120.0);
    data[2] = new OHLCDataItem(new Date(33L), 3.0, 7.0, 3.0, 6.0, 140.0);
    DefaultOHLCDataset d = new DefaultOHLCDataset("S1", data);
    Range r = DatasetUtilities.findRangeBounds(d, true);
    assertEquals(1.0, r.getLowerBound(), EPSILON);
    assertEquals(9.0, r.getUpperBound(), EPSILON);
}
项目:SmartStocks    文件:StockAnalysisPanel.java   
private JFreeChart createPredictionChart(DefaultOHLCDataset dataset) {
    // Create the JFreeChart for prediction
    JFreeChart predictionChart = ChartFactory.createHighLowChart("Stock Price Prediction",
            "Time", "Price", dataset, true);

    return predictionChart;
}
项目:astor    文件:DefaultOHLCDatasetTests.java   
/**
 * Verify that this class implements {@link PublicCloneable}.
 */
public void testPublicCloneable() {
    DefaultOHLCDataset d1 = new DefaultOHLCDataset("Series 1",
            new OHLCDataItem[0]);
    assertTrue(d1 instanceof PublicCloneable);
}
项目:groovychart    文件:DefaultOHLCDatasetBuilder.java   
/**
 * Getter for property xyDataset.
 * @return Value of property xyDataset.
 */
public DefaultOHLCDataset getXyDataset() {
    return this.xyDataset;
}
项目:groovychart    文件:DefaultOHLCDatasetBuilder.java   
/**
 * Setter for property xyDataset.
 * @param xyDataset New value of property xyDataset.
 */
public void setXyDataset(DefaultOHLCDataset xyDataset) {
    this.xyDataset = xyDataset;
}