reqMktDepth: Request Market Depth Feed from TWS

Description Usage Arguments Details Value Note Author(s) References See Also Examples

Description

Allows for streaming market depth (order book) data to be handled in R.

Usage

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
reqMktDepth(conn, 
            Contract,
            tickerId = "1",
            numRows = "20",
            timeStamp = TRUE,
            playback = 1,
            file = "",
            verbose = TRUE,
            eventWrapper = eWrapper(),
            CALLBACK = twsCALLBACK, ...)

cancelMktDepth(conn,tickerId)

Arguments

conn

a valid twsConnection connection

Contract

twsContract object(s) requested data for

tickerId

the ticker id to associate with the returned data

numRows

depth of book

timeStamp

include R time stamps

playback

playback speed adjustment

file

passed to internal cat calls. See associated help.

verbose

print diagnostics?

eventWrapper

callback closure

CALLBACK

main reciever loop

...

additional args

Details

This function provides R level access to book data as returned by the TWS API. The Interactive Brokers documentation should be reference for the exact meaning of the returned data.

timeStamps is unique to the R API in that each incoming signal will be marked with a (potentially) unique timestamp. Alternatively it is possible to pass a formatting string for use in format(Sys.time()). To suppress the time stamp set the argument to NULL.

Callbacks, via eventUpdateMktDepth, eventUpdateMktDepthL2, or CALLBACK are designed to allow for R level processing of the real-time data stream.

The first two correspond to actions based upon the actual signal recieved. These may be user-defined functions taking the appropriate arguments. Each message recieved (each update to the market depth) will invoke one of these callbacks. By default when nothing is specified, the code will call the default method for printing the results to the screen via cat.

Note that the use of the argument file will be passed to these cat calls, and therefore it will be possible to use the functionality of cat directly - e.g. piping output or writing to a connection. The simplest use of file would be to specify the name of a file to append the output of the stream to.

The CALLBACK argument is used for more control of the incoming results. This requires user-level error checking as well as TWS API interaction. It is here for advanced use and until documented should be left alone.

Value

The book depth.

Note

As R is single threaded - this request will run until interupted by an error or by user action. Both will clean up after themselves when appropriate.

Author(s)

Jeffrey A. Ryan

References

Interactive Brokers API: http://individuals.interactivebrokers.com/php/apiguide/apiguide.htm

See Also

twsConnect,twsContract

Examples

1
2
3
4
5
6
7
8
9
## Not run: 
tws <- twsConnect()
contract <- twsEquity("QQQQ","SMART","ISLAND")
reqMktDepth(tws, contract)

# write to a file
reqMktDepth(tws, contract, file='out.dat')

## End(Not run)

hgodinez/ibrokers documentation built on May 17, 2019, 3:57 p.m.