PureBytes Links
Trading Reference Links
|
Hi
I think you want to use
inHirange= Ref(H,-9)>= HHV(H,9) ;
inLowrange= Ref(L,-9)<= LLV(L,9) ;
above compares the most recent 9 bars to the one preceeding
if you wanted to compare that one to the 8 following bars (and not
include the most recent bar, it would be
inHirange= Ref(H,-9)>= ref(HHV(H,8),-1) ;
inLowrange= Ref(L,-9)<= ref(LLV(L,8),-1) ;
Think one of those should work
Dan
--- In amibroker@xxxxxxxxxxxxxxx, "sidhartha70" <sidhartha70@xxx>
wrote:
>
> Hi All,
>
> This is probably easy... but I'm having a mental block.
>
> I have an interval on a chart, lets say it's 10 intervals back. I
want
> to check that each of the 8 intervals that followed it traded within
> the range of that interval 10 back.
>
> I don't want to use a loop....
>
> Any ideas...?
>
> TIA
>
------------------------------------
**** IMPORTANT ****
This group is for the discussion between users only.
This is *NOT* technical support channel.
*********************
TO GET TECHNICAL 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/
|