Okay, so to confirm. I would create my own code, we'll call it "Chris.java" and in there I code my strategy in java...is that right?
Also, while you mentioned everything is "abstracted away" I'm not sure if that will help me. For example, do you have functions written for stop-limit orders, or trailing stops? If so, then great, that has been abstracted away. If not, then I need to create those myself. What about all the other types of orders found here: https://www.interactivebrokers.com/en/index.php?f=4985 Are there functions already written that implement every one of those types of orders? If so, then great! Those have been abstracted away. But I still need to know what you've called those functions so I can properly call them in my strategy. I also need to know if those functions take any variables, etc. That's the list I'm looking for, if it exists. >From the "sample.java" file I see "goLong" and "goFlat". So that's two functions. Is there a list of all the other types of orders that have been implemented in JBookTrader? Like, how do I sell short? What's the variable you use for the quantity of shares I want to buy or sell? Are there some types of orders that you do not have coded already? This is what I was meaning earlier when I was asking where's the list of the functions. Before I can use a function I need to know what the available functions are, and what you've named them. Similarly, if there are some types of trades/orders that you don't have functions for then I need to know that too so I can create them myself. I was assuming that there are types of orders that I will need to create functions for. In order to create my own functions for order types that you don't have created isn't it true that I will have to know how JBookTrader interacts with the Interactive Brokers system in order to create the functions I need? Chris On Wednesday, April 23, 2014 10:26:54 AM UTC-5, Eugene Kononov wrote: > > Is it Sample.class or Sample.java? I noticed these are two different >> things. >> >> > Sample.java is the source code, Sample.class is a compiled binary. > -- You received this message because you are subscribed to the Google Groups "JBookTrader" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/jbooktrader. For more options, visit https://groups.google.com/d/optout.
