PHPackages                             flaviovs/php-questrade - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [API Development](/categories/api)
4. /
5. flaviovs/php-questrade

ActiveLibrary[API Development](/categories/api)

flaviovs/php-questrade
======================

Thin abstraction layer around Questrade API for PHP

0.0.3(5y ago)1211[3 issues](https://github.com/flaviovs/php-questrade/issues)[1 PRs](https://github.com/flaviovs/php-questrade/pulls)MITPHPPHP &gt;= 5.6.0

Since Aug 5Pushed 5y ago1 watchersCompare

[ Source](https://github.com/flaviovs/php-questrade)[ Packagist](https://packagist.org/packages/flaviovs/php-questrade)[ RSS](/packages/flaviovs-php-questrade/feed)WikiDiscussions master Synced today

READMEChangelogDependencies (1)Versions (5)Used By (0)

PHP Questrade
=============

[](#php-questrade)

This package provide a thin abstraction layer around [Questrade API](https://www.questrade.com/api/home)

**This package is not affiliated, sponsored, or endorsed by Questrade in any way. The name Questrade, as well as related names and images, are registered trademarks of their respective owners.**

Requirements
------------

[](#requirements)

- PHP &gt;= 5.6
- CURL extension

Installation
------------

[](#installation)

```
composer require flaviovs/php-questrade

```

Usage
-----

[](#usage)

```
use fv\questrade\Client;
use fv\questrade\Error;
use fv\questrade\Token;

// Manual authorization can be done in
// https://login.questrade.com/APIAccess/UserApps.aspx
const REFRESH_TOKEN = 'MANUAL-AUTH-API-KEY';

$client = new Client(Client::URL_LIVE);

try {
	$token = $client->getAccessToken(REFRESH_TOKEN);
} catch (Error $ex) {
	echo $ex->getMessage() . "\n";
	exit(1);
}

foreach ($client->symbolSearch($token, 'DJI') as $result) {
	print_r($result);
}

// By default this will fetch daily quotes from 7 day ago until
// today. See the code for more information.
// Note: 16434 == DJI symbol ID.
foreach ($client->marketsCandles($token, 16434) as $result) {
	print_r($result);
}
```

Bugs? Suggestions?
------------------

[](#bugs-suggestions)

Visit

###  Health Score

17

—

LowBetter than 6% of packages

Maintenance0

Infrequent updates — may be unmaintained

Popularity9

Limited adoption so far

Community8

Small or concentrated contributor base

Maturity43

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 100% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Every ~6 days

Total

4

Last Release

2138d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/c4f7729440b3a6349f7aaed372ad81ac4746b1c5b801abd644158daad410926e?d=identicon)[flaviovs](/maintainers/flaviovs)

---

Top Contributors

[![flaviovs](https://avatars.githubusercontent.com/u/1832699?v=4)](https://github.com/flaviovs "flaviovs (5 commits)")

###  Code Quality

Code StylePHP\_CodeSniffer

### Embed Badge

![Health badge](/badges/flaviovs-php-questrade/health.svg)

```
[![Health](https://phpackages.com/badges/flaviovs-php-questrade/health.svg)](https://phpackages.com/packages/flaviovs-php-questrade)
```

###  Alternatives

[exsyst/swagger

A php library to manipulate Swagger specifications

35916.4M7](/packages/exsyst-swagger)[hubspot/api-client

Hubspot API client

24016.2M20](/packages/hubspot-api-client)[pocketmine/bedrock-protocol

An implementation of the Minecraft: Bedrock Edition protocol in PHP

172445.0k13](/packages/pocketmine-bedrock-protocol)[botman/driver-telegram

Telegram driver for BotMan

93459.5k6](/packages/botman-driver-telegram)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
