Search results

  1. J

    Sterling Trader Pro & Esignal

    Dump Stirling and use IB it free. Also ESignal has built in plugins for IB TWS in versions 11.3 or 10.6. I have used both eSignal versions, 11.3 is ok but 11.4(RC) has all the 10.6 features but is faster now. 11.4 will be officially released in the next few weeks. James
  2. J

    What do you think of this aglo software

    This does the same and is free. http://code.google.com/p/trade-manager/ You just need to implement the interface to your broker.
  3. J

    Api TWS IB trading software

    Does anyone have any feature they would like to see or feel I am lacking ? As I'm just refactoring the packaging then after that I've run out of features to code. I will add an option to use the IB real-time level I data API vs the 5sec updates that I currently support. All ideas...
  4. J

    Api TWS IB trading software

    Another free TWS API application has a nice UI all java. You can write compile and deploy strategies in the UI but its better to develop them in a Java IDE such as Eclipse and just pop them in the UI. http://code.google.com/p/trade-manager/ Back testing seems fast on my p.c 7i processor...
  5. J

    Interactive Brokers JAVA API Delay for placeOrder

    Sounds about right I see the same in my app. Thats probably not bad when you think of the comms to/from and then the msg que response times on their end. Time will vary depending on time of day I'm sure the first 5mins of the day things are slower.
  6. J

    Need a expert on API trading systems / and pattern Recognition

    Check this out http://code.google.com/p/trade-manager/ and free PM me if you need any development on this.
  7. J

    A script to close all open orders

    yup here u go public void close AllOrders(){} dude you need to give so much more info!!!
  8. J

    Api TWS IB trading software

    The strategy defined uses the 9:35 bar so you need to import the csv b4 9:30EST and then run strategy it will wait till 9:35 and if the criteria are met will fire orders to TWS IB if filled it will then start managing them. You waant see any action on the chart until 9:30:05 as the setup only...
  9. J

    Api TWS IB trading software

    http://code.google.com/p/trade-manager/ James
  10. J

    IB TWS trading software

    http://code.google.com/p/trade-manager/ source is here
  11. J

    Simple trading app for IB TWS api

    This is free to down load worth a look if you are starting your own coding in Java. Uses TWS API for data and implements most of the features of that API. http://www.youtube.com/watch?v=gV2FXyWMe9M http://www.youtube.com/watch?v=gV2FXyWMe9M Historical data on any TWS supported...
  12. J

    Api TWS IB trading software

    This is free to down load worth a look if you are starting your own coding in Java. Uses TWS API for data and implements most of the features of that API. http://www.youtube.com/watch?v=gV2FXyWMe9M http://www.youtube.com/watch?v=gV2FXyWMe9M Historical data on any TWS supported...
  13. J

    IB TWS trading software

    This is free to down load worth a look if you are starting your own coding in Java. Uses TWS API for data and implements most of the features of that API. http://www.youtube.com/watch?v=gV2FXyWMe9M http://www.youtube.com/watch?v=gV2FXyWMe9M Historical data on any TWS supported...
  14. J

    IB TWS API - how soon is the latest price bar available?

    They are usually available 1-3 seconds after they complete. You can also get 5sec bars and build your own bars. The bars come thru with the start time of the bar and are usually available on the IB message queue and are received 1-2 seconds after completion...
  15. J

    Language for automated trading system

    If your asking the question which language then you probably need to find someone to write this app for you. But saying that if you want portability, speed of development, consistent UI e.t.c then Java is the choice. Most of what you need is already out there for free i.e DBs, OR mapping...
  16. J

    Turn-of-the-month effect strategy

    http://www.youtube.com/watch?v=MvrpfGrHFSA I've written this to interface with TWS IB and I'm sure I can easily code your strategy. Contact me with the details (private PM and I'll give you my contact details) if you can write Java you can code it yourself if not I'll do it. Should be...
  17. J

    How do u calculate Pivots on a charts.

    I have also added a $ pivot range by stock price to weed out the bases. So if the stocks say between 15-40 $ the pivot range from high to low across a 5 bar pivot must be at least 15c. I also have config parameters for the bar side i.e. you can ask for pivots where all the bars must be green...
  18. J

    How do u calculate Pivots on a charts.

    I use pivots to trail stop positions. Does anyone have a better solution than this to calculate pivots on a chart? See attached chart 1/ Calculate the quadratic curve between the 5 vwap points A, E so y= a + bx + cx^2 where the Correlation Coeff is > 0.6 this gives fairly good fit. This...
  19. J

    IB TWS java trading application

    I'm a full time trader have been for 5yrs now and yes I make money. Trade gapping stock first hr of the day mostly and some climos.
  20. J

    Strategy application I've built from scratch

    I've built this strategy trader version 1.1 complete http://www.youtube.com/watch?v=MvrpfGrHFSA Historical data on any TWS supported time frame. 1min-Daily download from TWS and stored. Base time frame is configurable. Current default is 5min bars. Charts using JFreeCharts updatable every...
Back
Top