Monitor the Stock Price
Here is a Stock Price monitoring system that uses the ZK Spreadsheet's onCellChange event and Book sharing mechanism[1].
Purpose
Automatically place buy or sell command whenever the price of a selected stock reach some preset point.
Template Excel File with Proper Name Expressions
Here is an Excel template file with monitorSheet and dataSheet. monitorSheet shows the selected stocks that refer to the dataSheet with formulas. dataSheet is a sheet that list all available stocks.
monitorSheet
dataSheet
How ZK Spreadsheet Do the Job
Assume a stock price service will keep on pumping in updated stock price into the dataSheet on a separate thread. Whenever a new price is updated into dataSheet, ZK Spreadsheet will trigger the cell change event on monitorSheet that refer to the dataSheet. The onCellChange event listener registered on the ZK Spreadsheet will be called and check the prices . It compairs new price with user preset selling and buying price then trigger buying or selling via another Web service.
ZUML
<window apply="org.zkoss.zssessentials.cellaction.StockComposer" width="100%" vflex="1">
<spreadsheet id="stock"
src="/WEB-INF/cellaction/stock.xls"
maxrows="200"
maxcolumns="40"
vflex="1"
width="100%">
</spreadsheet>
<vlayout id="message" height="200px" width="100%" style="overflow:auto">
</vlayout>
</window>
Composer
This is the controller that handle the onCellChange event. The key method is the onCellChange$stocck() event listener. Whenever an onCellChange event is triggered, this method will be called and pass through with a CellEvent event. The event listener then compare if the cell changed is in the price column range and check if the price achieve buy or sell price setting by end user.
package org.zkoss.zssessentials.cellaction;
public class StockComposer extends GenericForwardComposer {
private StockUpdateService service;
private Vlayout message;
private Spreadsheet stock;
private Worksheet monitorSheet;
private int left;
private int top;
private int right;
private int bottom;
public void doAfterCompose(Component comp) throws Exception {
super.doAfterCompose(comp);
service = new StockUpdateService(stock);
monitorSheet = stock.getSelectedSheet();
final Range priceRange = Ranges.range(monitorSheet, "price");
left = priceRange.getColumn();
top = priceRange.getRow();
right = priceRange.getLastColumn();
bottom = priceRange.getLastRow();
}
public void onCellChange$stock(CellSelectionEvent event) {
final Worksheet sheet = event.getSheet();
if (!monitorSheet.equals(sheet)) {
return; //not the monitorSheet, return
}
final int eleft = event.getLeft();
final int etop = event.getTop();
final int eright = event.getRight();
final int ebottom = event.getBottom();
if (left > eright || eleft > right || top > ebottom || etop > bottom) {
return; //no intersection, return
}
for (int row = etop; row <= ebottom; ++row) {
for (int col = eleft; col <= eright; ++col) {
if (left <= col && col <= right && top <= row && row <= bottom) { //in range
final Range priceRng = Ranges.range(monitorSheet, row, col);
final Range sellRng = priceRng.getOffset(0, 3);
final Range buyRng = priceRng.getOffset(0, 2);
final Range codeRng = priceRng.getOffset(0, -1);
final double newPrice = ((Number)priceRng.getValue()).doubleValue();
final double sellPrice = ((Number)sellRng.getValue()).doubleValue();
final double buyPrice = ((Number)buyRng.getValue()).doubleValue();
final String stockCode = (String) codeRng.getValue();
if (newPrice <= buyPrice) {
buy(stockCode, priceRng);
} else if (newPrice >= sellPrice) {
sell(stockCode, priceRng);
}
}
}
}
}
private void buy(String stockCode, Range priceRng) {
//stockService.buy(stockCode, price);
new Label("Buy "+stockCode+" at price: "+priceRng.getText()).setParent(message);
}
private void sell(String stockCode, Range priceRng) {
new Label("Sell "+stockCode+" at price: "+priceRng.getText()).setParent(message);
}
}
Result
View complete source of ZUML stock.zul
View complete source of composer StockComposer.java
Version History
Version | Date | Content |
---|---|---|
All source code listed in this book is at Github.