Something interesting to try would be to expand the features list to include more columns, and see what that does to the accuracy. Also displaying a graph of the performance would be cool, like where did the model predict right and wrong.
@ViralFreedomLS Жыл бұрын
Never stop making these 🙌🏾
@fabricecappe76515 ай бұрын
Really great content, I learned a lot thank you.
@rrahll Жыл бұрын
thanks mate) always like this kind of topics that's interesting
@eliotharreau762710 ай бұрын
;OK !nice work bro. And what is the name of this best model ? Thank you.
@serg848310 ай бұрын
Dude, this is the last time I'll comment your videos . Don't mislead people. You have a lot of subscribers and you must be responsible for it. You are aware that you have a data leak here. You haven't made an offset in your target variable. Offset a day ahead and your accuracy will be 50% or so.
@phulm9 ай бұрын
I think this does what you say is needed: # Create a new column % change df['Percentage Change']= df['Close'].pct_change() # change here for 1 day offset? # checks df['Difference'] = df[['Percentage Change']].shift(-1) # print(df.tail()) # a check
Come on. At least he created a video for people to learn. If you understand machine learning, you must know that no model is perfect, we need tunning as well. Whether it's misleading or not, he stated that he was not a financial advisor.
@sevadach43484 ай бұрын
@@Latte-rf7vg This is such a massive miss lead that people would be better off not watching this video. Because if you are new in this space and follow those instructions worst case you implement real time trading bot, you will suffer huge losses, and best case you will smash your head against the keyboard for hours trying to replicate same accuracy with the same method, without achieving any progress
@sevadach43484 ай бұрын
28:34 This is such a massive miss lead (error in placement of targets (Signals)) that people would be better off not watching this video. Because if you are new in this space and follow those instructions worst case you implement real time trading bot, you will suffer huge losses, and best case you will smash your head against the keyboard for hours trying to replicate same accuracy with the same method, without achieving any progress
@ComputerSciencecompsci1123584 ай бұрын
Hi thanks for the comment. Could you please be more specific on what the exact error is for the target variable?
@sevadach43484 ай бұрын
@@ComputerSciencecompsci112358 target column is not offset so model tries to predict weather price went up or down on current candle knowing it's open and close values