PureBytes Links
Trading Reference Links
|
I see a couple of problems:
1) 6/10/07 was not a market day. Try 6/8/07 or a day that the market
was open.
2) Your StartDate is not in a format that your DateNum() == StartDate
will ever match up with. Removing the DateTimeConvert portion of the
statment should help because ParamDate will return it in DateNum format.
3) StartPrice is an array with only one bar set to something other than
zero (assuming 2nd statement was working), so you will need to
reference that bar within the array.
--- In amibroker@xxxxxxxxxxxxxxx, "huandy631" <hugh.andersen@xxx> wrote:
>
> hi
>
> I need to find out the return of a group of stocks over a certain
> period. The code below to find out the price at a certain date
doesn't
> seem to work.
>
> StartDate=DateTimeConvert(0,ParamDate("Start date","2007-06-
> 10"));
> StartPrice=IIf(DateNum()==StartDate,ValueWhen(StartDate,Close),0);
>
> Is this the right method?
>
> thanks
>
> Hugh
>
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/
|