PureBytes Links
Trading Reference Links
|
Hello,
Any insight appreciated on why I get trade listed in my trade by trade system
report outside of my time parameters? I use time based bars.
Like trades at 4:10pm? and with close trade at end of day enabled in the stops
section of my system properties, why some don't close at end of day but the
trade started after my endt time as well?
inputs:BEGINT(0920),ENDT(1600);
IF TIME >= BEGINT OR TIME <= ENDT THEN BEGIN
trading logic calculation
end;
|