简体   繁体   English

使用TWS API获取所有子账户的未实现盈亏

[英]Using TWS API to get unrealised PnL of all subaccounts

I am trying to find the unrealised PnL of all the subaccounts in Interactive Brokers.我正在尝试查找盈透证券所有子账户的未实现盈亏。 As this is my first time using the TWS API, I am not sure what I am doing wrong.由于这是我第一次使用 TWS API,我不确定我做错了什么。

After reading through the API documentation, the reqPnL method on the EClient seemed like the ideal way to get what I want.通读 API 文档后,EClient 上的 reqPnL 方法似乎是获得我想要的内容的理想方式。 Below is the code I tried:下面是我试过的代码:

from ibapi.client import EClient
from ibapi.wrapper import EWrapper
from ibapi.contract import Contract
from threading import Timer


class TestApp(EWrapper, EClient):
    def __init__(self):
        EClient.__init__(self, self)

        self.reqPnL(17001, 'All', '')

    def error(self, reqId, errorCode, errorString):
        print("Error: ", reqId, " ", errorCode, " ", errorString)

    def pnl(self, reqId: int, dailyPnL: float, unrealizedPnL: float, realizedPnL: float):
        print("Daily PnL Single. ReqId:", reqId, "Position:", decimalMaxString(pos),
        "DailyPnL:", floatMaxString(dailyPnL), "UnrealizedPnL:", floatMaxString(unrealizedPnL),
        "RealizedPnL:", floatMaxString(realizedPnL), "Value:", floatMaxString(value))

        self.cancelPnL(17001)


def main():
    app = TestApp()
    app.connect("127.0.0.1", 7496, 0)
    app.run()


if __name__ == "__main__":
    main()

The results I am getting is:我得到的结果是:

Error:  -1   504   Not connected
Error:  -1   2104   Market data farm connection is OK:hfarm
Error:  -1   2104   Market data farm connection is OK:eufarmnj
Error:  -1   2104   Market data farm connection is OK:cashfarm
Error:  -1   2104   Market data farm connection is OK:usfuture
Error:  -1   2104   Market data farm connection is OK:afarm
Error:  -1   2104   Market data farm connection is OK:jfarm
Error:  -1   2104   Market data farm connection is OK:usfarm.nj
Error:  -1   2104   Market data farm connection is OK:eufarm
Error:  -1   2104   Market data farm connection is OK:usopt
Error:  -1   2104   Market data farm connection is OK:usfarm
Error:  -1   2106   HMDS data farm connection is OK:euhmds
Error:  -1   2106   HMDS data farm connection is OK:hkhmds
Error:  -1   2106   HMDS data farm connection is OK:fundfarm
Error:  -1   2106   HMDS data farm connection is OK:ushmds
Error:  -1   2158   Sec-def data farm connection is OK:secdefhk

I am not sure what am I doing wrong.我不确定我做错了什么。 I feel like either I am forgetting an Ewrapper function or I am not suppose to be using 17001 for the ReqId.我觉得要么我忘记了 Ewrapper 函数,要么我不应该将 17001 用于 ReqId。 Please help.请帮忙。

You cannot make a request in initialisation as connect has not yet been called.由于尚未调用连接,因此您无法在初始化时发出请求。 Try calling it after the nextValidId callback:尝试在 nextValidId 回调之后调用它:

from ibapi.client import EClient
from ibapi.wrapper import EWrapper
from ibapi.contract import Contract
from threading import Timer

class TestApp(EWrapper, EClient):
    def __init__(self):
        EClient.__init__(self, self)

    def nextValidId(self, orderId: int):
        self.orderId = orderId
        self.reqPnL(17001, 'All', '')

    def error(self, reqId, errorCode, errorString):
        print("Error: ", reqId, " ", errorCode, " ", errorString)

    def pnl(self, reqId: int, dailyPnL: float, unrealizedPnL: float, realizedPnL: float):
        print("Daily PnL Single. ReqId:", reqId, "Position:", decimalMaxString(pos),
        "DailyPnL:", floatMaxString(dailyPnL), "UnrealizedPnL:", floatMaxString(unrealizedPnL),
        "RealizedPnL:", floatMaxString(realizedPnL), "Value:", floatMaxString(value))

        self.cancelPnL(17001)

def main():
    app = TestApp()
    app.connect("127.0.0.1", 7496, 0)
    app.run()

if __name__ == "__main__":
    main()

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM