English 中文(简体)
互动经纪人自动交易
原标题:Interactive Brokers automated trading

我曾尝试在视觉演播室2008年安装互动经纪人C++预报器,但我知道C++非常有限,我保留错误:和;

(1) 是否有办法使用某种轻描写的语言与互动经纪人联系并实现贸易。 F.E.

login.( username , password )
>>> Connected 
makeTrade( GOOG , 550 )
>>> Trade Completed 

象牙齿一样,有些光亮也会是罚款,而“是” 我研究了IBPY,但我不理解java2python系统是如何运作的。

2) 你如何建立自动系统,或你如何与互动经纪人建立自动化贸易系统?

问题回答

The "DDE for Excel" API is by far the easiest of the API s to get up and running, and IB provides a sample program with instructions as to how to get it working. https://interactivebrokers.github.io/tws-api/excel_apis.html


And many options are now available to work with TWS API

While there s no officially supported Python API, I ve been using ibpy successfully for months now, and it s quite easy. No need to concern oneself with java2python etc. All I had to do was clone ibpy somewhere:

git clone https://github.com/blampe/IbPy

从那里安装:

cd IbPy
python setup.py install

And voila是这样做的。 最初,我从

Once you ve got that installed, the interface in python is pretty much identical to the Java API interface: IB API pdf

I found it useful to look at the TWS Test Client Java code included with the IB API.

Edit: IB has now had their own python API for a while, so not much more need for ibPy unless you re on python 2.

或你可以使用IBrokers包裹的R。 例:

tws <- twsConnect()
id <- reqIds(tws)
placeOrder(tws, twsSTK("AAPL"), twsOrder(id))
cancelOrder(id)

https://interactivebrokers.github.io/tws-api/index.html” rel=“nofollow noretinger”>TWS 2008/4/a。

选择以下任何内容:Excel:

  1. C#
  2. C++
  3. VB
  4. Java
  5. Python
  6. Excel




相关问题
Can Django models use MySQL functions?

Is there a way to force Django models to pass a field to a MySQL function every time the model data is read or loaded? To clarify what I mean in SQL, I want the Django model to produce something like ...

An enterprise scheduler for python (like quartz)

I am looking for an enterprise tasks scheduler for python, like quartz is for Java. Requirements: Persistent: if the process restarts or the machine restarts, then all the jobs must stay there and ...

How to remove unique, then duplicate dictionaries in a list?

Given the following list that contains some duplicate and some unique dictionaries, what is the best method to remove unique dictionaries first, then reduce the duplicate dictionaries to single ...

What is suggested seed value to use with random.seed()?

Simple enough question: I m using python random module to generate random integers. I want to know what is the suggested value to use with the random.seed() function? Currently I am letting this ...

How can I make the PyDev editor selectively ignore errors?

I m using PyDev under Eclipse to write some Jython code. I ve got numerous instances where I need to do something like this: import com.work.project.component.client.Interface.ISubInterface as ...

How do I profile `paster serve` s startup time?

Python s paster serve app.ini is taking longer than I would like to be ready for the first request. I know how to profile requests with middleware, but how do I profile the initialization time? I ...

Pragmatically adding give-aways/freebies to an online store

Our business currently has an online store and recently we ve been offering free specials to our customers. Right now, we simply display the special and give the buyer a notice stating we will add the ...

Converting Dictionary to List? [duplicate]

I m trying to convert a Python dictionary into a Python list, in order to perform some calculations. #My dictionary dict = {} dict[ Capital ]="London" dict[ Food ]="Fish&Chips" dict[ 2012 ]="...

热门标签