├── .editorconfig ├── .gitignore ├── .npmignore ├── LICENSE.md ├── README.md ├── docs ├── ALGORITHM.md ├── DATA.md ├── GLOBALS.md ├── ROBINHOOD.md └── img │ ├── algotrader-icon-circle.png │ ├── algotrader-icon-circle.psd │ ├── algotrader-icon.png │ ├── algotrader-icon.psd │ ├── algotrader.png │ └── algotrader.psd ├── examples └── highest-open-interest.js ├── index.js ├── objects ├── algorithm │ ├── Backtest.js │ ├── PaperTrader.js │ └── Scheduler.js ├── broker │ └── robinhood │ │ ├── Fundamentals.js │ │ ├── Instrument.js │ │ ├── Market.js │ │ ├── OptionInstrument.js │ │ ├── OptionOrder.js │ │ ├── Order.js │ │ ├── Portfolio.js │ │ ├── Robinhood.js │ │ └── User.js ├── data │ ├── AlphaVantage.js │ ├── IEX.js │ ├── Nasdaq.js │ ├── News.js │ ├── Query.js │ ├── Stream.js │ └── Yahoo.js └── globals │ ├── LibraryError.js │ ├── Match.js │ ├── OptionsChain.js │ └── Quote.js ├── package.json └── test.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torreyleonard/algotrader/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torreyleonard/algotrader/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torreyleonard/algotrader/HEAD/.npmignore -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torreyleonard/algotrader/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torreyleonard/algotrader/HEAD/README.md -------------------------------------------------------------------------------- /docs/ALGORITHM.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torreyleonard/algotrader/HEAD/docs/ALGORITHM.md -------------------------------------------------------------------------------- /docs/DATA.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torreyleonard/algotrader/HEAD/docs/DATA.md -------------------------------------------------------------------------------- /docs/GLOBALS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torreyleonard/algotrader/HEAD/docs/GLOBALS.md -------------------------------------------------------------------------------- /docs/ROBINHOOD.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torreyleonard/algotrader/HEAD/docs/ROBINHOOD.md -------------------------------------------------------------------------------- /docs/img/algotrader-icon-circle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torreyleonard/algotrader/HEAD/docs/img/algotrader-icon-circle.png -------------------------------------------------------------------------------- /docs/img/algotrader-icon-circle.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torreyleonard/algotrader/HEAD/docs/img/algotrader-icon-circle.psd -------------------------------------------------------------------------------- /docs/img/algotrader-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torreyleonard/algotrader/HEAD/docs/img/algotrader-icon.png -------------------------------------------------------------------------------- /docs/img/algotrader-icon.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torreyleonard/algotrader/HEAD/docs/img/algotrader-icon.psd -------------------------------------------------------------------------------- /docs/img/algotrader.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torreyleonard/algotrader/HEAD/docs/img/algotrader.png -------------------------------------------------------------------------------- /docs/img/algotrader.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torreyleonard/algotrader/HEAD/docs/img/algotrader.psd -------------------------------------------------------------------------------- /examples/highest-open-interest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torreyleonard/algotrader/HEAD/examples/highest-open-interest.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torreyleonard/algotrader/HEAD/index.js -------------------------------------------------------------------------------- /objects/algorithm/Backtest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torreyleonard/algotrader/HEAD/objects/algorithm/Backtest.js -------------------------------------------------------------------------------- /objects/algorithm/PaperTrader.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /objects/algorithm/Scheduler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torreyleonard/algotrader/HEAD/objects/algorithm/Scheduler.js -------------------------------------------------------------------------------- /objects/broker/robinhood/Fundamentals.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torreyleonard/algotrader/HEAD/objects/broker/robinhood/Fundamentals.js -------------------------------------------------------------------------------- /objects/broker/robinhood/Instrument.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torreyleonard/algotrader/HEAD/objects/broker/robinhood/Instrument.js -------------------------------------------------------------------------------- /objects/broker/robinhood/Market.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torreyleonard/algotrader/HEAD/objects/broker/robinhood/Market.js -------------------------------------------------------------------------------- /objects/broker/robinhood/OptionInstrument.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torreyleonard/algotrader/HEAD/objects/broker/robinhood/OptionInstrument.js -------------------------------------------------------------------------------- /objects/broker/robinhood/OptionOrder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torreyleonard/algotrader/HEAD/objects/broker/robinhood/OptionOrder.js -------------------------------------------------------------------------------- /objects/broker/robinhood/Order.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torreyleonard/algotrader/HEAD/objects/broker/robinhood/Order.js -------------------------------------------------------------------------------- /objects/broker/robinhood/Portfolio.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torreyleonard/algotrader/HEAD/objects/broker/robinhood/Portfolio.js -------------------------------------------------------------------------------- /objects/broker/robinhood/Robinhood.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torreyleonard/algotrader/HEAD/objects/broker/robinhood/Robinhood.js -------------------------------------------------------------------------------- /objects/broker/robinhood/User.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torreyleonard/algotrader/HEAD/objects/broker/robinhood/User.js -------------------------------------------------------------------------------- /objects/data/AlphaVantage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torreyleonard/algotrader/HEAD/objects/data/AlphaVantage.js -------------------------------------------------------------------------------- /objects/data/IEX.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torreyleonard/algotrader/HEAD/objects/data/IEX.js -------------------------------------------------------------------------------- /objects/data/Nasdaq.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torreyleonard/algotrader/HEAD/objects/data/Nasdaq.js -------------------------------------------------------------------------------- /objects/data/News.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torreyleonard/algotrader/HEAD/objects/data/News.js -------------------------------------------------------------------------------- /objects/data/Query.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torreyleonard/algotrader/HEAD/objects/data/Query.js -------------------------------------------------------------------------------- /objects/data/Stream.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torreyleonard/algotrader/HEAD/objects/data/Stream.js -------------------------------------------------------------------------------- /objects/data/Yahoo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torreyleonard/algotrader/HEAD/objects/data/Yahoo.js -------------------------------------------------------------------------------- /objects/globals/LibraryError.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torreyleonard/algotrader/HEAD/objects/globals/LibraryError.js -------------------------------------------------------------------------------- /objects/globals/Match.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torreyleonard/algotrader/HEAD/objects/globals/Match.js -------------------------------------------------------------------------------- /objects/globals/OptionsChain.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torreyleonard/algotrader/HEAD/objects/globals/OptionsChain.js -------------------------------------------------------------------------------- /objects/globals/Quote.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torreyleonard/algotrader/HEAD/objects/globals/Quote.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torreyleonard/algotrader/HEAD/package.json -------------------------------------------------------------------------------- /test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torreyleonard/algotrader/HEAD/test.js --------------------------------------------------------------------------------