Earlier quoted context omitted.
By DL, i meant generic DL techniques like CNN, LSTM (used in this article), which relies on large amount of labeled data to train, and predict on similar data, thus my comment about automation. Alpha Go (Zero) is very specialized for the game of go, not sure how much of its specialized algorithm could transfer to other generic use cases.
> Alpha Go (Zero) is very specialized for the game of go, not sure how much of its specialized algorithm could transfer to other generic use cases. AlphaZero is a generalized successor, and it does just that: https://en.m.wikipedia.org/wiki/AlphaZero
Using a Keras Long Short-Term Memory Model to Predict Stock Prices
71–80 of 178 posts
Re: Using a Keras Long Short-Term Memory Model to Predict Stock Prices
#72> previous price of a stock is crucial in predicting its future price
This is a poor and incorrect model. The stock price has plenty other variables and many of which are unknown. What's used here is just a single variable.
Re: Using a Keras Long Short-Term Memory Model to Predict Stock Prices
#73I'm not a purist believer in the efficient market hypothesis. BUT, I doubt there's much alpha to be gained simply from looking at price data which is widely and publicly available. Also keep in mind that markets are dynamic feedback loops so even if this model had an edge, the act of publishing this article would work against you to neutralize that edge in the future. There's a good reason the most successful 'quanti…
Funds like Two Sigma that haven't had as good (or scalable) returns are actually the ones that focus on novel data sources.
In reality, everyone in this industry is drowning in data, and the real edge comes from learning how to more efficiently parse and analyze data rather than acquiring more of it. The top performing firms work at a level where the data is merely an abstraction; above-market returns can be achieved from nothing but public data sources, if you've automated the process of extracting signals.
Re: Using a Keras Long Short-Term Memory Model to Predict Stock Prices
#74I'm not a purist believer in the efficient market hypothesis. BUT, I doubt there's much alpha to be gained simply from looking at price data which is widely and publicly available. Also keep in mind that markets are dynamic feedback loops so even if this model had an edge, the act of publishing this article would work against you to neutralize that edge in the future. There's a good reason the most successful 'quanti…
These predictions can also be self-reenforcing. If enough money believes the model is accurate, it will create it's own market conditions. In a distopian AI stock prediction world the best model will be the one with the widest publicity and adoption, not the best data points.
Re: Using a Keras Long Short-Term Memory Model to Predict Stock Prices
#75Earlier quoted context omitted.
Rennaisance is one large quantitative trading firm, there are other bigger and more successful ones however. I happen to work for another very large and successful quant trading firm.
Bigger sure, but can you point to one that has had better performance than the medallion fund?
However the Virtu Financials, the Citadels, etc, will always exist, and will be doing exceptionally well whether people realize it or not.
Re: Using a Keras Long Short-Term Memory Model to Predict Stock Prices
#76I'm not a purist believer in the efficient market hypothesis. BUT, I doubt there's much alpha to be gained simply from looking at price data which is widely and publicly available. Also keep in mind that markets are dynamic feedback loops so even if this model had an edge, the act of publishing this article would work against you to neutralize that edge in the future. There's a good reason the most successful 'quanti…
Re: Using a Keras Long Short-Term Memory Model to Predict Stock Prices
#77I'm not a purist believer in the efficient market hypothesis. BUT, I doubt there's much alpha to be gained simply from looking at price data which is widely and publicly available. Also keep in mind that markets are dynamic feedback loops so even if this model had an edge, the act of publishing this article would work against you to neutralize that edge in the future. There's a good reason the most successful 'quanti…
A lifetime noncompete really I assume they pay you for life for this noncompete.
Re: Using a Keras Long Short-Term Memory Model to Predict Stock Prices
#78Only comparing the prediction accuracy against simpler models like ARIMA or VARMAX (as the author suggest) can tell you if the model has any use.
Re: Using a Keras Long Short-Term Memory Model to Predict Stock Prices
#79Skipping to the "results" of this experiment, I am seeing nothing. It looks like a slow, short period moving average (SMA)... which does nothing in terms of predicting anything. It just averages out the chaos over time.
Re: Using a Keras Long Short-Term Memory Model to Predict Stock Prices
#80Simple linear regression would work just fine for something rudimentary like this. This using neural nets stuff for everything lately is getting ridiculous.