@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(`^${DEFAULT_CURRENCY.code}${code}`);
126
+ symbols.push(`^${code}${DEFAULT_CURRENCY.code}`);
127
127
  }
128
128
 
129
129
  return symbols;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@barchart/portfolio-api-common",
3
- "version": "1.0.261",
3
+ "version": "1.0.262",
4
4
  "description": "Common classes used by the Portfolio system",
5
5
  "author": {
6
6
  "name": "Bryan Ingle",
@@ -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(`^${DEFAULT_CURRENCY.code}${code}`);
938
+ symbols.push(`^${code}${DEFAULT_CURRENCY.code}`);
939
939
  }
940
940
 
941
941
  return symbols;