You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
deftickle(self: 'IbkrClient') ->Result: # pragma: no cover
45
+
deftickle(self: 'IbkrClient', log: bool=False) ->Result: # pragma: no cover
46
46
"""
47
47
If the gateway has not received any requests for several minutes an open session will automatically timeout. The tickle endpoint pings the server to prevent the session from ending. It is expected to call this endpoint approximately every 60 seconds to maintain the connection to the brokerage session.
48
+
49
+
Args:
50
+
log (bool, optional): Log the tickle request. Defaults to False.
48
51
"""
49
-
returnself.post('tickle', log=False)
52
+
returnself.post('tickle', log=log)
50
53
51
54
defreauthenticate(self: 'IbkrClient') ->Result: # pragma: no cover
0 commit comments