Daniel Kubányi
Daniel Kubányi
@linuxdebian @LeagueLugas this is already resolved in https://github.com/yacoubb/stock-trading-ml/issues/18#issuecomment-675791707: > i found the problem and the fix: > In `predicted_price_tomorrow = np.squeeze(y_normaliser.inverse_transform(model.predict([[ohlcv], [ind]])))`, > `model.predict()` is expecting (in this case) a...
Hi @tmhieu99 and @dropcunt, I stumbled upon the same problem and the solution is actually very easy. The exchange where the script is fetching the data from changed its routing,...
It's looking for a collection of symbols it seems, so if you go to stockscore/data.py, and add for example this, it will sort of work: `def get_symbols(): return ["AAPL"] `...