Package | Description |
---|---|
yahoofinance | |
yahoofinance.quotes.csv | |
yahoofinance.quotes.query1v7 |
Modifier and Type | Method and Description |
---|---|
static Stock |
YahooFinance.get(String symbol)
Sends a basic quotes request to Yahoo Finance.
|
static Stock |
YahooFinance.get(String symbol,
boolean includeHistorical)
Same as the
get(String) method, but with the option to include
historical stock quote data. |
static Stock |
YahooFinance.get(String symbol,
Calendar from)
Sends a request with the historical quotes included
starting from the specified
Calendar date
at the default interval (monthly). |
static Stock |
YahooFinance.get(String symbol,
Calendar from,
Calendar to)
Sends a request with the historical quotes included
starting from the specified
Calendar date
until the specified Calendar date (to)
at the default interval (monthly). |
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).
|
Modifier and Type | Method and Description |
---|---|
static Map<String,Stock> |
YahooFinance.get(String[] symbols)
Sends a basic quotes request to Yahoo Finance.
|
static Map<String,Stock> |
YahooFinance.get(String[] symbols,
boolean includeHistorical)
Same as the
get(String[]) method, but with the option to include
historical stock quote data. |
static Map<String,Stock> |
YahooFinance.get(String[] symbols,
Calendar from)
Sends a request for multiple stocks with the historical quotes included
starting from the specified
Calendar date until today,
at the default interval (monthly). |
static Map<String,Stock> |
YahooFinance.get(String[] symbols,
Calendar from,
Calendar to)
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 default interval (monthly). |
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.
|
Modifier and Type | Method and Description |
---|---|
Stock |
StockQuotesData.getStock() |
Modifier and Type | Method and Description |
---|---|
protected Stock |
StockQuotesQuery1V7Request.parseJson(com.fasterxml.jackson.databind.JsonNode node) |
Copyright © 2022. All rights reserved.