QNT failed to load data after 2006-01-01
-
I submitted my strategy
but it failed due to data loading from qnt
the output shows that the data loading from qnt ranges from 2004-11-01 to 2005-12-30
the code I submitted is:
start_date, end_date, prepare_date = '2006-01-01', datetime.now().strftime('%Y-%m-%d'), '2004-11-01'
data = qndata.stocks_load_spx_data(min_date = prepare_date, max_date = end_date)
but qnt didn't load the data after 2006-01-01
@support
I would like to know how to fix the problem
-
@omohyoid Hi,
To prevent potential forward-looking behavior in the strategy, we use day-by-day submission processing. This means that when defining weights for a specific date, only data up to that date is available. Please ensure that data used by your model is handled correctly within the strategy.
Any use of future data for a specific date will produce different results than expected, and the strategy will not be eligible for competition.
Additionally, using external data sources or data not provided by Quantiacs is not allowed.
Regards -
@support I got it. Thanks for ur reply