{
let data_bourse_s2 =
data_bourse.map(
function (d) {
let evolution_parsed = +(d.New_evo2.replace(',', '.').replace('%', ''))
let thisObj = {}
thisObj['ticker'] = d.ticker
thisObj['name'] = d.names
thisObj['Evolution'] = evolution_parsed
thisObj['color'] = color1(evolution_parsed)
return thisObj
})
const out = html`<div><p></p></div>`
yield out;
let this_text = (data_bourse_s2.map(d=> `${d.name}: ${d.color}`).join('<br>'))
out.querySelector("p").innerHTML=this_text
}