2018-12-15 17:56:29 -08:00
|
|
|
# main.py
|
|
|
|
# Andrew Dinh
|
|
|
|
# Python 3.6.1
|
2018-12-16 17:58:25 -08:00
|
|
|
# Description:
|
|
|
|
'''
|
|
|
|
Asks users for mutual funds/stocks to compare
|
|
|
|
Asks to be compared (expense ratio, turnover, market capitalization, or persistence)
|
|
|
|
Asks for time period (Possibly: 1 year, 5 years, 10 years)
|
|
|
|
Makes the mutual funds as class Stock
|
|
|
|
Gets data from each API
|
|
|
|
Compare and contrast dates and end changeOverTime for set time period
|
|
|
|
NOTES: Later can worry about getting close values to make a graph or something
|
|
|
|
Gives correlation value using equation at the end (from 0 to 1)
|
2018-12-16 14:46:56 -08:00
|
|
|
|
2018-12-16 17:58:25 -08:00
|
|
|
FIRST TESTING WITH EXPENSE RATIO
|
|
|
|
'''
|
2018-12-16 14:46:56 -08:00
|
|
|
|
2018-12-17 16:05:36 -08:00
|
|
|
import StockData
|