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!
