Some platforms, like Tradestation, use “future looking” timestamps in their data so for example 5 minute bar covering market activity from 9:30:00 till 9:34:59 is stamped with 9:35:00 (future time – see Tradestation manual explaining their timestamps<\/a>) so their data have a kind of future offset.<\/p>
If you want to use future-timestamped data in AmiBroker you need to remove the offset.<\/p>
To shift the data during import you can use $TIMESHIFT command of ASCII importer, see http:\/\/www.amibroker.com\/guide\/d_ascii.html<\/a><\/p>
$TIMESHIFT offset_in_hours<\/em><\/code><\/p>
If you are using
ASCII Importer Wizard<\/a>, and want to import 5-minute data with future looking timestamps, you can simply type the following in the “Additional commands” box of ASCII Importer Wizard<\/a>.<\/p>
$TIMESHIFT -0.08333333333333<\/code><\/p>
-0.08333333 is a result of dividing 5 by 60 (number of minutes in an hour)<\/p>