User rating: 0
Joined: Sat 17 Jan, 2015, 01:22 Posts: 2 Location: United Kingdom,
Hi all, I'm a complete noob to jforex so please go easy on me if you can.
I have extensive background in mql4 programming and have recently switched over to jforex. Coming from the very concise mql4 book guide aimed at beginners I'm finding the resources very difficult to understand.
That being said, I'm making headway by reverse engineering codes. From what I understand, the current bid is called via tick.getBid() in other codes. However when I attempt to use this in my code and compile it I get the error message "tick cannot be resolved" what does this mean?
"X tick cannot be resolved" is Java compilation error which means that you are trying to access variable that is not available from given scope. Consider reading some Java tutorials to understand this topic better (you can easily google it).