Difference between revisions of "Manipulating Financial Data in Python"

From Quantitative Analysis Software Courses
Jump to navigation Jump to search
 
(54 intermediate revisions by 4 users not shown)
Line 1: Line 1:
==Module 1: Reading, slicing and plotting stock data==
+
==Lesson 1: Reading, slicing and plotting stock data==
* Overview of data we'll be working with: AAPL.csv, SPY.csv (note date order)
+
*Overview of the data we'll be working with (from Yahoo!)
** Meaning of various columns
+
*Introduction to our primary library: Pandas
* The Pandas dataframe
+
*Reading CSV data into Pandas
* Read CSV into a dataframe (AAPL example)
+
*Filtering to specific dates
* Slice according to dates
+
*Plotting
* [quiz: read SPY.csv and slice against different dates]
 
* Plot (note date order wrong)
 
* Sort
 
* Plot
 
  
==Module 2: Building a dataframe with lots of stocks==
+
Reading: "Python for Finance", Chapter 6: Financial time series
* What we want to end up with: Rows: Dates, Columns: Symbols
 
* Step by step how to build it
 
* SPY.csv will be our reference -- it trades every day the market is open.
 
* Read SPY.csv, slice to date range, sort
 
* Read AAPL.csv, merge() into existing dataframe
 
* Repeat with GLD, IBM, GOOG
 
* Plot and display legend
 
* Observe: Scale not good, let's normalize
 
* Print some of the numbers
 
* Plot after normalization
 
* [quiz: normalize at a different date]
 
  
==Module 3: Numpy fundamentals==
+
==Lesson 2: Working with many stocks at once==
*Numpy relationship to Pandas
+
*Our target data frame structure
*Creating Arrays
+
*Address reverse order issue
**empty, zeros, ones
+
*Reading data for multiple stocks into the structure
*Basic Indexing and Slicing (start at 0 not 1)
+
*Date slicing
*[quiz: print 2nd & 3rd columns]
+
*Symbol slicing
*Index one array by another
+
*Plotting
*Reshaping
+
*Normalizing
*Data Processing using Arrays
 
**Sum rows, Sum columns
 
**Statistics on columns: Mean, Median, stddev
 
*See: http://wiki.quantsoftware.org/index.php?title=Numpy_Tutorial_1
 
  
==Module 4: Statistical analysis of time series data==
+
==Lesson 3: The power of Numpy==
*Rolling statistics example
+
*What is Numpy and how it relates to Pandas
**Read SPY
+
*Why is Numpy powerful/important?
**20 day rolling average
+
*Creating Numpy arrays
**+- 20 day rolling stdev * 2
+
*Indexing and slicing Numpy arrays
**Plot above as Bollinger bands
+
*Important data processing on Numpy arrays
*Discussion of daily returns, what they are, how to calculate
+
*Example use with pandas too
*[quiz: compute and plot SPY and XOM daily returns]
 
*Scatter plot (plot SPY vs XOM)
 
*Compare SPY vs GLD.  How can we quantify these differences?
 
*Fit a line and plot it, print slope and corrcoef for SPY & XOM
 
*Discussion of correlation not the same as slope
 
  
==Module 5: Incomplete data==
+
Reading: "Python for Finance", Chapter 4: Data types and structures
*[for this lesson: need to create 4 assets: SPY no missing, X ends midway, Y begins midway, Z has periodic outages]
 
*Read SPY
 
**20 day rolling average
 
**Plot
 
*Attempt above with X, what happens? (incomplete data)
 
*Look at data; NaN!
 
*What to do?
 
*Discussion & drawing of the types of incomplete data characterized by 4 examples above.
 
*What is the proper way to handle?
 
*[quiz: implement and plot fill forward on X]
 
*Show Pandas methods for forward fill and backward fill, plot rolling averages
 
  
==Module 6: Computing statistics on a portfolio==
+
==Lesson 4: Statistical analysis of time series==
*Statistics we'll look at:
+
*Gross statistics on dataframes
**Average daily return
+
*Rolling statistics on dataframes
**Stddev of daily return: volatility
+
*Plotting a technical indicator (Bollinger Bands)
**Total return
 
**Sharpe ratio
 
*Buy and hold: SPY, GLD, GOOG, XOM, $100K each
 
*Show how to read assets, normalize so each starts at $100K, goes forward.
 
*[quiz: compute total daily portfolio value and daily rets for portfolio]
 
