Skip to content

Commit

Permalink
Added Morningstar security types.
Browse files Browse the repository at this point in the history
  • Loading branch information
bre1470 committed Sep 4, 2024
1 parent 8f1623c commit 6629278
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions src/Shared/MorningstarOptions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -151,6 +151,38 @@ export interface MorningstarSecurityOptions {
*/
idType: string;

/**
* Type of security.
*/
type?: (string|MorningstarSecurityType);

}


/* *
*
* Enums
*
* */


export enum MorningstarSecurityType {
'Bond' = 'BD',
'529 Portfolio' = 'CT',
'Cash' = 'CASH',
'Category Average' = 'CA',
'Closed-End Fund' = 'FC',
'Economics Series' = 'EI',
'Exchange-Traded Fund' = 'FE',
'Index' = 'XI',
'Insurance Product Fund' = 'FV',
'Money Market Fund' = 'FM',
'Open-End Fund' = 'FO',
'Separate Account' = 'SA',
'Stock' = 'ST',
'UK LP SubAccounts' = 'VA',
'Unit Investment Trust' = 'FI',
'Variable Annuity' = 'V1'
}


Expand Down

0 comments on commit 6629278

Please sign in to comment.