diff --git a/manual_strategy/TheoreticallyOptimalStrategy.py b/manual_strategy/TheoreticallyOptimalStrategy.py new file mode 100644 index 0000000..4c4db2f --- /dev/null +++ b/manual_strategy/TheoreticallyOptimalStrategy.py @@ -0,0 +1,18 @@ +import pandas as pd +import datetime as dt +from util import get_data, plot_data + + +def author(): + return "felixm" + + +def main(): + start_date = dt.datetime(2008, 1, 1) + end_date = dt.datetime(2009, 12, 31) + prices = get_data(['JPM'], pd.date_range(start_date, end_date)) + print(prices) + + +if __name__ == "__main__": + main() diff --git a/manual_strategy/indicators.py b/manual_strategy/indicators.py new file mode 100644 index 0000000..eedeb4b --- /dev/null +++ b/manual_strategy/indicators.py @@ -0,0 +1,5 @@ + + + +def author(): + return "felixm" diff --git a/manual_strategy/marketsimcode.py b/manual_strategy/marketsimcode.py new file mode 100644 index 0000000..d032157 --- /dev/null +++ b/manual_strategy/marketsimcode.py @@ -0,0 +1,3 @@ + +def author(): + return "felixm"