@barchart/portfolio-api-common 1.0.261 → 1.0.262
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.
|
@@ -123,7 +123,7 @@ module.exports = (() => {
|
|
|
123
123
|
|
|
124
124
|
this._forexSymbols = forexCurrencyCodes.reduce((symbols, code) => {
|
|
125
125
|
if (code !== DEFAULT_CURRENCY.code) {
|
|
126
|
-
symbols.push(`^${
|
|
126
|
+
symbols.push(`^${code}${DEFAULT_CURRENCY.code}`);
|
|
127
127
|
}
|
|
128
128
|
|
|
129
129
|
return symbols;
|
package/package.json
CHANGED
package/test/SpecRunner.js
CHANGED
|
@@ -935,7 +935,7 @@ module.exports = (() => {
|
|
|
935
935
|
|
|
936
936
|
this._forexSymbols = forexCurrencyCodes.reduce((symbols, code) => {
|
|
937
937
|
if (code !== DEFAULT_CURRENCY.code) {
|
|
938
|
-
symbols.push(`^${
|
|
938
|
+
symbols.push(`^${code}${DEFAULT_CURRENCY.code}`);
|
|
939
939
|
}
|
|
940
940
|
|
|
941
941
|
return symbols;
|