1.2.2 • Published 4 years ago

morningstar-equity-classification-system v1.2.2

Weekly downloads
9
License
MIT
Repository
github
Last release
4 years ago

Installation

Yarn

yarn add morningstar-equity-classification-system

NPM

npm install morningstar-equity-classification-system

Usage

import * as mecs from 'morningstar-equity-classification-system';

mecs.all()

/** Output:
 
  [
    { 
      "superSector": "Cyclical",
      "superSectorId": 1,
      "description": "..."
    },
    {
      ...
    }
  ] 
 
**/

mecs.search('finance');

/** Output:
 
  [
    { 
      "superSector": "...",
      "superSectorId": ...,
      "sector": "...",
      "sectorId": ...,
      "industryGroup": "...",
      "industryGroupId": ...,
      "industry": "...",
      "industryId": ...,
      "description": "..."
    },
    {
      ...
    }
  ] 
 
**/

mecs.find('31169148');

/** Output:
 
  { 
    "superSector": "...",
    "superSectorId": ...,
    "sector": "...",
    "sectorId": ...,
    "industryGroup": "...",
    "industryGroupId": ...,
    "industry": "...",
    "industryId": ...,
    "description": "..."
  }
 
**/

mecs.above('31169148');

/** Output:
 
  [
    { 
      "superSector": "...",
      "superSectorId": ...,
      "sector": "...",
      "sectorId": ...,
      "industryGroup": "...",
      "industryGroupId": ...,
      "industry": "...",
      "industryId": 31169148,
      "description": "..."
    },
    { 
      "superSector": "...",
      "superSectorId": ...,
      "sector": "...",
      "sectorId": ...,
      "industryGroup": "...",
      "industryGroupId": 31169,
      "description": "..."
    },
    { 
      "superSector": "...",
      "superSectorId": ...,
      "sector": "...",
      "sectorId": 311,
      "description": "..."
    },
    { 
      "superSector": "...",
      "superSectorId": 3,
      "description": "..."
    }
  ] 
 
**/


mecs.below('311');

/** Output:
 
  [
    { 
      "superSector": "...",
      "superSectorId": ...,
      "sector": "...",
      "sectorId": ...,
      "industryGroup": "...",
      "industryGroupId": 31169,
      "description": "..."
    },
    { 
      "superSector": "...",
      "superSectorId": ...,
      "sector": "...",
      "sectorId": ...,
      "industryGroup": "...",
      "industryGroupId": ...,
      "industry": "...",
      "industryId": 31169148,
      "description": "..."
    }
  ] 
 
**/
1.2.0

4 years ago

1.2.2

4 years ago

1.2.1

4 years ago

1.1.0

4 years ago

1.0.0

4 years ago