Welcome to the Traders Laboratory Forums.
Automated Trading Black box systems, strategy automation, algorithmic trading, etc...

Reply
Old 09-30-2010, 05:59 AM   #1

robertm's Avatar

Join Date: Jun 2009
Location: K.L.
Posts: 159
Ignore this user

Thanks: 29
Thanked 48 Times in 33 Posts

Using IB Data Feed - Amibroker (and Other)

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.

Last edited by robertm; 09-30-2010 at 06:03 AM. Reason: typo
robertm is offline  
Reply With Quote
Old 11-25-2010, 01:14 PM   #2

Join Date: Nov 2010
Posts: 4
Ignore this user

Thanks: 0
Thanked 1 Time in 1 Post

Re: Using IB Data Feed - Amibroker (and Other)

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.
Automated is offline  
Reply With Quote
The Following User Says Thank You to Automated For This Useful Post:
robertm (11-26-2010)
Old 12-11-2010, 11:27 AM   #3

Join Date: Dec 2010
Posts: 1
Ignore this user

Thanks: 0
Thanked 0 Times in 0 Posts

Re: Using IB Data Feed - Amibroker (and Other)

I am lookiing for a good broker that can accomodate a proprietary trading program written in Visual Basic. The program will need an interface for the visual basic.
LakerGuy is offline  
Reply With Quote
Old 12-13-2010, 05:32 PM   #4

Join Date: Dec 2010
Posts: 1
Ignore this user

Thanks: 0
Thanked 0 Times in 0 Posts

Re: Using IB Data Feed - Amibroker (and Other)

Quote:
Originally Posted by Automated »
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

Last edited by trash; 12-13-2010 at 05:58 PM.
trash is offline  
Reply With Quote
Old 12-19-2010, 10:26 AM   #5

Join Date: Dec 2010
Posts: 2
Ignore this user

Thanks: 0
Thanked 0 Times in 0 Posts

Re: Using IB Data Feed - Amibroker (and Other)

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.
luten is offline  
Reply With Quote

Reply

Thread Tools
Display Modes Help Others By Rating This Thread
Help Others By Rating This Thread:


All times are GMT -4. The time now is 11:12 AM.
Copyright ©2000 - 2012, Jelsoft Enterprises Ltd.
CS to VB integration by DeskLancer
©2006-2011 Traders Laboratory, All Rights Reserved.