Value Investing Code Structure

Program Structure class ValueInvest(object):     def __init__(self, start_year, end_year):     def simulate(self):     def load_finance_data(self, file_name, skip=0):     def calc_cagr(first, last, periods):     def calc_mdd(self):  [....]

Read More

Version Control with Git : Lesson 1 : What is Version Control?

1. What is Version Control Git to help us manage different versions of our project. I just said "version control". Now since you're in this course, you might already know a bit[....]

Read More