mschindler83/alpha-vantage
Composer 安装命令:
composer require mschindler83/alpha-vantage
包简介
Wrapper for Alpha Vantage API
README 文档
README
Wrapper library for the Alpha Vantage API Requires PHP >= 7.4
Install
composer require mschindler83/alpha-vantage
Features
- Get forex exchange rates
- Search for symbol
- Get global quote
- [...] More to come soon
Usage Examples
Get a client instance
$alphaVantage = \Mschindler83\AlphaVantage\Client::instance($apiKey)
Get forex exchange rate
$request = ForexExchangeRateRequest::convert('EUR', 'USD');
$exchangeRate = $alphaVantage->forexExchangeRate($request);
echo $exchangeRate->exchangeRate();
Search for symbol
$request = SearchRequest::queryString('MSCI World');
$searchResults = $alphaVantage->search($request);
$allResultsArray = $searchResults->items();
echo $allResultsArray[0]->symbol();
Get global quote
$request = GlobalQuoteRequest::symbol('IWDA.LON');
$globalQuote = $alphaVantage->globalQuote($request);
echo $globalQuote->open();
echo $globalQuote->high();
echo $globalQuote->low();
[...]
统计信息
- 总下载量: 6
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 0
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2020-03-09