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 | |
| */ |
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(); | |
| var NYSaves = {}; | |
| NYSaves.currentPriceUrlBase = 'https://www.nysaves.org/nytpl/fund/details.cs?fundId='; | |
| NYSaves.historyUrl = 'https://www.nysaves.org/nytpl/fund/priceHistorySearch.cs'; | |
| /** |
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
| package asdff; | |
| import com.google.common.base.Predicate; | |
| import org.openqa.selenium.Dimension; | |
| import org.openqa.selenium.OutputType; | |
| import org.openqa.selenium.TakesScreenshot; | |
| import org.openqa.selenium.TimeoutException; | |
| import org.openqa.selenium.WebDriver; | |
| import org.openqa.selenium.firefox.FirefoxDriver; |