Como são calculados os filtros mais populares?

Variação e Variação %

Change= (Close price of the current bar – Close price of the previous bar)

"Preço de fechamento da barra atual" é o preço atual.

"Preço de fechamento da barra anterior" — o preço de fechamento da barra anterior no intervalo de tempo selecionado.

"Variação" é a diferença entre a barra atual e a anterior. A "Variação (%)" é calculada com base no período de tempo selecionado no rastreador. Portanto, se o intervalo de tempo de 1S for aplicado, então variação = Fechamento da barra semanal atual — Fechamento da barra semanal anterior (você pode ver estas barras no gráfico se você selecionar o período de tempo do gráfico semanal).

Change % = ((Close price of the current bar – Close price of the previous bar)/Close price of the previous bar) * 100

As fórmulas para Variação 1m, Variação 5m, etc., nas quais o intervalo de tempo é especificado, são calculadas com base neste intervalo de tempo, e o intervalo de tempo total do rastreamento não é levado em conta. Se o período de tempo geral do rastreador for 1S, então a Variação 1m ainda será calculada com base no período de 1m.

Change 1m = (Close price of the current 1m bar – Close price of the previous 1m bar)Change 1m % = (Change 1m / Close price of the previous 1m bar ) * 100
Change 5m = (Close price of the current 5m bar – Close price of the previous 5m bar)Change 5m % = (Change 5m / Close price of the previous 5m bar ) * 100
Java
Change 15m = (Close price of the current 15m bar – Close price of the previous 15m bar)Change 15m % = (Change 15m / Close price of the previous 15m bar ) * 100
Java
Change 1h = (Close price of the current 1h bar – Close price of the previous 1h bar)Change 1h % = (Change 1h / Close price of the previous 1h bar ) * 100
Java
Change 4h = (Close price of the current 4h bar – Close price of the previous 4h bar)Change 4h % = (Change 4h / Close price of the previous 4h bar ) * 100


Variação da Abertura e Variação da Abertura %.

Change from Open = (Close price of the current bar - Open price of the current bar)
Java
Change from Open % = (Change from Open / Open price of the current bar) * 100


O valor mostra a dinâmica da barra atual.

Variação do Pré-mercado e Variação % do Pré-mercado

Pre-market Change = (Close price of the pre-market - Close price of the previous regular session) 
Java
Pre-market Change % = (Pre-market Change/ Close price of the previous regular session) * 100

Variação Pós-mercado e Variação % Pós-mercado

Post-market Change = Close price of the post-market - Close price of the previous regular session
Java
Post-market Change % = Post-market Change / Close price of the previous regular session * 100


Variação Pré-mercado da Abertura e Variação % Pré-mercado da Abertura

Pre-market Change from Open = Close price of the pre-market - Open price of the pre-market
Java
Pre-market Change from Open% = Pre-market Change from Open / Open price of the pre-market * 100
GAP % e Gap Pré-mercado %
GAP % = (Open price of the current bar - Close price of the previous bar) /Close price of the previous bar * 100
Java
Pre-market Gap % = (Open price of the pre-market - Close price of the previous regular session) / Close price of the previous regular session *100