Subject: [amibroker] Re: second() always return "0" on 1-minute bar....
Hello,
This function provided by ED Pottasch could be useful or adapted to
your need...
http://finance. groups.yahoo. com/group/ amibroker/
message/128577
BR
--- In amibroker@xxxxxxxxx ps.com, "chris76721" <chris76721@ ...> wrote:
>
> Hello,
>
> I'm using 1-minute bar from IQFeed and would like to place a order
> *only* within first 3 seconds of the bar. I was wondering if anyone
> knows the best way to determine this?
>
> I tried this:
>
> if (LastValue(Buy) && Second() > 3)
> {
> // Enter long
> }
>
> However, the Second() always return 0 on 1-minutes bar :-(
>
> I know you can use Now() to return current system time and then get
> value of the second. But Now() is using your local system timestamp,
> not IQFeed timestamp.
>
> Thanks a lot for your help!
>