Hi, I would like to build an automated trading system using just eSignal and IB Trader. I have downloaded and installed the required plug-in.
Connection between esignal and IB Brokers is supported through efs by using the command:
var VarName = new IBBroker;
Then, I can use the variable VarName to submit orders to IB for example:
VarName .Buy(PARAMETERS);
However the problem is that this function (and other functions) return allways NULL.
Is there anything wrong?
Can I find somewhere a tutorial explaining me all the avaliable function for IB? I have found only examples using these functions but not a tutorial.
Finally, is it possible to built a simple trading system using just efs and IB. If it is not could you suggest me another way (may create a c++ application using eSignal and IB desktop API???)
Connection between esignal and IB Brokers is supported through efs by using the command:
var VarName = new IBBroker;
Then, I can use the variable VarName to submit orders to IB for example:
VarName .Buy(PARAMETERS);
However the problem is that this function (and other functions) return allways NULL.
Is there anything wrong?
Can I find somewhere a tutorial explaining me all the avaliable function for IB? I have found only examples using these functions but not a tutorial.
Finally, is it possible to built a simple trading system using just efs and IB. If it is not could you suggest me another way (may create a c++ application using eSignal and IB desktop API???)
Comment