RE: [amibroker] Continue and Break Statement

2006-11-06 Thread Terry
Not that I know of. Maybe you could simulate with if () tests like this? for (i = 1; i barCount; i++) { code; code; if (NOT conditionSkip) { //Skips this section of code when conditionSkip is True code to execute normally; } if (conditionBreak) i = barCount; }

RE: [amibroker] Continue and Break Statement

2006-11-06 Thread Herman
have a look at the Mouse functions... you can break out of or pause a loop on a mouseclick. herman -Original Message- From: amibroker@yahoogroups.com [mailto:[EMAIL PROTECTED] Behalf Of jay_podda Sent: November 6, 2006 2:55 PM To: amibroker@yahoogroups.com Subject: [amibroker] Continue