1
0
Fork 0

Create template for project 6

master
Felix Martin 2020-10-10 10:00:05 -04:00
parent cb9ae77ddc
commit d66b350390
3 changed files with 26 additions and 0 deletions

View File

@ -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()

View File

@ -0,0 +1,5 @@
def author():
return "felixm"

View File

@ -0,0 +1,3 @@
def author():
return "felixm"