imphasing / IBAutomater

Automates IB Gateway start, stopping and restarting.

Home Page:https://www.lean.io

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

QuantConnect / IBAutomater

IBAutomater is an automation tool for IB-Gateway 974 and above. It supports starting, stopping and automated logins for IB Gateway. This package is best used in conjunction with LEAN. LEAN handles the automatic login and portfolio construction once you start the Gateway.

In order to use IBAutomater you must have Java installed. Once you install it, reboot and IBAutomater should work.

The built package is hosted on NuGet and can be installed to your packet manager by: Install-Package QuantConnect.IBAutomater.

On installation to your solution, the IBAutomator has one key class to instantiate:

// Create a new instance of IBAutomater
_ibAutomater = new IBAutomater.IBAutomater(twsDirectory, ibVersion, userName, password, tradingMode, port);

// You can bind to event handlers to receive the output data.
_ibAutomater.OutputDataReceived += OnIbAutomaterOutputDataReceived;

//Gracefully handle errors
_ibAutomater.ErrorDataReceived += OnIbAutomaterErrorDataReceived;

// Get events once the IBGateway has exited.
_ibAutomater.Exited += OnIbAutomaterExited;

//Trigger the IBGateway to start and login with your configured parameters.
_ibAutomater.Start(false);

// Stop IBGateway with a simple command.
_ibAutomater.Stop();

About

Automates IB Gateway start, stopping and restarting.

https://www.lean.io

License:Apache License 2.0


Languages

Language:Java 57.8%Language:C# 41.4%Language:Shell 0.6%Language:Batchfile 0.3%