Fortran

Guide To Learn

3. Analyzing time series data with arrays

Getting the data and code

The full code for the stock analysis exercise is available as a GitHub repo at https:// github.com/modern-fortran/stock-prices. If you use git, you can clone it directly from the command line: Otherwise, you can download it as a zip file from http://mng.bz/OMZo. The repository already includes the stock price data needed for this exercise in the data directory. However, if […]

Analyzing stock prices with Fortran arrays

We’ll learn how Fortran arrays work in a real-world application–analyzing stock price time series. This has been an increasingly popular topic since the early days of computer programming, and Fortran has been used in the bowels of many trading and banking systems, mainly thanks to its robustness, reliability, and efficiency. In this chapter, we’ll work […]

Scroll to top