fix: fixed the chart description

This commit is contained in:
Linkie Link 2023-11-11 09:28:46 +01:00
parent 8bd912c520
commit ecb75e5261
No known key found for this signature in database
GPG Key ID: 5318B0F2564D38EA

View File

@ -83,7 +83,7 @@ export class DataFeed implements IDatafeedChartApi {
const denom2 = pairName.split(PAIR_SEPARATOR)[1]
const asset1 = ASSETS.find(byDenom(denom1))
const asset2 = ASSETS.find(byDenom(denom2))
return `${asset1?.symbol}/${asset2?.symbol}`
return `${asset2?.symbol}/${asset1?.symbol}`
}
async getPairsWithData() {
@ -432,10 +432,10 @@ export class DataFeed implements IDatafeedChartApi {
bars.push({
time: pair1Bar.time,
open: devideByPotentiallyZero(pair2Bar.open, pair1Bar.open),
close: devideByPotentiallyZero(pair2Bar.close, pair1Bar.close),
high: devideByPotentiallyZero(pair2Bar.high, pair1Bar.high),
low: devideByPotentiallyZero(pair2Bar.low, pair1Bar.low),
open: devideByPotentiallyZero(pair1Bar.open, pair2Bar.open),
close: devideByPotentiallyZero(pair1Bar.close, pair2Bar.close),
high: devideByPotentiallyZero(pair1Bar.high, pair2Bar.high),
low: devideByPotentiallyZero(pair1Bar.low, pair2Bar.low),
})
})
return bars