PureBytes Links
Trading Reference Links
|
Looking at the following code, can you imagine on which bar
ind_hhv changes
and
ind_hhv_bar does not change?
The first bar where ind_hhv changes, but on on subsequent bar?
Never?
I've tried the code with occur = 0 and that is causing ValueWhen to
look into the future (not desired in this case).
/////////////////
bi = BarIndex();
n = 2;
indbars = 5;
indlookback = ( n * indbars ) - n;
ind = roc( Close, indbars, absmode = False );
ind_hhv = hhv( ind, indlookback );
ind_hhv_bar = valuewhen( ind_hhv == ind, bi, occur = 1 );
/////////////////
------------------------------------
**** 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/
|