rzr/markitondemand

Zend Framework 2 module for Markit on Demand API

dev-master 2016-08-17 00:26 UTC

This package is not auto-updated.

Last update: 2024-05-11 17:51:01 UTC


README

  • This module provides OOP access to Markit On Demand's Market Data API in Zend Framework 2

Features

  • Symbol lookup
  • Symbol quote data

Installation

Usage

  • find the symbol for a company on various markets
    • returns an array of objects
    1. $client = new MarkitondemandClient();
    2. $results = $client->lookupCompany('twit');
  • get a quote for symbol
    • returns a quote object
    1. $company = new Company();
    2. $quote = $company->getQuote('TWTR');
  • update a quote object
    1. $quote = new Quote();
    2. $quote->updateQuote();

Resources

To Do List

  • singleton behavior for zend client usage
  • better performance