Package | Description |
---|---|
yahoofinance | |
yahoofinance.histquotes | |
yahoofinance.histquotes2 |
Modifier and Type | Method and Description |
---|---|
static Map<String,Stock> |
YahooFinance.get(String[] symbols,
Calendar from,
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 Map<String,Stock> |
YahooFinance.get(String[] symbols,
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 Map<String,Stock> |
YahooFinance.get(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(String symbol,
Calendar from,
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(String symbol,
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(String symbol,
Interval interval)
Sends a request with the historical quotes included
at the specified interval (DAILY, WEEKLY, MONTHLY).
|
List<HistoricalQuote> |
Stock.getHistory(Calendar from,
Calendar to,
Interval interval)
Requests the historical quotes for this stock with the following characteristics.
|
List<HistoricalQuote> |
Stock.getHistory(Calendar from,
Interval interval)
Requests the historical quotes for this stock with the following characteristics.
|
List<HistoricalQuote> |
Stock.getHistory(Interval interval)
Requests the historical quotes for this stock with the following characteristics.
|
Modifier and Type | Field and Description |
---|---|
static Interval |
HistQuotesRequest.DEFAULT_INTERVAL |
Modifier and Type | Method and Description |
---|---|
static Interval |
Interval.valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Interval[] |
Interval.values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
Constructor and Description |
---|
HistQuotesRequest(String symbol,
Calendar from,
Calendar to,
Interval interval) |
HistQuotesRequest(String symbol,
Date from,
Date to,
Interval interval) |
HistQuotesRequest(String symbol,
Interval interval) |
Modifier and Type | Method and Description |
---|---|
static QueryInterval |
IntervalMapper.get(Interval interval) |
Constructor and Description |
---|
HistQuotes2Request(String symbol,
Calendar from,
Calendar to,
Interval interval) |
HistQuotes2Request(String symbol,
Date from,
Date to,
Interval interval) |
HistQuotes2Request(String symbol,
Interval interval) |
Copyright © 2022. All rights reserved.