PureBytes Links
Trading Reference Links
|
Think logically about what the expression is saying. Ref(TimeNum() ==
73000, -1) is saying when the previous bar was 7:30:00, so the whole
expression is saying give me the value of TimeNum() when the previous
bar was 7:30:00. With 5 minute data that will be 7:35:00 (because then
the bar before that would have been 7:30:00).
Similarly for the other two expressions.
Regards,
GP
--- In amibroker@xxxxxxxxxxxxxxx, "troll" <deanhodgins@xxx> wrote:
>
> I'm puzzled over the values the following example formulas return:
>
> x = ValueWhen( Ref(TimeNum()==73000,-1), TimeNum() ); Returns 73500
> x = ValueWhen( Ref(TimeNum()==73000,0), TimeNum() ); Returns 73000
> x = ValueWhen( Ref(TimeNum()==73000,1), TimeNum() ); Returns 72500
>
> I thought that the Ref function used -1 to shift reference to a past
> value while a positive number refers to a future array value but the
> opposite occurs in the above formulas. Not sure why the results are
> opposite from expected unless I've missed something here.
>
> Any clarification much appreciated.
>
>
> Thanks & Regards,
>
> Dean H
>
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/
|