Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/bjornsallarp/YahooFinance
iOS API for Yahoo finance. Stock symbol search, stock details and currency conversion.
https://github.com/bjornsallarp/YahooFinance
Last synced: about 1 month ago
JSON representation
iOS API for Yahoo finance. Stock symbol search, stock details and currency conversion.
- Host: GitHub
- URL: https://github.com/bjornsallarp/YahooFinance
- Owner: bjornsallarp
- Created: 2011-04-10T16:52:07.000Z (over 13 years ago)
- Default Branch: master
- Last Pushed: 2011-04-25T11:29:09.000Z (over 13 years ago)
- Last Synced: 2024-08-02T10:27:14.448Z (4 months ago)
- Language: Objective-C
- Homepage: http://blog.sallarp.com/yahoo-finance-api-for-ios/
- Size: 138 KB
- Stars: 95
- Watchers: 13
- Forks: 24
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- awesome-fintech - YahooFinance - iOS API for Yahoo finance. Stock symbol search, stock details and currency conversion. (Libraries / Objective-C)
README
# YahooFinance
The YahooFinance framework is an iOS Objective-C framework for Yahoo Finance.
## Features
- Search for stock symbols from major global stock exchanges [list](http://finance.yahoo.com/exchanges)
- Retrieve stock details such as quotes, volumes etc.
- Currency conversion for all major world currencies.## Links
- [YahooFinance framework blogpost with video demonstration](http://blog.sallarp.com/yahoo-finance-api-for-ios/)
- [Yahoo! Finance](http://finance.yahoo.com)## Dependency projects
- [ASIHTTPRequest](https://github.com/pokeb/asi-http-request)
- [JSON Framework](https://github.com/stig/json-framework)## Install (iOS)
- Add ASIHTTPRequest to your project (see project specific details).
- Add JSON Framework to your project (see project specific details).
- Add the folder BSYahooFinance to your project.
- Include "BSYahooFinance.h" to use the features in YahooFinance.## NOTE
The external components are submodules to the project. To get it running do the following:
1. Clone YahooFinance
2. Change directory to where you cloned YahooFinance, (cd YahooFinance)
3. Run the following commands:
- git submodule init
- git submodule update
Now you have the required components and the sample project will run as expected.