amibroker

HomeDevLog

New IQFeed plugin 6.0.3

A new version of IQFeed plugin has been released that features the following changes/improvements as compared to 5.0x:

  1. Microsecond timestamp resolution in Tick mode (see Symbol->Quote editor to see the timestamps)

    _N(Title = StrFormat("{{NAME}} - {{INTERVAL}} {{DATE}}.%03g%03g {{VALUES}}", MilliSec(), MicroSec() ));

  2. Historical Bid/Ask data in the Tick mode available as arrays in Aux1 and Aux2 fields

    Plot( C, "Last", colorDefault, styleDots | styleNoLine );
    Plot( Aux1, "Bid", colorRed );
    Plot( Aux2, "Ask", colorGreen );

  3. OpenInterest data available in EOD mode (base time interval: EOD)
  4. Slightly lowered CPU usage

IMPORTANT: The plugin *requires* newest IQFeed Client software version 5.2.x as it relies on protocol version 5.2. You can download IQClient 5.2 from http://www.iqfeed.net/iqfeed_client_5_2_4_0.exe

You can try out new IQFeed plugin now
http://www.amibroker.com/bin/iq603/IQFeed.dll (32-bit)
http://www.amibroker.com/bin/iq603x64/IQFeed.dll (64-bit)

Choose the version matching your installed AmiBroker, close any running AmiBroker instance and copy the DLL to "Plugins" subfolder.

You should see plugin version 6.0.3 in Tools->Plugins window.

Note this plugin is still beta version. Thanks go to Jorgen for early testing & feedback.

Comments are closed.