├── .gitignore ├── README.md ├── session-1-work ├── index.js ├── package-lock.json ├── package.json └── src │ ├── app │ └── index.js │ ├── config.json │ ├── configuration │ └── index.js │ ├── database │ └── index.js │ └── pricing │ └── index.js ├── session-1 ├── index.js ├── package-lock.json ├── package.json └── src │ ├── app │ └── index.js │ ├── config.json │ ├── configuration │ └── index.js │ └── database │ └── index.js ├── session-2 ├── index.js ├── package-lock.json ├── package.json └── src │ ├── app │ └── index.js │ ├── config.json │ ├── configuration │ └── index.js │ ├── database │ └── index.js │ ├── models │ └── price.js │ ├── pricing │ └── index.js │ └── trading │ └── index.js └── session-3 ├── index.js ├── package-lock.json ├── package.json └── src ├── app └── index.js ├── config.json ├── configuration └── index.js ├── database └── index.js ├── models └── price.js ├── pricing └── index.js └── trading └── index.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliottminns/CryptoTrader/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliottminns/CryptoTrader/HEAD/README.md -------------------------------------------------------------------------------- /session-1-work/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliottminns/CryptoTrader/HEAD/session-1-work/index.js -------------------------------------------------------------------------------- /session-1-work/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliottminns/CryptoTrader/HEAD/session-1-work/package-lock.json -------------------------------------------------------------------------------- /session-1-work/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliottminns/CryptoTrader/HEAD/session-1-work/package.json -------------------------------------------------------------------------------- /session-1-work/src/app/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliottminns/CryptoTrader/HEAD/session-1-work/src/app/index.js -------------------------------------------------------------------------------- /session-1-work/src/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliottminns/CryptoTrader/HEAD/session-1-work/src/config.json -------------------------------------------------------------------------------- /session-1-work/src/configuration/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliottminns/CryptoTrader/HEAD/session-1-work/src/configuration/index.js -------------------------------------------------------------------------------- /session-1-work/src/database/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliottminns/CryptoTrader/HEAD/session-1-work/src/database/index.js -------------------------------------------------------------------------------- /session-1-work/src/pricing/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliottminns/CryptoTrader/HEAD/session-1-work/src/pricing/index.js -------------------------------------------------------------------------------- /session-1/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliottminns/CryptoTrader/HEAD/session-1/index.js -------------------------------------------------------------------------------- /session-1/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliottminns/CryptoTrader/HEAD/session-1/package-lock.json -------------------------------------------------------------------------------- /session-1/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliottminns/CryptoTrader/HEAD/session-1/package.json -------------------------------------------------------------------------------- /session-1/src/app/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliottminns/CryptoTrader/HEAD/session-1/src/app/index.js -------------------------------------------------------------------------------- /session-1/src/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliottminns/CryptoTrader/HEAD/session-1/src/config.json -------------------------------------------------------------------------------- /session-1/src/configuration/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliottminns/CryptoTrader/HEAD/session-1/src/configuration/index.js -------------------------------------------------------------------------------- /session-1/src/database/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliottminns/CryptoTrader/HEAD/session-1/src/database/index.js -------------------------------------------------------------------------------- /session-2/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliottminns/CryptoTrader/HEAD/session-2/index.js -------------------------------------------------------------------------------- /session-2/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliottminns/CryptoTrader/HEAD/session-2/package-lock.json -------------------------------------------------------------------------------- /session-2/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliottminns/CryptoTrader/HEAD/session-2/package.json -------------------------------------------------------------------------------- /session-2/src/app/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliottminns/CryptoTrader/HEAD/session-2/src/app/index.js -------------------------------------------------------------------------------- /session-2/src/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliottminns/CryptoTrader/HEAD/session-2/src/config.json -------------------------------------------------------------------------------- /session-2/src/configuration/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliottminns/CryptoTrader/HEAD/session-2/src/configuration/index.js -------------------------------------------------------------------------------- /session-2/src/database/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliottminns/CryptoTrader/HEAD/session-2/src/database/index.js -------------------------------------------------------------------------------- /session-2/src/models/price.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliottminns/CryptoTrader/HEAD/session-2/src/models/price.js -------------------------------------------------------------------------------- /session-2/src/pricing/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliottminns/CryptoTrader/HEAD/session-2/src/pricing/index.js -------------------------------------------------------------------------------- /session-2/src/trading/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliottminns/CryptoTrader/HEAD/session-2/src/trading/index.js -------------------------------------------------------------------------------- /session-3/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliottminns/CryptoTrader/HEAD/session-3/index.js -------------------------------------------------------------------------------- /session-3/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliottminns/CryptoTrader/HEAD/session-3/package-lock.json -------------------------------------------------------------------------------- /session-3/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliottminns/CryptoTrader/HEAD/session-3/package.json -------------------------------------------------------------------------------- /session-3/src/app/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliottminns/CryptoTrader/HEAD/session-3/src/app/index.js -------------------------------------------------------------------------------- /session-3/src/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliottminns/CryptoTrader/HEAD/session-3/src/config.json -------------------------------------------------------------------------------- /session-3/src/configuration/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliottminns/CryptoTrader/HEAD/session-3/src/configuration/index.js -------------------------------------------------------------------------------- /session-3/src/database/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliottminns/CryptoTrader/HEAD/session-3/src/database/index.js -------------------------------------------------------------------------------- /session-3/src/models/price.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliottminns/CryptoTrader/HEAD/session-3/src/models/price.js -------------------------------------------------------------------------------- /session-3/src/pricing/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliottminns/CryptoTrader/HEAD/session-3/src/pricing/index.js -------------------------------------------------------------------------------- /session-3/src/trading/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliottminns/CryptoTrader/HEAD/session-3/src/trading/index.js --------------------------------------------------------------------------------