;(function() { window.createMeasureObserver = (measureName) => { var markPrefix = `_uol-measure-${measureName}-${new Date().getTime()}`; performance.mark(`${markPrefix}-start`); return { end: function() { performance.mark(`${markPrefix}-end`); performance.measure(`uol-measure-${measureName}`, `${markPrefix}-start`, `${markPrefix}-end`); performance.clearMarks(`${markPrefix}-start`); performance.clearMarks(`${markPrefix}-end`); } } }; /** * Gerenciador de eventos */ window.gevent = { stack: [], RUN_ONCE: true, on: function(name, callback, once) { this.stack.push([name, callback, !!once]); }, emit: function(name, args) { for (var i = this.stack.length, item; i--;) { item = this.stack[i]; if (item[0] === name) { item[1](args); if (item[2]) { this.stack.splice(i, 1); } } } } }; var runningSearch = false; var hadAnEvent = true; var elementsToWatch = window.elementsToWatch = new Map(); var innerHeight = window.innerHeight; // timestamp da última rodada do requestAnimationFrame // É usado para limitar a procura por elementos visíveis. var lastAnimationTS = 0; // verifica se elemento está no viewport do usuário var isElementInViewport = function(el) { var rect = el.getBoundingClientRect(); var clientHeight = window.innerHeight || document.documentElement.clientHeight; // garante que usa ao mínimo 280px de margem para fazer o lazyload var margin = clientHeight + Math.max(280, clientHeight * 0.2); // se a base do componente está acima da altura da tela do usuário, está oculto if(rect.bottom < 0 && rect.bottom > margin * -1) { return false; } // se o topo do elemento está abaixo da altura da tela do usuário, está oculto if(rect.top > margin) { return false; } // se a posição do topo é negativa, verifica se a altura dele ainda // compensa o que já foi scrollado if(rect.top < 0 && rect.height + rect.top < 0) { return false; } return true; }; var asynxNextFreeTime = () => { return new Promise((resolve) => { if(window.requestIdleCallback) { window.requestIdleCallback(resolve, { timeout: 5000, }); } else { window.requestAnimationFrame(resolve); } }); }; var asyncValidateIfElIsInViewPort = function(promise, el) { return promise.then(() => { if(el) { if(isElementInViewport(el) == true) { const cb = elementsToWatch.get(el); // remove da lista para não ser disparado novamente elementsToWatch.delete(el); cb(); } } }).then(asynxNextFreeTime); }; // inicia o fluxo de procura de elementos procurados var look = function() { if(window.requestIdleCallback) { window.requestIdleCallback(findByVisibleElements, { timeout: 5000, }); } else { window.requestAnimationFrame(findByVisibleElements); } }; var findByVisibleElements = function(ts) { var elapsedSinceLast = ts - lastAnimationTS; // se não teve nenhum evento que possa alterar a página if(hadAnEvent == false) { return look(); } if(elementsToWatch.size == 0) { return look(); } if(runningSearch == true) { return look(); } // procura por elementos visíveis apenas 5x/seg if(elapsedSinceLast < 1000/5) { return look(); } // atualiza o último ts lastAnimationTS = ts; // reseta status de scroll para não entrar novamente aqui hadAnEvent = false; // indica que está rodando a procura por elementos no viewport runningSearch = true; const done = Array.from(elementsToWatch.keys()).reduce(asyncValidateIfElIsInViewPort, Promise.resolve()); // obtém todos os elementos que podem ter view contabilizados //elementsToWatch.forEach(function(cb, el) { // if(isElementInViewport(el) == true) { // // remove da lista para não ser disparado novamente // elementsToWatch.delete(el); // cb(el); // } //}); done.then(function() { runningSearch = false; }); // reinicia o fluxo de procura look(); }; /** * Quando o elemento `el` entrar no viewport (-20%), cb será disparado. */ window.lazyload = function(el, cb) { if(el.nodeType != Node.ELEMENT_NODE) { throw new Error("element parameter should be a Element Node"); } if(typeof cb !== 'function') { throw new Error("callback parameter should be a Function"); } elementsToWatch.set(el, cb); } var setEvent = function() { hadAnEvent = true; }; window.addEventListener('scroll', setEvent, { capture: true, ive: true }); window.addEventListener('click', setEvent, { ive: true }); window.addEventListener('resize', setEvent, { ive: true }); window.addEventListener('load', setEvent, { once: true, ive: true }); window.addEventListener('DOMContentLoaded', setEvent, { once: true, ive: true }); window.gevent.on('allJSLoadedAndCreated', setEvent, window.gevent.RUN_ONCE); // inicia a validação look(); })();
Topo
Notícias

Fechamento do mercado financeiro

São Paulo, 23

23/05/2025 18h33

A seguir, o fechamento dos principais indicadores do mercado financeiro.

BOLSAS

Ibovespa: +0,4%

Pontos: 137.824,29

Máxima de +0,4% : 137.824 pontos

Mínima de -1,66% : 134.997 pontos

Volume: R$ 20,86 bilhões

Variação em 2025: 14,58%

Variação no mês: 2,04%

Dow Jones: -0,61%

Pontos: 41.603,07

Nasdaq: -1%

Pontos: 18.737,21

Ibovespa Futuro: +1,87%

Pontos: 138.930

Máxima (pontos): 139.180

Mínima (pontos): 135.955

BLUE CHIPS

Itau Unibanco PN

Preço: R$ 37,72

Variação: +1,21%

Petrobras PN

Preço: R$ 31,40

Variação: +0,22%

Bradesco PN

Preço: R$ 15,64

Variação: +1,23%

Ambev ON

Preço: R$ 14,24

Variação: +0,99%

Petrobras ON

Preço: R$ 33,48

Variação: +0,15%

Vale PNA

Preço: R$ 54,32

Variação: +0,17%

BRF SA ON

Preço: R$ 21,42

Variação: estável

Vale ON

Preço: R$ 54,32

Variação: +0,17%

Itausa PN

Preço: R$ 11,14

Variação: +0,81%

JBS ON

Preço: R$ 41,74

Variação: -1,23%

Global 40

Cotação: 740,731 centavos de dólar

Variação: +0,49%

CÂMBIO

- Dólar comercial no balcão

Compra: R$ 5,6460

Venda: R$ 5,6470

Variação: -0,25%

- Dólar Paralelo

Compra: R$ 5,84

Venda: R$ 5,94

Variação: +0,52%

- Dólar Ptax

Compra: R$ 5,6926

Venda: R$ 5,6932

Variação: +0,96%

- Dólar Turismo

Compra: R$ 5,8200

Venda: R$ 5,9080

Variação: +0,7%

- Dólar Futuro (junho)

Cotação: R$ 5,6575

Variação: -1,84%

- Euro

Compra: US$ 1,1361 (às 18h59)

Venda: US$ 1,1367 (às 18h59)

Variação: +0,01%

- Euro comercial

Compra: R$ 6,4150

Venda: R$ 6,4160

Variação: +0,47%

- Euro turismo

Compra: R$ 6,6000

Venda: R$ 6,7340

Variação: +1,4%

JUROS

- CDB prefixado de 30 dias, 14,67% ao ano.

- Capital de giro, 6,76% ao ano.

- Hot money, 0,63% ao mês.

- CDI, 14,65% ao ano.

- Over a 14,65%

OURO

- Ouro

Cotação: US$ 3.365,80 a onça-troy. (1 onça-troy equivale a 31,1035 gramas)

Variação: +2,15%

Notícias