PureBytes Links
Trading Reference Links
|
Hello,
For what is worth
SHIFT+BREAK/PAUSE
allows to 'manually' break any loop.
If you mean 'break' statement in AFL code then indeed it is not
available but it can be done the other way:
docontinue = True;
while( docontinue AND ... yourcondition.... )
{
.....
....
if( you want to break) docontinue = False;
}
Best regards,
Tomasz Janeczko
amibroker.com
----- Original Message -----
From: "Ron Krebs" <rkrebs@xxxxxxxxxxxxx>
To: <amibroker@xxxxxxxxxxxxxxx>
Sent: Tuesday, January 27, 2004 6:17 AM
Subject: [amibroker] Re: Breaking out of a loop...
> Hi Dingo,
> The loops ARE working - If I replace the 'N = IIF('
> with a simple increment of N, all is well.
> This is simple code, not rocket science...
> It appears that AB will not allow breakout from a loop, unless I'm
> missing something mighty basic and better go back to assembly
> language.
>
> The loop behavior is the same no matter what type of loop is
> implemented.
> Regards,
> Ron
>
>
>
> --- In amibroker@xxxxxxxxxxxxxxx, "dingo" <dingo@xxxx> wrote:
> > Well Ron, I've been TRYING to help you but you're making it awfully
> > difficult. My ESP isn't working as well as it used and I'm just
> not picking
> > the signals of what your formula looks like.
> >
> > Perhaps if you actually copied the formula into your next reply and
> and let
> > me actually SEE it I'll be able to get your going.
> >
> > BTW - my suggestions do work. From the error message you're
> getting you
> > don't even have the loops working to even get out of.
>
>
>
> Send BUG REPORTS to bugs@xxxxxxxxxxxxx
> Send SUGGESTIONS to suggest@xxxxxxxxxxxxx
> -----------------------------------------
> Post AmiQuote-related messages ONLY to: amiquote@xxxxxxxxxxxxxxx
> (Web page: http://groups.yahoo.com/group/amiquote/messages/)
> --------------------------------------------
> Check group FAQ at: http://groups.yahoo.com/group/amibroker/files/groupfaq.html
>
>
> Yahoo! Groups Links
>
> To visit your group on the web, go to:
> http://groups.yahoo.com/group/amibroker/
>
> To unsubscribe from this group, send an email to:
> amibroker-unsubscribe@xxxxxxxxxxxxxxx
>
> Your use of Yahoo! Groups is subject to:
> http://docs.yahoo.com/info/terms/
>
>
>
Send BUG REPORTS to bugs@xxxxxxxxxxxxx
Send SUGGESTIONS to suggest@xxxxxxxxxxxxx
-----------------------------------------
Post AmiQuote-related messages ONLY to: amiquote@xxxxxxxxxxxxxxx
(Web page: http://groups.yahoo.com/group/amiquote/messages/)
--------------------------------------------
Check group FAQ at: http://groups.yahoo.com/group/amibroker/files/groupfaq.html
------------------------ Yahoo! Groups Sponsor ---------------------~-->
Buy Ink Cartridges or Refill Kits for your HP, Epson, Canon or Lexmark
Printer at MyInks.com. Free s/h on orders $50 or more to the US & Canada.
http://www.c1tracking.com/l.asp?cid=5511
http://us.click.yahoo.com/mOAaAA/3exGAA/qnsNAA/GHeqlB/TM
---------------------------------------------------------------------~->
Yahoo! Groups Links
To visit your group on the web, go to:
http://groups.yahoo.com/group/amibroker/
To unsubscribe from this group, send an email to:
amibroker-unsubscribe@xxxxxxxxxxxxxxx
Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
|