rterp / SumZeroTrading

A Java API for Developing Automated Trading Applications for the Equity, Futures, and Currency Markets
http://rterp.github.io/SumZeroTrading/
Other
145 stars 48 forks source link

Undefined Java Methods Found in Example Project #23

Closed vinceyap88 closed 8 years ago

vinceyap88 commented 8 years ago

Hi, I have found that the example projects EODTradingStrategy and IntradayTradingExample contains the undefined java methods(attached).

If you have the latest copies of these projects, kindly upload to the repositories.

Cheer, Vincent Yap

screen shot 2016-06-20 at 3 10 11 pm
rterp commented 8 years ago

The project is using a library called "lombok", which will automatically generate getter/setter methods when the project is compiled . You'll see a number of variables at the top of the TradeReferenceLine class annotated with @Getter. Try to do a clean/build from Netbeans and see if this takes care of the issue.

vinceyap88 commented 8 years ago

Thank you. I will try it in Eclipse.