PureBytes Links
Trading Reference Links
|
Hello,
You should NEVER use arbitrary number in your
loops.
You should ALWAYS use BarCount variable:
Count=<FONT
color=#ff00ff>0<FONT face="Courier New"
size=4>;j=<FONT
face="Courier New">1<FONT
color=#000000>;
for<FONT
face="Courier New">(j=<FONT
color=#ff00ff>1; j< BarCount <FONT
color=#000000>; j++)<FONT
face="Courier New" size=4>{ <FONT face="Courier New"
color=#000000 size=4>Count[j]++;<FONT face="Courier New"
color=#000000 size=4>}
Plot<FONT
face="Courier New">(Count,<FONT
color=#ff00ff>""<FONT
color=#000000>,colorRed,styleHistogram|<FONT
color=#ff00ff>4<FONT
color=#000000>);
Read more on BarCount, BarIndex and SetBarsRequired in the
guide:
<A
href="">http://www.amibroker.com/f?SetBarsRequired
See also this:
<A
href="">http://groups.yahoo.com/group/amibroker/message/47904
and this:
<A
href="">http://groups.yahoo.com/group/amibroker/message/52762
and this:
<A
href="">http://groups.yahoo.com/group/amibroker/message/47910
and this:
<A
href="">http://groups.yahoo.com/group/amibroker/message/52778
Also recommended is downloading and installing this mailing
list archive:
<A
href="">http://www.amibroker.com/listarchive.html
You will find there ready to use answers for almost all
questions.
Best regards,Tomasz Janeczkoamibroker.com
<BLOCKQUOTE
>
----- Original Message -----
<DIV
>From:
<A title=kk2628@xxxxxxxxxxxxxxxx
href="">kk2628
To: <A title=amibroker@xxxxxxxxxxxxxxx
href="">amibroker@xxxxxxxxxxxxxxx ; <A
title=bugs@xxxxxxxxxxxxx
href="">bugs@xxxxxxxxxxxxx
Sent: Sunday, January 18, 2004 4:50
AM
Subject: [amibroker] Strange subscript
out of range
Hi TJ,
The following is just a simple for loop. What I
do not understand is I'll get the subscript out of range error when there is
about a year data show on screen. When I use the zoom out button so that the
screen will show more data (may be 6 years), then the subscript out of
range error not happening. TJ, would appreciate your
clarification.
Tks
KK
Count=0<FONT color=#000000
size=1>;
j=1<FONT color=#000000
size=1>;
for(j=<FONT
face="Courier New" color=#ff00ff size=1>1<FONT face="Courier New"
color=#000000 size=1>; j<=<FONT
color=#ff00ff size=1>500;
j++)
{ <FONT
color=#000000 size=1>
Count[j]++;
}
Plot<FONT face="Courier New" color=#000000
size=1>(Count,<FONT face="Courier New" color=#ff00ff
size=1>""<FONT face="Courier New" color=#000000
size=1>,colorRed,styleHistogram|<FONT face="Courier New"
color=#ff00ff size=1>4<FONT face="Courier New" color=#000000
size=1>);
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
Yahoo! Groups Links
To visit your group on the web, go to:<A
href="">http://groups.yahoo.com/group/amibroker/
To unsubscribe from this group, send an email to:<A
href="">amibroker-unsubscribe@xxxxxxxxxxxxxxx
Your use of Yahoo! Groups is subject to the <A
href="">Yahoo! Terms of Service.
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 the Yahoo! Terms of Service.
|