1
0
forked from Kieran/snort
This commit is contained in:
Martti Malmi 2024-04-09 22:44:36 +03:00
parent 95b160dd04
commit 746a4177cf

View File

@ -30,7 +30,7 @@ export function useRates(symbol: string, leaveOpen = true) {
ask: Number(tag[2]),
bid: Number(tag[3]),
low: Number(tag[4]),
hight: Number(tag[5]),
high: Number(tag[5]),
};
}
@ -57,7 +57,7 @@ export function useRateHistory(symbol: string, size: number, leaveOpen = false)
ask: Number(tag[2]),
bid: Number(tag[3]),
low: Number(tag[4]),
hight: Number(tag[5]),
high: Number(tag[5]),
};
}),
);