├── .github └── workflows │ └── main.yml ├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── Setup.hs ├── app └── Main.hs ├── fourmolu.yaml ├── hie.yaml ├── hledger-stockquotes.cabal ├── package.yaml ├── src ├── Hledger │ ├── StockQuotes.hs │ └── StockQuotes │ │ └── Compat.hs └── Web │ └── AlphaVantage.hs ├── stack.yaml ├── stack.yaml.lock └── tests └── Spec.hs /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prikhi/hledger-stockquotes/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .stack-work/ 2 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prikhi/hledger-stockquotes/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prikhi/hledger-stockquotes/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prikhi/hledger-stockquotes/HEAD/README.md -------------------------------------------------------------------------------- /Setup.hs: -------------------------------------------------------------------------------- 1 | import Distribution.Simple 2 | 3 | 4 | main = defaultMain 5 | -------------------------------------------------------------------------------- /app/Main.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prikhi/hledger-stockquotes/HEAD/app/Main.hs -------------------------------------------------------------------------------- /fourmolu.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prikhi/hledger-stockquotes/HEAD/fourmolu.yaml -------------------------------------------------------------------------------- /hie.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prikhi/hledger-stockquotes/HEAD/hie.yaml -------------------------------------------------------------------------------- /hledger-stockquotes.cabal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prikhi/hledger-stockquotes/HEAD/hledger-stockquotes.cabal -------------------------------------------------------------------------------- /package.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prikhi/hledger-stockquotes/HEAD/package.yaml -------------------------------------------------------------------------------- /src/Hledger/StockQuotes.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prikhi/hledger-stockquotes/HEAD/src/Hledger/StockQuotes.hs -------------------------------------------------------------------------------- /src/Hledger/StockQuotes/Compat.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prikhi/hledger-stockquotes/HEAD/src/Hledger/StockQuotes/Compat.hs -------------------------------------------------------------------------------- /src/Web/AlphaVantage.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prikhi/hledger-stockquotes/HEAD/src/Web/AlphaVantage.hs -------------------------------------------------------------------------------- /stack.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prikhi/hledger-stockquotes/HEAD/stack.yaml -------------------------------------------------------------------------------- /stack.yaml.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prikhi/hledger-stockquotes/HEAD/stack.yaml.lock -------------------------------------------------------------------------------- /tests/Spec.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prikhi/hledger-stockquotes/HEAD/tests/Spec.hs --------------------------------------------------------------------------------