mirror of
https://github.com/c9s/bbgo.git
synced 2024-11-10 09:11:55 +00:00
add price change and improve time format
This commit is contained in:
parent
c9aed1e21b
commit
ec86d49135
|
@ -648,7 +648,10 @@ const createLegendUpdater = (legend: HTMLDivElement, prefix: string) => {
|
|||
const createOHLCLegendUpdater = (legend: HTMLDivElement, prefix: string) => {
|
||||
return (param: any, time : any) => {
|
||||
if (param) {
|
||||
legend.innerHTML = prefix + ` O: ${param.open} H: ${param.high} L: ${param.low} C: ${param.close} T: ${new Date(time * 1000)}`;
|
||||
const change = param.close - param.open
|
||||
const t = new Date(time * 1000)
|
||||
const dateStr = moment(t).format("MMM Do YY hh:mm:ss A Z");
|
||||
legend.innerHTML = prefix + ` O: ${param.open} H: ${param.high} L: ${param.low} C: ${param.close} CHG: ${change} T: ${dateStr}`;
|
||||
} else {
|
||||
legend.innerHTML = prefix + ' O: - H: - L: - C: - T: -';
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue
Block a user