static java.util.Map<java.lang.String,Stock> |
YahooFinance.get(java.lang.String[] symbols,
java.util.Calendar from,
java.util.Calendar to,
Interval interval) |
Sends a request for multiple stocks with the historical quotes included
starting from the specified Calendar date
until the specified Calendar date (to)
at the specified interval.
|
static java.util.Map<java.lang.String,Stock> |
YahooFinance.get(java.lang.String[] symbols,
java.util.Calendar from,
Interval interval) |
Sends a request for multiple stocks with the historical quotes included
starting from the specified Calendar date until today,
at the specified interval.
|
static java.util.Map<java.lang.String,Stock> |
YahooFinance.get(java.lang.String[] symbols,
Interval interval) |
Sends a request for multiple stocks with the historical quotes included
from the past year,
at the specified interval.
|
static Stock |
YahooFinance.get(java.lang.String symbol,
java.util.Calendar from,
java.util.Calendar to,
Interval interval) |
Sends a request with the historical quotes included
starting from the specified Calendar date
until the specified Calendar date (to)
at the specified interval.
|
static Stock |
YahooFinance.get(java.lang.String symbol,
java.util.Calendar from,
Interval interval) |
Sends a request with the historical quotes included
starting from the specified Calendar date
at the specified interval.
|
static Stock |
YahooFinance.get(java.lang.String symbol,
Interval interval) |
Sends a request with the historical quotes included
at the specified interval (DAILY, WEEKLY, MONTHLY).
|
java.util.List<HistoricalQuote> |
Stock.getHistory(java.util.Calendar from,
java.util.Calendar to,
Interval interval) |
Requests the historical quotes for this stock with the following characteristics.
|
java.util.List<HistoricalQuote> |
Stock.getHistory(java.util.Calendar from,
Interval interval) |
Requests the historical quotes for this stock with the following characteristics.
|
java.util.List<HistoricalQuote> |
Stock.getHistory(Interval interval) |
Requests the historical quotes for this stock with the following characteristics.
|