PureBytes Links
Trading Reference Links
|
Sorry, but I am almost getting mad. 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)
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;
)
Thanx for the help.
enzo
------------------------ 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/
|