PureBytes Links
Trading Reference Links
|
Sorry, that should of course be
myDay = 12;
Assuming that Jan 12 was a valid trading day.
Mike
--- In amibroker@xxxxxxxxxxxxxxx, "Mike" <sfclimbers@xxx> wrote:
>
> myYear = 2005 - 1900;
> myMonth = 1;
> myDay = 5;
> myDateNum = (10000 * myYear) + (100 * myMonth) + myDay;
> myDateBar = LastValue(ValueWhen(myDateNum == DateNum(), BarIndex()));
>
> for (i = myDateBar; i < BarCount; i++) {
> _TRACE("Index " + i);
> }
>
> Make sure that your chosen date is in fact an actual trading day. You might run into trouble if you are using Quick AFL.
>
> Mike
>
> --- In amibroker@xxxxxxxxxxxxxxx, "levibreidenbach" <levib1@> wrote:
> >
> > Is there a way to find the bar number of a certain date?
> >
> > Take Jan 12, 2005. Is there a way to reference that bar, and then loop forward through array to current date?
> >
> > Thanks
> > Levi
> >
>
------------------------------------
**** IMPORTANT PLEASE READ ****
This group is for the discussion between users only.
This is *NOT* technical support channel.
TO GET TECHNICAL SUPPORT send an e-mail directly to
SUPPORT {at} amibroker.com
TO SUBMIT SUGGESTIONS please use FEEDBACK CENTER at
http://www.amibroker.com/feedback/
(submissions sent via other channels won't be considered)
For NEW RELEASE ANNOUNCEMENTS and other news always check DEVLOG:
http://www.amibroker.com/devlog/
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/
|