Situation :
- We noticed that we backtest the DNN model using BAC DAILY data
- But in
sample_NN_model.py
. we're calling 1m MINUTE data. code snippet shown below inside the handle_data function :
# Fetch the data<br />
hist = data.history(context.security, [<br />
'open', 'high', 'low', 'close', 'volume'], minimum_feature_length, '1m') <br />
```<br />
<br />
<br />
Problem :<br />
As per our understanding, we're training our DNN in the jupyter notebook to get the best settings & weights, and saved in .json & .h5 format respectively. <br />
<br />
But the notebook uses DAILY data, and sample_NN_model.py calls MINUTE data, and we are about to load the best DNN setting & weights into it. <br />
<br />
Wouldnt that be wrong and makes no sense ? Or please do correct me if we inteprate this wrongly<br />
<br />
Thanks!<br />
<br />