Thanks for watching my talk, Domain-Driven Desire at Øredev 2016. Here's a list of resources that inspired me, and will hopefully inspire you:
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| var _ = Underscore.load(); | |
| /* | |
| * Queries Yahoo finance API for historical prices for a given list of tickers | |
| * | |
| * @param {Array} tickers A list of tickers | |
| * @param {Date} date Date to query for. Must be a date the markets were open | |
| * @return A map of ticker to adjusted close prices | |
| */ |