I'm using the backtester (and getting used it it), and would like to close all my positions at the end of the day (between 3:50-3:55). Currently I do it like this in the backtester:
Sell = (Cross(Graph0,C) AND Cross(graph1,c))
OR TimeNum() >= 155000;
But if I use a timeframe higher than than 1,5,10 minutes, it does not get
triggered because the bar is not created yet...and I end up closing the
position on the next day. Is there anyway to say I want all positioins closed
at 1500-1600 hours?
