PureBytes Links
Trading Reference Links
|
I want to find out the second (or third ...) highest price within the
last 3 days in a 5-min intraday internal
prev = ref(C, -1);
lastbar = SelectedValue( BarIndex() );
period = 12 * 6.5 * 3; // 3 days 5-min internal
firstHigh = HHV( prev, period );
// mark the first highest price to -1, so that can find the second highest
prev = IIf( BarIndex() == (lastbar - HHVBars(prev, period)), -1, prev );
secondHigh = HHV( prev, period );
Note: SelectedValue() only return the very last bar index in the time
range which is specified in the AA's Explore windows; But for the
other bars other than the last bar in the time range, it does not work
thanks,
--- In amibroker@xxxxxxxxxxxxxxx, "wavemechanic" <timesarrow@xxx> wrote:
>
> Very difficult and time consuming to work with the info that you
have provided. If you post your code someone might be able to provide
a solution.
>
> Bill
>
> ----- Original Message -----
> From: "jnz88" <jnz88@xxx>
> To: <amibroker@xxxxxxxxxxxxxxx>
> Sent: Wednesday, February 27, 2008 3:05 PM
> Subject: [amibroker] Re: How to select current bar?
>
>
> > The key question is the condition expression in ValueWhen()
> > I do not know how to write it
> >
> >
> > --- In amibroker@xxxxxxxxxxxxxxx, "wavemechanic" <timesarrow@> wrote:
> >>
> >> Does valuewhen() work?
> >>
> >> Bill
> >>
>
Please note that this group is for discussion between users only.
To get support from AmiBroker please send an e-mail directly to
SUPPORT {at} amibroker.com
For NEW RELEASE ANNOUNCEMENTS and other news always check DEVLOG:
http://www.amibroker.com/devlog/
For other support material please check also:
http://www.amibroker.com/support.html
Yahoo! Groups Links
<*> To visit your group on the web, go to:
http://groups.yahoo.com/group/amibroker/
<*> Your email settings:
Individual Email | Traditional
<*> To change settings online go to:
http://groups.yahoo.com/group/amibroker/join
(Yahoo! ID required)
<*> To change settings via email:
mailto:amibroker-digest@xxxxxxxxxxxxxxx
mailto:amibroker-fullfeatured@xxxxxxxxxxxxxxx
<*> 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/
|