> 1. Are 'ES', 'EUR', 'NQ', QQQ, etc are the name of instrument and the > classes named StrategyES.java, StrategyEUR.java, StrategyNQ, StrategyQQQ > are the strategy classes for each instrument respectively? > > Yes those are some simple classes that you can then subclass to trade those instruments. You don't HAVE TO use those, and you can easily make more for different instruments. They are generally there to make strategies simpler (so you don't have to redefine this for every strategy).
> 2. Are LongDefender1.java, LongDefender2.java, Simple.java,etc are the > Strategy classes which uses the above classes for Trading to TWS? > > Those strategies are where the trading logic is. JBookTrader is generally a platform that runs these strategies by measuring data and providing to the strategies, executing an update to the strategy every 1 second, and taking any order requests from the strategy and routing them to IB TWS and makes sure they execute with a few monitoring functions. > 3. I downloaded the TWS Java API and configured it in Netbeans. It gave me > a huge UI with number of buttons on the right side and 3 console bar on the > left. Now, please suggest me how can I embed my Strategy Panel inside this > TWS Java API such that I can see strategy panel directly inside the TWS API > and not open JBT and TWS java api separately. > > No. This would be silly. That program you downloaded is just a demo program to show off the different features of the API - it is not made to actually be used for anything. > Thanks in advance. > > -- > You received this message because you are subscribed to the Google Groups > "JBookTrader" group. > To view this discussion on the web visit > https://groups.google.com/d/msg/jbooktrader/-/M-3Kw0nuaN0J. > > To post to this group, send email to [email protected]. > To unsubscribe from this group, send email to > [email protected]. > For more options, visit this group at > http://groups.google.com/group/jbooktrader?hl=en. > -- You received this message because you are subscribed to the Google Groups "JBookTrader" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/jbooktrader?hl=en.
