Sice,
document.addEventListener("mouseover", function({ target }) {
if (target = target.closest("[data-token]")) {
const { token } = target.dataset;
new TV.widget({
"width": 980,
"height": 610,
"symbol": token,
"interval": "5",
"timezone": "Europe/Moscow",
"theme": "dark",
"style": "1",
"locale": "ru",
"toolbar_bg": "#f1f3f6",
"enable_publishing": false,
"studies": [
"BB@tv-basicstudies"
],
"show_popup_button": true,
"popup_width": "1000",
"popup_height": "650",
"container_id": token,
});
}
});
|