CuglerEstates / TickerScripts

Algorithmic manipulation on data sets
0 stars 0 forks source link

Hill Climb Function #2

Open stefanaerospace opened 6 years ago

stefanaerospace commented 6 years ago

Make a function that takes a stock ticker and a time frame key and returns the average first and second derivative for that time frame.

stefanaerospace commented 6 years ago

Need an adaptive spline technique. Current Spline methods leave us open to predetermined degree bias. Taylor Methods?

stefanaerospace commented 6 years ago

Found out that we can introduce knots into the spline, this allows for N cubic splines to be on the same plot. 5 seems to be good enough for a small pilot set of data. A knot is where two splines connect, so we will have N+1 splines on a graph.

stefanaerospace commented 6 years ago

BOOKIE added

Adding an overarching script to run functions, this should speed up the testing process by providing an initial backend for testing, this can also be used to run functions for running operational function libraries. Calling this script bookie.py

stefanaerospace commented 6 years ago

RENAMING jeep to hill

The current function in branch doesn't do hill climbing or steepest ascent path finding, but it does determine the hill slope for a specific time frame.