> > 1. Both optimizers (brute force and the divide-and-conquer) run about > 2 times faster, compared to the previous release. Thanks to > ShaggsTheStud for the design and implementation of this significant > improvement. >
Forgot to mention: this change introduces some restructuring in the framework. What this means is that if you are using your own indicators and/or strategies, they would need to be modified slightly. Specifically, every indicator must make an explicit call to super(int... parameters). If you use your own indicators, it's just an addition of one line of code to your indicators. Additionally, every strategy must implement the new setIndicators() method. This is where the indicators are instantiated and registered now. Up until this release, this instantiation and registration took place in the constructor of the strategy. Please refer to sample strategies and indicators for reference. If anything is unclear, feel free to ask. -- 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.
