> Dear friends, > I am trying to develop a nerual networks strategy based on > Jbooktrader, since Jbooktrader is already an established software. > However, my friend warned me that Java will be much much lower than C+ > + in high performance computing. To develop a C++ trading system will > be a very huge project. Can anyone give me a hint? in the beginnings of Java we indeed had a speed problem. C/C++ was by means faster than Java. But now with Java 6 we have quite a fast environment. Some voices even say that Java is superior to C/C++ because it has managed code which can be optimized by the runtime during runtime. C/C++ does not have this feature. If you run your JVM with the "- server" switch, many Java programs run much faster. So before porting JBT to C++ you should investigate if for your requirements Java is fast enough. It has so many advantages, especially that it really runs on every platform. So you can even deploy Java programs in the cloud very easily, e.g. the amazon or google cloud.
for neural computing there exist quite good open source Java packages: http://en.wikipedia.org/wiki/JOONE http://en.wikipedia.org/wiki/Encog http://en.wikipedia.org/wiki/Neuroph -- 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.
