• 大小: 9KB
    文件类型: .zip
    金币: 1
    下载: 0 次
    发布日期: 2021-01-03
  • 标签: kline  java  k线图  

资源简介

绘制k线,比较简单,适合初学者以供参考,希望大家喜欢哦

资源截图

代码片段和文件信息

import java.awt.Color;//颜色系统
import java.text.SimpleDateFormat;//时间格式
import java.awt.Paint;//画笔系统
import org.jfree.data.time.*;
import org.jfree.data.time.Day;
import org.jfree.data.time.ohlc.OHLCSeries;
import org.jfree.data.time.ohlc.OHLCSeriesCollection;
import org.jfree.chart.renderer.xy.*;
import org.jfree.chart.axis.*;
import org.jfree.chart.plot.*;
import org.jfree.chart.*;

public class KLineCombineChart {

public static void main(String[] args) {
     SimpleDateFormat dateFormat = new SimpleDateFormat(“yyyy-MM-dd“);//设置日期格式
     double highValue = Double.MIN_VALUE;//设置K线数据当中的最大值
     double minValue = Double.MAX_VALUE;//设置K线数据当中的最小值
     double high2Value = Double.MIN_VALUE;//设置成交量的最大值
     double min2Value = Double.MAX_VALUE;//设置成交量的最低值
     OHLCSeries series

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     文件          25  2012-01-02 14:00  meta-INF\MANIFEST.MF
     文件        1193  2012-01-02 13:46  KLineCombineChart$1.class
     文件        8597  2012-01-02 13:46  KLineCombineChart.class
     文件        9923  2012-01-02 13:46  KLineCombineChart.java
     文件        1081  2012-01-02 13:41  .classpath
     文件         381  2012-01-02 13:00  .project
     文件         629  2012-01-02 13:00  .settings\org.eclipse.jdt.core.prefs

评论

共有 条评论