Package com.archean.jautotrading

Examples of com.archean.jautotrading.MarketRule


                    }
                }
                action = tradeAction;
                break;
        }
        this.result = new MarketRule(condition, action);
        dispose();
    }
View Full Code Here


            }
        };
        RuleSettingsDlg ruleSettingsDlg = new RuleSettingsDlg((JFrame) SwingUtilities.getWindowAncestor(this));
        ruleSettingsDlg.setVisible(true);
        if (ruleSettingsDlg.result != null) {
            MarketRule rule = ruleSettingsDlg.result;
            if (rule.action instanceof RuleAction.TradeAction) {
                rule.action.setCallback(tradeCallback);
            }
            ruleList.add(rule);
            refreshRulesTable();
View Full Code Here

TOP

Related Classes of com.archean.jautotrading.MarketRule

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.