Skip to content

Tiagolas17/stock-prices

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

34 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

stock-prices

Build Status GitHub issues

Analyzing stock prices with Fortran arrays. Companion code for Chapter 4 of Modern Fortran: Building Efficient Parallel Applications

Getting started

Getting the code and data

git clone https://github.com/modern-fortran/stock-prices
cd stock-prices
FC=gfortran make

This will build three small apps: stock_gain, stock_volatility, and stock_crossover.

Running the programs

./stock_gain
./stock_volatility
./stock_crossover

Plotting the results

You can use the included Python scripts to read and plot the data produced by the Fortran apps.

First, set up a fresh Python virtual environment:

python3 -m venv venv
source venv/bin/activate
pip install -U pip
pip install -r plotting/requirements.txt

Then type:

make figures

Releases

No releases published

Packages

No packages published

Languages

  • Fortran 51.7%
  • Python 39.6%
  • Makefile 6.3%
  • Shell 2.4%