トップ  >  リファレンス  >  サンプルソースコード  >  ストラテジーAPI  >  TestWaitForUpdateResubmit.java
TestWaitForUpdateResubmit.java

注意事項:
サンプルソースコードには実際にオーダーを発注するものがあります。
サンプルソースコードのストラテジーを起動する場合は、注意して下さい。



// Copyright (c) 2009 Dukascopy (Suisse) SA. All Rights Reserved.
package jforex.orders;


import com.dukascopy.api.*;
import com.dukascopy.api.IEngine.OrderCommand;

/**
 このストラテジーは起動時に約定拒否される成行オーダーを送信し、約定拒否されたら約定拒否されないようなオーダーで再送信する。

注意:意図的に約定拒否されるようマイナスロットでオーダーしていますが、APIのバージョンによってはマイナスロットオーダーするとストラテジーが停止します。 
 */
@RequiresFullAccess
public class TestWaitForUpdateResubmit implements IStrategy {
    private IEngine engine;
    private IConsole console;
    
    public void onStart(IContext context) throws JFException {
        this.engine = context.getEngine();
        this.console = context.getConsole();
        context.setSubscribedInstruments(java.util.Collections.singleton(Instrument.EURUSD), true);
        
        IOrder order = engine.submitOrder("order", Instrument.EURUSD, OrderCommand.BUY, -0.001);
        
        IMessage message = order.waitForUpdate(2000, IOrder.State.OPENED);// オーダー状態OPENED待ちの為の2秒待ち
        // 約定拒否された後のオーダー再送信
        if(message.getType() == IMessage.Type.ORDER_SUBMIT_REJECTED){
            order = engine.submitOrder("order", Instrument.EURUSD, OrderCommand.BUY, 0.001);
            message = order.waitForUpdate(2000, IOrder.State.OPENED);// オーダー状態OPENED待ちの為の2秒待ち
        }

        print(String.format("更新後: オーダー状態=%s, メッセージ=%s", order.getState(), message));        
         
    }

    public void onMessage(IMessage message) throws JFException {  
        print("<html><font color=\"gray\">"+message+"</font>");
    }
    
    public void print(Object message) {
        console.getOut().println(message);
    }

    // ストラテジー停止時に全オーダークローズ
    public void onStop() throws JFException {
        for (IOrder order : engine.getOrders()) {
            order.close();
        }
    }    

    public void onAccount(IAccount account) throws JFException {
    }

    public void onTick(Instrument instrument, ITick tick) throws JFException {
    }

    public void onBar(Instrument instrument, Period period, IBar askBar, IBar bidBar) throws JFException {
    }


}




スポンサーリンク

スポンサーリンク
検索
リファレンスツリー


Copyright ©2016 JForexAPIで自動売買させ隊! All Rights Reserved.


Top

inserted by FC2 system