PureBytes Links
Trading Reference Links
|
PS: There also might be a syntax error in your last line where you test
against HiBar.
I havenšt figured out how to force Amibroker to use a numeric variable
instead of an array variable and I suspect that, although you think and want
a numeric variable for HiBar, it might, in fact, be an array variable...in
which case you will need HiBar[i];
Just try it and see if your error goes away.
--
Terry
From: Terry <MagicTH@xxxxxxxxxxx>
Reply-To: amibroker@xxxxxxxxxxxxxxx
Date: Fri, 15 Oct 2004 16:59:47 -0600
To: <amibroker@xxxxxxxxxxxxxxx>
Subject: Re: [amibroker] Syntax-Error
> Sorry, but I am almost getting mad.
Welcome to the world of programming ;-)
> For at least one hour I am trying this and that
> and all the time I have a syntax error with the
> following code:
> (want to determine the number of the bar where the last high
> occurred before the first visible)
I haven't used this type of code before, but your loop appears to have an
error. It should be i < endbar and not i >= endbar
Bars are zero based so the last bar is barcount - 1
I mention this because you may actually want i <= endbar, but I don't know
for sure. You can try both ways.
Terry
> per=20;
> StartBar=Status("firstvisiblebar");
> EndBar=StartBar-per;
> HiBar=0;
> for ( i = startbar; i >= endbar; i-- )
> (
> if (H[i-1]> H[i] AND H[i-1]>HiBar )
> HiBar=i;>
>
> )
------------------------ Yahoo! Groups Sponsor --------------------~-->
Make a clean sweep of pop-up ads. Yahoo! Companion Toolbar.
Now with Pop-Up Blocker. Get it for free!
http://us.click.yahoo.com/L5YrjA/eSIIAA/yQLSAA/GHeqlB/TM
--------------------------------------------------------------------~->
Check AmiBroker web page at:
http://www.amibroker.com/
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/
|