joseraul / nasdaq-crawler
Framework agnostic PHP Nasdaq crawler
Installs: 1 898
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
Requires (Dev)
- phpunit/phpunit: ^9
This package is not auto-updated.
Last update: 2025-04-16 00:52:35 UTC
README
Nasdaq Crawler
This is an Open Source PHP package that helps to extract information from the official Nasdaq website.
Keep in mind that you do not own the information, it is only for your personal use.
Install
composer require joseraul/nasdaq-crawler
How to use
Resources
FTP
Get files from the ftp folder: ftp://ftp.nasdaqtrader.com
Not parsed (return the raw file)
path()
$client = new NasdaqCrawler\Client();
$data = $client->ftp()->path('SymbolDirectory/nasdaqlisted.txt');
print_r($data);
Parsed (response cleaned)
nasdaqlisted()
$client = new NasdaqCrawler\Client();
$data = $client->ftp()->nasdaqlisted();
print_r($data);