Hi Team ,
In the course "Trading with Machine Learning: Classification and SVM", There were references to creating indicators like RSI , SMA, Correlation Coefficient , SAR , ADX. But it was never used for Generating Signals .
Please help to provide the Buy / sell Signals using above indicators .
Thank you !!!
WIth Warm Regards
Nandagopal
Hi Nandagopal,
If you go through the Jupyter notebook on Trading Strategy Classification, which is present in Section 5, Unit 3 of the same course (link), you will notice that we have used the data from various indicators.
Refer to cell 16 within this notebook. An image is shared below for your reference.
If you print X, you will notice that it does contain the data from various indicators, which were computed earlier.
The same is further utilised, as we fit this as train data and fetch the best hyperparameters.
Following this, we also create a support vector classifier function based these hyperparameters
I hope this helped!