I am attempting to use the piece of code (see below) to place orders to TWS.? ?it works fine executing the orders on the demo account with confirmation?from TWS as expected...? However when connected to live
mode it does not execute successfully although connection to?TWS is confirmed..? The objective is to have this code running?continuously in the background executing trade files from a trade folder....
?
Not a python expert so excuse minor details!..? just concentrating on getting this to work in the live mode
?
Any help appreciated..? thanks
?
regards
ed
?
?
# ib_api_demo.py####
from ib.ext.Contract import Contract
from ib.ext.Order import Order
from ib.opt import Connection, message
import sys
import time
import os
import os.path
import shutil
import _winapi
? ?
def error_handler(msg):
? ? """Handles the capturing of error messages"""
? ? print ("Server Error: %s" % msg)
def reply_handler(msg):
? ? """Handles of server replies"""
? ? print ("Server Response: %s, %s" % (msg.typeName, msg))
def create_order(order_type, quantity, action):
? ? """Create an Order object (Market/Limit) to go long/short.
?
? ? order_type - 'MKT', 'LMT' for Market or Limit orders
? ? quantity - Integral number of assets to order
? ? action - 'BUY' or 'SELL'"""
? ? order = Order()
? ? order.m_orderType = order_type
? ? order.m_totalQuantity = quantity
? ? order.m_action = action
? ? return order
while True:
#if __name__ == "__main__":
? ? try:
? ? ? ? # Connect to the Trader Workstation (TWS) running on the
? ? ? ? # usual port of 7496, with a clientId of 100
? ? ? ? tws_conn = Connection.create(port=7496, clientId=100)
? ? ? ? tws_conn.connect()
? ? ? ? print ("connected!" + "\n")
? ? ? ? # Assign the error handling function defined above
? ? ? ? # to the TWS connection
? ? ? ? tws_conn.register(error_handler, 'Error')
? ? ? ? # Assign all of the server reply messages to the
? ? ? ? # reply_handler function defined above
? ? ? ? tws_conn.registerAll(reply_handler)
? ? ? ? contract_detail=GetFileDetails()
? ? ? ? # Create an order ID which is 'global' for this session. This
? ? ? ? # will need incrementing once new orders are submitted.
? ? ? ? order_id = contract_detail[9]
? ? ? ?
? ? ? ? # Create a contract in stock via SMART order routing
? ? ? ? eur_contract= create_contract(contract_detail[1], contract_detail[2], contract_detail[3], contract_detail[4], contract_detail[5])
? ? ? ? # Go long 100 shares of Google
? ? ? ? #aapl_order = create_order('MKT', 10, 'BUY')
? ? ? ? eur_order = create_order(contract_detail[6], contract_detail[7], contract_detail[8])
? ? ? ? # Use the connection to the send the order to IB
? ? ? ? tws_conn.placeOrder(order_id, eur_contract, eur_order)
? ? ? ?