You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Perform two distinct simple trading strategies with various classification models in Python. Generate 'buy' and 'sell' signals based on feature variables for the MSFT security. Signals are selected as the target/label variable used by classifiers.
If the next trading day's close price is greater than today's close price then the signal is ‘buy’, otherwise ‘sell’.
Strategy Two
If the 50-day moving average is greater than the 200-day moving average, then the signal is ‘buy’, otherwise ‘sell’.
About
Perform two distinct simple trading strategies with various classification models in Python. Generate 'buy' and 'sell' signals based on feature variables for the MSFT security. Signals are selected as the target/label variable used by classifiers.