FinanceRoutines.jl

Financial data routines for Julia
Log | Files | Refs | README | LICENSE

commit bfc5405d6007f227993ffee46cde77e5331bf273
parent 844fc76d96df42d67f560cf24dc3e93bd9e202ec
Author: Erik Loualiche <eloualic@umn.edu>
Date:   Sat, 24 May 2025 21:37:34 -0500

fix docs links

Diffstat:
Mdocs/make.jl | 4++--
Mdocs/src/demo/wrds_advanced.md | 2+-
Mdocs/src/index.md | 4++--
Mdocs/src/man/yield_curve_gsw.md | 2+-
4 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/docs/make.jl b/docs/make.jl @@ -29,12 +29,12 @@ makedocs( ) deploydocs( - repo="github.com/eloualiche/FinanceRoutines.jl.git", + repo="github.com/louloulibs/FinanceRoutines.jl.git", target = "build", ) deploydocs(; - repo="github.com/eloualiche/FinanceRoutines.jl.git", + repo="github.com/louloulibs/FinanceRoutines.jl.git", target = "build", branch = "gh-pages", ) diff --git a/docs/src/demo/wrds_advanced.md b/docs/src/demo/wrds_advanced.md @@ -15,7 +15,7 @@ using FinanceRoutines using DataFrames, DataPipes, Dates import LibPQ -using Prototypes # see https://github.com/eloualiche/Prototypes.jl +using BazerData # see https://github.com/louloulibs/BazerData.jl wrds_conn = FinanceRoutines.open_wrds_pg(); ``` diff --git a/docs/src/index.md b/docs/src/index.md @@ -9,7 +9,7 @@ This is useful to get started with a clean copy of asset prices from CRSP and a I have also added utilities to download treasury yield curves (GSW) and Fama-French research factors. -This is still very much work in progress: file [issues](https://github.com/eloualiche/FinanceRoutines.jl/issues) for comments. +This is still very much work in progress: file [issues](https://github.com/louloulibs/FinanceRoutines.jl/issues) for comments. ## Installation @@ -19,7 +19,7 @@ You can install it from github via ```julia import Pkg -Pkg.add("https://github.com/eloualiche/FinanceRoutines.jl") +Pkg.add("https://github.com/louloulibs/FinanceRoutines.jl") ``` ## Usage diff --git a/docs/src/man/yield_curve_gsw.md b/docs/src/man/yield_curve_gsw.md @@ -15,7 +15,7 @@ This package provides tools to: ## Installation ```julia -using FinanceRoutines; # Pkg.add(url="https://github.com/eloualiche/FinanceRoutines.jl") +using FinanceRoutines; ``` ## Quick Start