Hello everybody, I am happy to found a bb like this. This is the perfect place and time at my current situation.
Preface
A friend and I started this side project where we predict the next day values for open, close, high and low of all Dow Jones listed stocks using machine learning algorithms. So, my friend is doing the math and I try to use this data to trade every day one stock of the Dow Jones. Trades will be closed everyday.
The underlying data for the prediction is using daily data of the stocks full history. My decisions per day are based on all timeframes smaller than the day chart. I want to find the correct timing for the low and high of that day and either go short or long. In one sentence, I try to trade the margin during the day and the machine helps me t find a promising stock and ideas about the entry + exit points.
Currently my personal goal is
• Win rate > 60%
• Margin per win +2%
The predictions are monitored in two steps: Technically and Systematically. The first step is that our engine drives it's own accuracy predictions and the second is a monitoring by hand. The underlying assumption is that if the predictions are at least 98% accurate they are reliable and no further testing is needed. Of course, before trading a stock this history of accuracy is taken into account.
Entry, Stop Loss & Targets
The entry is performed on time when I think the low point is reached (My software is not allowing it automated and it gives me a learning while following the chart.) Definite Exit limits are set to +2% breakthrough. Losses will be realised when breaking through -2%.
Daily steps:
Disclaimer
I know there are very distinct opinions about stock predictions with machines. As I said it's a side project with which we try to prove our assumptions. Further we don't try to tell the exact numbers of the future, but to have a tool to get clues about the future - if this makes sense.
I am demo trading at the moment.
Preface
A friend and I started this side project where we predict the next day values for open, close, high and low of all Dow Jones listed stocks using machine learning algorithms. So, my friend is doing the math and I try to use this data to trade every day one stock of the Dow Jones. Trades will be closed everyday.
The underlying data for the prediction is using daily data of the stocks full history. My decisions per day are based on all timeframes smaller than the day chart. I want to find the correct timing for the low and high of that day and either go short or long. In one sentence, I try to trade the margin during the day and the machine helps me t find a promising stock and ideas about the entry + exit points.
Currently my personal goal is
• Win rate > 60%
• Margin per win +2%
The predictions are monitored in two steps: Technically and Systematically. The first step is that our engine drives it's own accuracy predictions and the second is a monitoring by hand. The underlying assumption is that if the predictions are at least 98% accurate they are reliable and no further testing is needed. Of course, before trading a stock this history of accuracy is taken into account.
Entry, Stop Loss & Targets
The entry is performed on time when I think the low point is reached (My software is not allowing it automated and it gives me a learning while following the chart.) Definite Exit limits are set to +2% breakthrough. Losses will be realised when breaking through -2%.
Daily steps:
- The data is available before NYSE opens.
- Take the stock with the highest predicted margin during that day
- Watch the stock's open value and keep monitoring the movement
-> If the open value is different more than 1% from the predicted value, I take this in the calculation of the expected high or low. Currently I assume that the spread will be same, but just on a different level. - Find the timing for entry at high or low and set target and stop loss
Disclaimer
I know there are very distinct opinions about stock predictions with machines. As I said it's a side project with which we try to prove our assumptions. Further we don't try to tell the exact numbers of the future, but to have a tool to get clues about the future - if this makes sense.
I am demo trading at the moment.