PureBytes Links
Trading Reference Links
|
to start I don't know if Status("firstvisiblebar") works in AA window
which will then not give you the startbar or endbar.
try this in IB
SetBarsRequired(10000,0);
per=20;
StartBar=ValueWhen(Status("firstvisiblebar"),BarIndex());
EndBar=StartBar-per;
HiBar=0;
Title = Name() + " " + (BarCount-1) + " " +StartBar+" "+endbar;
also this does not make sense. You state the HiBar to equal i, but
call a condition that relates H to Hibar
AND H[i-1]>HiBar
If you want to know the bar of the high, best to use a barindex() condition
On Fri, 15 Oct 2004 22:49:37 -0000, enzo <herrfrechdax@xxxxxxxx> wrote:
>
>
> 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
>
>
> 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
>
>
>
>
>
--
Cheers
Graham
http://e-wire.net.au/~eb_kavan/
------------------------ 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/
|