PureBytes Links
Trading Reference Links
|
Hello,
1. Anywhere but use them when needed. It makes no sense
to use them in every place just because they exist.
2. Yes
3. any letter except of reserved ones like C, H, L, O,
V
3. See the example:
i = 5;
j = 5;
a = i++;
b = ++j;
a will get the value of 5
b will get the value of 6
both i and j will end up with value of 6.
IN line
a = i++;
the value of i (5) is assigned to variable a and THEN value of
i is incremented (POST INCREMENTATION)
in line:
b = ++j
the value of j (5) is INCREMENTED FIRST and then result (6) is
assigned to variable b (PRE INCREMENTATION)
Best regards,Tomasz Janeczkoamibroker.com
<BLOCKQUOTE
>
----- Original Message -----
<DIV
>From:
IVA GmbH
To: <A title=amibroker@xxxxxxxxxxxxxxx
href="">Amibroker (Yahoo-Forum)
Sent: Wednesday, April 30, 2003 3:52
PM
Subject: [amibroker] Motr loop
questions
Hello,
I´d appreciate if someone ould clarify the
following "loop questions":
1./ Where in the AFL code can those loops if/else
and why/for be embedded? Just anywhere, where they´re needed?
2./ Can we have nested loops?
3./ In case of severeal loops in my code, can I
use any letter instead of the "i" for the iteration part so
that AFL doesn´t get mixed up?
4./ What is the difference between "i++" and
"++i". I saw it in one of -I believe- TJ´s posts.
Many thanks
Markus
Send
BUG REPORTS to bugs@xxxxxxxxxxxxxSend SUGGESTIONS to
suggest@xxxxxxxxxxxxx-----------------------------------------Post
AmiQuote-related messages ONLY to: amiquote@xxxxxxxxxxxxxxx (Web page: <A
href="">http://groups.yahoo.com/group/amiquote/messages/)--------------------------------------------Check
group FAQ at: <A
href="">http://groups.yahoo.com/group/amibroker/files/groupfaq.html
Your use of Yahoo! Groups is subject to the <A
href="">Yahoo! Terms of Service.
Yahoo! Groups Sponsor
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
Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.
|