├── .gitattributes ├── .gitignore ├── FF_daily.CSV ├── FF_monthly.CSV ├── FF_weekly.CSV ├── README.md ├── server.R ├── snp_tickers.CSV └── ui.R /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexpetralia/fama_french/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexpetralia/fama_french/HEAD/.gitignore -------------------------------------------------------------------------------- /FF_daily.CSV: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexpetralia/fama_french/HEAD/FF_daily.CSV -------------------------------------------------------------------------------- /FF_monthly.CSV: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexpetralia/fama_french/HEAD/FF_monthly.CSV -------------------------------------------------------------------------------- /FF_weekly.CSV: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexpetralia/fama_french/HEAD/FF_weekly.CSV -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexpetralia/fama_french/HEAD/README.md -------------------------------------------------------------------------------- /server.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexpetralia/fama_french/HEAD/server.R -------------------------------------------------------------------------------- /snp_tickers.CSV: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexpetralia/fama_french/HEAD/snp_tickers.CSV -------------------------------------------------------------------------------- /ui.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexpetralia/fama_french/HEAD/ui.R --------------------------------------------------------------------------------