1
我能夠使用IBrokers通過API提交標準期貨和股票訂單。當我嘗試使用同樣的方法進行即期外匯交易時,我沒有收到錯誤消息,但訂單並未通過交易平臺工作窗口,因爲它與其他合約類型一樣。交易平臺中IBrokers的貨幣(FX)訂單
contract = twsCurrency("EUR.USD")
Order = twsOrder(
reqIds(tws),
action = "BUY",
totalQuantity = 1000000,
orderType = "LMT",
lmtPrice = 1.0600
)
placeOrder(tws,
Contract = contract,
Order)