machine learning Flashcards
model
takes observations, makes prediction
use ML to generate model
Supervised Regression Learning
S= Tell system correct output for given input R= Numerical approximation L= Train with Data
Classification Learning
Classify
Linear Reggression
Find parameters for model (parametric learning)
K Nearest Neighbor (KNN)
Make prediction based on previous x/y data sets
Decision Tree
Each tree node is a decision, leads to leaf that is the model
Decision Forests
Combined Decision Trees
Supervised Regression LearningTypes
Linear Regression
K Nearest Neighbor
Decision Tree
Decision Forest
Basic ML Steps
Select Predictive Factors Select Output (generally future price) Select Time Period Select Stocks Train Model
Backtesting
Use set of training data to generate model
See how well model compares to reality
Regression Learning Problems for Trading
Noisy and uncertain
Challenging to estimate confidence
How long to hold position
How much to allocate to position
How to address issues
Use Reinforcement Learning to teach policies
Parametric Model
Apply regression line to model
linear : y=mx+b
polynomial: y= mx^2+mx+b
KNN Application
Take average of nearest K samples to determine output
Kernel Regression
Weight contributions of each K data point based on distance
Out of Sample Testing
Seperating Training Data from Testing Data