Jump to content

Welcome to the new Traders Laboratory! Please bear with us as we finish the migration over the next few days. If you find any issues, want to leave feedback, get in touch with us, or offer suggestions please post to the Support forum here.

  • Welcome Guests

    Welcome. You are currently viewing the forum as a guest which does not give you access to all the great features at Traders Laboratory such as interacting with members, access to all forums, downloading attachments, and eligibility to win free giveaways. Registration is fast, simple and absolutely free. Create a FREE Traders Laboratory account here.

robertm

Using IB Data Feed - Amibroker (and Other)

Recommended Posts

I'm interested to know of peoples experience using the IB data feed (primarily for FX) with Amibroker specifically, but also how people have found this in general (SR, NT, whatever).

 

Also is anybody using the execution plugin for IB that is available for Amibroker and how have you found it?

 

Thanks again peeps.

Edited by robertm
typo

Share this post


Link to post
Share on other sites

I have been using the IB interface to Amibroker for 2+ years with great results. I made some initial coding errors until I really understood Amibroker. Their support is really great. I now have two systems trading using the AB/IB combination. They're not making consistent money yet, but I keep tuning them and have many profitable days. I've actually written about a dozen different systems, all using the Auto analysis/Exploration part of Amibroker.

 

There's nothing out there more elegant and easy to use than Amibroker/Interactive Brokers combo. Very compact code and it's easy to program in, ONCE you understand the data array metholodogy of AmiBroker. for/next loop are verboten, although supported.

Share this post


Link to post
Share on other sites

for/next loop are verboten, although supported.

 

Hi Automated, what do you mean by that exactly? Do you mean it's not recommended to use for/next loop? If so, why?

 

Thanks

Edited by trash

Share this post


Link to post
Share on other sites

I use AB extensively as well, including within an automated system I'm running. Wrt for/next loops, they are discouraged in AB because the fundamental data type is an array. So most operations are performed on an entire timeline of values at once (which is quite elegant, but a little hard to understand at first).

 

For example, if you have the array 'C' that represents closing values on each bar, then

 

TwentyBarHighs = HHV(C, 20);

 

would set the variable TwentyBarHighs to an ARRAY, each element of which is calculated as the highest value of C in the prior 20 bars (inclusive). For/Next loops are absolutely supported, and are sometimes needed, but usually the array operations are far more efficient.

 

I find AB an incredibly productive and well-supported environment. Takes a bit of time investment to learn, but it's a solid platform.

 

L.

Share this post


Link to post
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.


×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.