Quick Start Guide

Now that we have ibkr_api installed. Let us do some real work.

Let’s start working with the data

Creating Your Application

  1. Create your own application class
  2. Implement your initialize action
    1. Read any configuration information
    2. Connect to your application’s database
    3. Get the initial valid order id
    4. Get the initial valid request id (next_valid_id

F.A.Q

How do I exit my application?

At the end of each event loop iteration. A call is made to your classes act() function. When your application wants to quit out, all you need to do is call the stop() function. This will set the still_running flag to false, and will then exit normally.