@barchart/portfolio-api-common 1.2.4 → 1.2.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/processing/PositionItem.js +10 -0
- package/package.json +1 -1
- package/test/SpecRunner.js +10 -0
|
@@ -111,6 +111,16 @@ module.exports = (() => {
|
|
|
111
111
|
return this._currency;
|
|
112
112
|
}
|
|
113
113
|
|
|
114
|
+
/**
|
|
115
|
+
* Indicates if the position's symbol is invalid.
|
|
116
|
+
*
|
|
117
|
+
* @public
|
|
118
|
+
* @returns {Object}
|
|
119
|
+
*/
|
|
120
|
+
get invalid() {
|
|
121
|
+
return this._invalid;
|
|
122
|
+
}
|
|
123
|
+
|
|
114
124
|
/**
|
|
115
125
|
* The year-to-date position summary of the encapsulated position.
|
|
116
126
|
*
|
package/package.json
CHANGED
package/test/SpecRunner.js
CHANGED
|
@@ -3075,6 +3075,16 @@ module.exports = (() => {
|
|
|
3075
3075
|
return this._currency;
|
|
3076
3076
|
}
|
|
3077
3077
|
|
|
3078
|
+
/**
|
|
3079
|
+
* Indicates if the position's symbol is invalid.
|
|
3080
|
+
*
|
|
3081
|
+
* @public
|
|
3082
|
+
* @returns {Object}
|
|
3083
|
+
*/
|
|
3084
|
+
get invalid() {
|
|
3085
|
+
return this._invalid;
|
|
3086
|
+
}
|
|
3087
|
+
|
|
3078
3088
|
/**
|
|
3079
3089
|
* The year-to-date position summary of the encapsulated position.
|
|
3080
3090
|
*
|