*Show how to compute, avg daily rets, stdev, total ret, Sharpe ratio
 
  
==Module 7: Optimizers==
+
Reading: "Python for Finance", Chapter 6: Financial time series
 +
 
 +
==Lesson 5: Incomplete data==
 +
*How incomplete data arises in financial data
 +
*Different approaches to dealing with it
 +
 
 +
==Lesson 6: Histograms and scatter plots==
 +
 
 +
* Histogram of daily returns
 +
* Compare SPY with XOM
 +
* Scatter plots
 +
* Correlation is not slope!
 +
* Compare SPY vs XOM, with SPY vs GLD scatter plots
 +
 
 +
Reading: "Python for Finance", Chapter 5: Data Visualization
 +
 
 +
==Lesson 7: Sharpe ratio & other portfolio statistics==
 +
*Speed up reading data by memoizing
 +
*Average daily return
 +
*Volatility: stddev of daily return (don't count first day)
 +
*Cumulative return
 +
*Relationship between cumulative and daily
 +
*Sharpe Ratio
 +
*How to model a buy and hold portfolio
 +
 
 +
==Lesson 8: Optimizers: Building a parameterized model==
 
*What does an optimizer do?
 
*What does an optimizer do?
*Use an optimizer to curve fit
+
*Syntax of optimizer use
*[quiz: add another type of curve to fit (e.g., sine)]
+
*Problem statement for an optimizer (inputs, outputs, assumptions)
*Use an optimizer to find best allocation to two stocks
+
*How to find X that minimizes f(X) with a minimizer
 +
*How to build a parameterized polynomial model from real data using an optimizer
 +
 
 +
==Lesson 9: Optimizers: How to optimize a portfolio==
 +
*What does it mean to "optimize" a portfolio
 +
*Framing the problem for an optimizer
 +
*Constraints on X for an optimizer
 +
*Ranges on X for an optimizer
  
==Module 8: Graphs Part II==
+
Reading: "Python for Finance", Chapter 11: Statistics-Portfolio Optimization

Latest revision as of 19:10, 24 August 2016

Lesson 1: Reading, slicing and plotting stock data

  • Overview of the data we'll be working with (from Yahoo!)
  • Introduction to our primary library: Pandas
  • Reading CSV data into Pandas
  • Filtering to specific dates
  • Plotting

Reading: "Python for Finance", Chapter 6: Financial time series

Lesson 2: Working with many stocks at once

  • Our target data frame structure
  • Address reverse order issue
  • Reading data for multiple stocks into the structure
  • Date slicing
  • Symbol slicing
  • Plotting
  • Normalizing

Lesson 3: The power of Numpy

  • What is Numpy and how it relates to Pandas
  • Why is Numpy powerful/important?
  • Creating Numpy arrays
  • Indexing and slicing Numpy arrays
  • Important data processing on Numpy arrays
  • Example use with pandas too

Reading: "Python for Finance", Chapter 4: Data types and structures

Lesson 4: Statistical analysis of time series

  • Gross statistics on dataframes
  • Rolling statistics on dataframes
  • Plotting a technical indicator (Bollinger Bands)

Reading: "Python for Finance", Chapter 6: Financial time series

Lesson 5: Incomplete data

  • How incomplete data arises in financial data
  • Different approaches to dealing with it

Lesson 6: Histograms and scatter plots

  • Histogram of daily returns
  • Compare SPY with XOM
  • Scatter plots
  • Correlation is not slope!
  • Compare SPY vs XOM, with SPY vs GLD scatter plots

Reading: "Python for Finance", Chapter 5: Data Visualization

Lesson 7: Sharpe ratio & other portfolio statistics

  • Speed up reading data by memoizing
  • Average daily return
  • Volatility: stddev of daily return (don't count first day)
  • Cumulative return
  • Relationship between cumulative and daily
  • Sharpe Ratio
  • How to model a buy and hold portfolio

Lesson 8: Optimizers: Building a parameterized model

  • What does an optimizer do?
  • Syntax of optimizer use
  • Problem statement for an optimizer (inputs, outputs, assumptions)
  • How to find X that minimizes f(X) with a minimizer
  • How to build a parameterized polynomial model from real data using an optimizer

Lesson 9: Optimizers: How to optimize a portfolio

  • What does it mean to "optimize" a portfolio
  • Framing the problem for an optimizer
  • Constraints on X for an optimizer
  • Ranges on X for an optimizer

Reading: "Python for Finance", Chapter 11: Statistics-Portfolio Optimization