2017-01-08 13:16:00 +01:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2017, 7u83 <7u83@mail.ru>
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions are met:
|
|
|
|
*
|
|
|
|
* * Redistributions of source code must retain the above copyright notice, this
|
|
|
|
* list of conditions and the following disclaimer.
|
|
|
|
* * Redistributions in binary form must reproduce the above copyright notice,
|
|
|
|
* this list of conditions and the following disclaimer in the documentation
|
|
|
|
* and/or other materials provided with the distribution.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
|
|
|
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
|
|
* ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
|
|
|
|
* LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
|
|
|
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
|
|
|
|
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
|
|
|
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
|
|
|
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
|
|
|
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
|
|
|
* POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
*/
|
|
|
|
package chart;
|
|
|
|
|
2017-01-23 18:56:09 +01:00
|
|
|
import gui.Globals;
|
|
|
|
import java.awt.Color;
|
|
|
|
import java.awt.Dimension;
|
|
|
|
import java.awt.Graphics;
|
|
|
|
import java.awt.Graphics2D;
|
|
|
|
import java.awt.Rectangle;
|
|
|
|
import java.text.DateFormat;
|
|
|
|
import java.text.SimpleDateFormat;
|
|
|
|
import java.util.Date;
|
|
|
|
import java.util.Iterator;
|
|
|
|
import javax.swing.Scrollable;
|
|
|
|
import sesim.Exchange;
|
|
|
|
import sesim.OHLCData;
|
|
|
|
import sesim.OHLCDataItem;
|
|
|
|
import sesim.Quote;
|
|
|
|
|
2017-01-08 13:16:00 +01:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @author 7u83 <7u83@mail.ru>
|
|
|
|
*/
|
|
|
|
public class FullChart extends javax.swing.JPanel {
|
|
|
|
|
2017-01-23 18:56:09 +01:00
|
|
|
public class Chart extends javax.swing.JPanel implements Exchange.QuoteReceiver, Scrollable {
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Creates new form Chart
|
|
|
|
*/
|
|
|
|
public Chart() {
|
|
|
|
initComponentsChart();
|
|
|
|
if (Globals.se == null) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
Globals.se.addQuoteReceiver(this);
|
|
|
|
|
|
|
|
//Graphics g = this.getGraphics();
|
|
|
|
//g.drawString("Hello world", 0, 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
int item_width = 10;
|
|
|
|
int items = 350;
|
|
|
|
long ntime = 0;
|
|
|
|
|
|
|
|
OHLCData data = new OHLCData(2000);
|
|
|
|
|
|
|
|
OHLCDataItem current = null;
|
|
|
|
|
|
|
|
// int min;
|
|
|
|
// int max;
|
|
|
|
int getY(float Y) {
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
void drawCandle(Graphics2D g, OHLCData d, int x, int y) {
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public Dimension getPreferredScrollableViewportSize() {
|
|
|
|
return this.getPreferredSize();
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public int getScrollableUnitIncrement(Rectangle visibleRect, int orientation, int direction) {
|
|
|
|
return 100;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public int getScrollableBlockIncrement(Rectangle visibleRect, int orientation, int direction) {
|
|
|
|
return 100;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public boolean getScrollableTracksViewportWidth() {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public boolean getScrollableTracksViewportHeight() {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
class XLegendDef {
|
|
|
|
|
|
|
|
double unit_width = 1;
|
|
|
|
int big_tick = 10;
|
|
|
|
long start;
|
|
|
|
|
|
|
|
XLegendDef() {
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
String getAt(int unit) {
|
2017-02-02 18:39:55 +01:00
|
|
|
Date date = new Date(0 + unit * 5000);
|
2017-01-23 18:56:09 +01:00
|
|
|
// DateFormat formatter = new SimpleDateFormat("HH:mm:ss:SSS");
|
|
|
|
DateFormat formatter = new SimpleDateFormat("HH:mm:ss");
|
|
|
|
String dateFormatted = formatter.format(date);
|
|
|
|
return dateFormatted;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
void drawOHLC(Graphics2D g, int x, OHLCDataItem di) {
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
void drawXLegend(Graphics2D g, XLegendDef xld) {
|
|
|
|
|
|
|
|
//XLegendDef xld = new XLegendDef();
|
|
|
|
g = (Graphics2D) g.create();
|
|
|
|
|
|
|
|
int xl_height = 30;
|
|
|
|
Dimension dim = this.getSize();
|
|
|
|
|
|
|
|
int em_height = g.getFontMetrics().getHeight();
|
|
|
|
int em_width = g.getFontMetrics().stringWidth("M");
|
|
|
|
|
|
|
|
int y = dim.height - em_height * 3;
|
|
|
|
|
|
|
|
g.drawLine(0, y, dim.width, y);
|
|
|
|
|
|
|
|
int n;
|
|
|
|
double x;
|
|
|
|
|
|
|
|
for (n = 0, x = 0; x < dim.width; x += em_width * xld.unit_width) {
|
|
|
|
|
|
|
|
if (n % xld.big_tick == 0) {
|
|
|
|
g.drawLine((int) x, y, (int) x, y + em_height);
|
|
|
|
} else {
|
|
|
|
g.drawLine((int) x, y, (int) x, y + em_height / 2);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (n % xld.big_tick == 0) {
|
|
|
|
String text = "Hello";
|
|
|
|
|
|
|
|
text = xld.getAt(n);
|
|
|
|
int swidth = g.getFontMetrics().stringWidth(text);
|
|
|
|
|
|
|
|
g.drawString(text, (int) x - swidth / 2, y + em_height * 2);
|
|
|
|
}
|
|
|
|
|
|
|
|
OHLCDataItem d;
|
|
|
|
try {
|
|
|
|
d = data.data.get(n);
|
|
|
|
} catch (Exception e) {
|
|
|
|
d = null;
|
|
|
|
}
|
|
|
|
|
|
|
|
n++;
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private void getData() {
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
class RenderCtx {
|
|
|
|
|
|
|
|
Rectangle rect;
|
|
|
|
float scaling;
|
|
|
|
float min;
|
|
|
|
Graphics2D g;
|
|
|
|
float iwidth;
|
|
|
|
|
|
|
|
float getY(float y) {
|
|
|
|
return rect.height - ((y - min) * scaling);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
float getY(float y, float min, float s, Rectangle r) {
|
|
|
|
|
|
|
|
return r.height - ((y - min) * s);
|
|
|
|
}
|
|
|
|
|
|
|
|
private void old_drawItem(Graphics2D g, Rectangle r, int prevx, int x, OHLCDataItem prev, OHLCDataItem item, float s, float min) {
|
|
|
|
|
|
|
|
if (prev == null) {
|
|
|
|
prev = item;
|
|
|
|
}
|
|
|
|
|
|
|
|
g.drawLine(prevx, (int) getY(prev.close, min, s, r), x, (int) getY(item.close, min, s, r));
|
|
|
|
g.drawLine(r.x, r.height + r.y, r.x + r.width, r.height + r.y);
|
|
|
|
}
|
|
|
|
|
|
|
|
private void drawItem_l(RenderCtx ctx, int prevx, int x, OHLCDataItem prev, OHLCDataItem item) {
|
|
|
|
|
|
|
|
if (prev == null) {
|
|
|
|
prev = item;
|
|
|
|
}
|
|
|
|
Graphics2D g = ctx.g;
|
|
|
|
|
|
|
|
Rectangle r = ctx.rect;
|
|
|
|
g.drawLine(prevx, (int) ctx.getY(prev.close), x, (int) ctx.getY(item.close));
|
|
|
|
g.drawLine(r.x, r.height + r.y, r.x + r.width, r.height + r.y);
|
|
|
|
}
|
|
|
|
|
|
|
|
private void drawItem(RenderCtx ctx, int prevx, int x, OHLCDataItem prev, OHLCDataItem i) {
|
|
|
|
|
|
|
|
if (prev == null) {
|
|
|
|
prev = i;
|
|
|
|
}
|
|
|
|
Graphics2D g = ctx.g;
|
|
|
|
|
|
|
|
Rectangle r = ctx.rect;
|
|
|
|
// g.drawLine(prevx, (int) ctx.getY(prev.close), x, (int) ctx.getY(item.close));
|
|
|
|
|
|
|
|
// g.drawLine(x,(int)ctx.getY(i.high),x,(int)ctx.getY(i.low));
|
|
|
|
if (i.open < i.close) {
|
|
|
|
|
|
|
|
g.setColor(Color.BLACK);
|
|
|
|
g.drawLine(x, (int) ctx.getY(i.close), x, (int) ctx.getY(i.high));
|
|
|
|
g.drawLine(x, (int) ctx.getY(i.low), x, (int) ctx.getY(i.open));
|
|
|
|
|
|
|
|
float w = ctx.iwidth;
|
|
|
|
float h = (int) (ctx.getY(i.open) - ctx.getY(i.close));
|
|
|
|
|
|
|
|
// System.out.printf("CLO: %f %f \n", w, h);
|
|
|
|
g.setColor(Color.GREEN);
|
|
|
|
g.fillRect((int) (x - w / 2), (int) ctx.getY(i.close), (int) w, (int) h);
|
|
|
|
g.setColor(Color.BLACK);
|
|
|
|
g.drawRect((int) (x - w / 2), (int) ctx.getY(i.close), (int) w, (int) h);
|
|
|
|
|
|
|
|
} else {
|
|
|
|
|
|
|
|
g.setColor(Color.RED);
|
|
|
|
g.drawLine(x, (int) ctx.getY(i.high), x, (int) ctx.getY(i.close));
|
|
|
|
g.drawLine(x, (int) ctx.getY(i.open), x, (int) ctx.getY(i.low));
|
|
|
|
|
|
|
|
float w = ctx.iwidth;
|
|
|
|
float h = (int) (ctx.getY(i.close) - ctx.getY(i.open));
|
|
|
|
|
|
|
|
g.fillRect((int) (x - w / 2), (int) ctx.getY(i.open), (int) w, (int) h);
|
|
|
|
g.setColor(Color.BLACK);
|
|
|
|
g.drawRect((int) (x - w / 2), (int) ctx.getY(i.open), (int) w, (int) h);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
g.drawLine(r.x, r.height + r.y, r.x + r.width, r.height + r.y);
|
|
|
|
}
|
|
|
|
|
|
|
|
private void drawYLegend(Graphics2D g) {
|
|
|
|
|
|
|
|
|
|
|
|
// Dimension dim = jScrollPane1.
|
|
|
|
//Dimension dim = new Dimension();
|
|
|
|
Rectangle dim = g.getClipBounds();
|
|
|
|
//dim.height = 300;
|
|
|
|
|
|
|
|
System.out.printf("GetX %d %d\n", dim.x,dim.width);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Dimension dim0 = this.getSize();
|
|
|
|
//Rectangle dim = this.getVisibleRect();
|
|
|
|
|
|
|
|
g.drawLine(dim.width+dim.x - 50, 0, dim.x+dim.width - 50, dim.height);
|
|
|
|
// System.out.printf("Size: %d %d\n",dim.width,dim.height);
|
|
|
|
// System.exit(0);
|
|
|
|
}
|
|
|
|
|
|
|
|
private void draw(Graphics2D g) {
|
|
|
|
|
|
|
|
if (data == null) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (data.size() == 0) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
OHLCDataItem di0 = data.get(0);
|
|
|
|
XLegendDef xld = new XLegendDef();
|
|
|
|
this.drawXLegend(g, xld);
|
|
|
|
this.drawYLegend(g);
|
|
|
|
|
|
|
|
int em_height = g.getFontMetrics().getHeight();
|
|
|
|
int em_width = g.getFontMetrics().stringWidth("M");
|
|
|
|
|
|
|
|
this.getSize();
|
|
|
|
|
|
|
|
int pwidth = em_width * items;
|
|
|
|
int phight = 400;
|
|
|
|
|
|
|
|
this.setPreferredSize(new Dimension(pwidth, phight));
|
|
|
|
this.revalidate();
|
|
|
|
|
|
|
|
Dimension dim = this.getSize();
|
|
|
|
|
|
|
|
Iterator<OHLCDataItem> it = data.iterator();
|
|
|
|
OHLCDataItem prev = null;
|
|
|
|
int myi = 0;
|
|
|
|
|
|
|
|
RenderCtx ctx = new RenderCtx();
|
|
|
|
|
|
|
|
Rectangle r = new Rectangle(0, 2 * em_width, pwidth, dim.height - 6 * em_width);
|
|
|
|
ctx.rect = r;
|
|
|
|
ctx.scaling = (float) r.height / (data.getMax() - data.getMin());
|
|
|
|
ctx.min = data.getMin();
|
|
|
|
ctx.g = g;
|
|
|
|
ctx.iwidth = em_width - em_width / 5f;
|
|
|
|
|
|
|
|
//System.out.printf("Scaling: %f %f %f %f %f\n",diff,(float)r.height,data.getMin(),data.getMax(),yscaling);
|
|
|
|
while (it.hasNext()) {
|
|
|
|
OHLCDataItem di = it.next();
|
|
|
|
|
|
|
|
int x = myi * em_width;
|
|
|
|
this.drawItem(ctx, x - em_width, x, prev, di); //, ctx.scaling, data.getMin());
|
|
|
|
|
|
|
|
myi++;
|
|
|
|
prev = di;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void paintComponent(Graphics go) {
|
|
|
|
super.paintComponent(go);
|
|
|
|
|
|
|
|
Graphics2D g = (Graphics2D) go;
|
|
|
|
|
|
|
|
g.setColor(Color.GRAY);
|
|
|
|
|
|
|
|
g.setBackground(Color.BLACK);
|
|
|
|
// g.get
|
|
|
|
|
|
|
|
Rectangle bounds = g.getDeviceConfiguration().getBounds();
|
|
|
|
// System.out.print(bounds.width + "\n");
|
|
|
|
|
|
|
|
//g.fillRect(0, 0, 100, 100);
|
|
|
|
Dimension d = this.getSize();
|
|
|
|
|
|
|
|
//g.drawString("Hello world", 810, 10);
|
|
|
|
//g.drawLine(0, 0, d.width, d.height);
|
|
|
|
//this.setPreferredSize(new Dimension(2000,4000));
|
|
|
|
draw(g);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* This method is called from within the constructor to initialize the
|
|
|
|
* form. WARNING: Do NOT modify this code. The content of this method is
|
|
|
|
* always regenerated by the Form Editor.
|
|
|
|
*/
|
|
|
|
@SuppressWarnings("unchecked")
|
|
|
|
// <editor-fold defaultstate="collapsed" desc="Generated Code">
|
|
|
|
private void initComponentsChart() {
|
|
|
|
|
|
|
|
setBackground(java.awt.Color.white);
|
|
|
|
setBorder(null);
|
|
|
|
setOpaque(false);
|
|
|
|
setPreferredSize(new java.awt.Dimension(300, 300));
|
|
|
|
setRequestFocusEnabled(false);
|
|
|
|
|
|
|
|
javax.swing.GroupLayout layout = new javax.swing.GroupLayout(this);
|
|
|
|
this.setLayout(layout);
|
|
|
|
layout.setHorizontalGroup(
|
|
|
|
layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
|
|
|
|
.addGap(0, 300, Short.MAX_VALUE)
|
|
|
|
);
|
|
|
|
layout.setVerticalGroup(
|
|
|
|
layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
|
|
|
|
.addGap(0, 300, Short.MAX_VALUE)
|
|
|
|
);
|
|
|
|
}// </editor-fold>
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void UpdateQuote(Quote q) {
|
|
|
|
// System.out.print("Quote Received\n");
|
|
|
|
// this.realTimeAdd(q.time, (float) q.price, (float)q.volume);
|
|
|
|
|
|
|
|
data.realTimeAdd(q.time, (float) q.price, (float) q.volume);
|
|
|
|
// this.invalidate();
|
|
|
|
this.repaint();
|
|
|
|
}
|
|
|
|
|
|
|
|
// Variables declaration - do not modify
|
|
|
|
// End of variables declaration
|
|
|
|
}
|
|
|
|
|
2017-01-08 13:16:00 +01:00
|
|
|
/**
|
|
|
|
* Creates new form FullChart
|
|
|
|
*/
|
|
|
|
public FullChart() {
|
|
|
|
initComponents();
|
2017-01-23 18:56:09 +01:00
|
|
|
Chart chart = new Chart();
|
2017-02-05 10:01:13 +01:00
|
|
|
// this.jScrollPane1.setViewportView(chart);
|
2017-01-23 18:56:09 +01:00
|
|
|
|
|
|
|
|
|
|
|
// this.jScrollPane1.setRowHeaderView(chart);
|
|
|
|
// this.jScrollPane1.setCorner(JScrollPane., chart);
|
2017-01-08 13:16:00 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* This method is called from within the constructor to initialize the form.
|
|
|
|
* WARNING: Do NOT modify this code. The content of this method is always
|
|
|
|
* regenerated by the Form Editor.
|
|
|
|
*/
|
|
|
|
@SuppressWarnings("unchecked")
|
|
|
|
// <editor-fold defaultstate="collapsed" desc="Generated Code">//GEN-BEGIN:initComponents
|
|
|
|
private void initComponents() {
|
|
|
|
|
2017-02-05 10:01:13 +01:00
|
|
|
chart2 = new chart.Chart();
|
2017-01-08 13:16:00 +01:00
|
|
|
|
2017-02-05 10:01:13 +01:00
|
|
|
javax.swing.GroupLayout chart2Layout = new javax.swing.GroupLayout(chart2);
|
|
|
|
chart2.setLayout(chart2Layout);
|
|
|
|
chart2Layout.setHorizontalGroup(
|
|
|
|
chart2Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
|
|
|
|
.addGap(0, 617, Short.MAX_VALUE)
|
2017-01-08 13:16:00 +01:00
|
|
|
);
|
2017-02-05 10:01:13 +01:00
|
|
|
chart2Layout.setVerticalGroup(
|
|
|
|
chart2Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
|
|
|
|
.addGap(0, 300, Short.MAX_VALUE)
|
2017-01-08 13:16:00 +01:00
|
|
|
);
|
|
|
|
|
|
|
|
javax.swing.GroupLayout layout = new javax.swing.GroupLayout(this);
|
|
|
|
this.setLayout(layout);
|
|
|
|
layout.setHorizontalGroup(
|
|
|
|
layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
|
2017-02-05 10:01:13 +01:00
|
|
|
.addGroup(javax.swing.GroupLayout.Alignment.TRAILING, layout.createSequentialGroup()
|
2017-01-08 13:16:00 +01:00
|
|
|
.addContainerGap()
|
2017-02-05 10:01:13 +01:00
|
|
|
.addComponent(chart2, javax.swing.GroupLayout.DEFAULT_SIZE, 617, Short.MAX_VALUE)
|
2017-01-08 13:16:00 +01:00
|
|
|
.addContainerGap())
|
|
|
|
);
|
|
|
|
layout.setVerticalGroup(
|
|
|
|
layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
|
2017-02-05 10:01:13 +01:00
|
|
|
.addGroup(javax.swing.GroupLayout.Alignment.TRAILING, layout.createSequentialGroup()
|
|
|
|
.addContainerGap(27, Short.MAX_VALUE)
|
|
|
|
.addComponent(chart2, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE)
|
2017-01-08 13:16:00 +01:00
|
|
|
.addContainerGap())
|
|
|
|
);
|
|
|
|
}// </editor-fold>//GEN-END:initComponents
|
|
|
|
|
|
|
|
|
|
|
|
// Variables declaration - do not modify//GEN-BEGIN:variables
|
2017-02-05 10:01:13 +01:00
|
|
|
private chart.Chart chart2;
|
2017-01-08 13:16:00 +01:00
|
|
|
// End of variables declaration//GEN-END:variables
|
|
|
|
}
|