Bagaimana filter paling populer dihitung ?

Perubahan dan % Perubahan 
Change= (Close price of the current bar – Close price of the previous bar)
Java"Harga penutupan dari bar saat ini" adalah harga saat ini."Harga penutupan dari bar sebelumnya" – harga penutupan dari bar sebelumnya pada kerangka waktu yang dipilih."Perubahan" adalah perbedaan  antara bar saat ini dan bar sebelumnya. "Perubahan (%)" dihitung berdasarkan kerangka waktu yang dipilih pada penyaring. Oleh karena itu, jika interval interval 1W diterapkan, kemudian berubah = pentupan bar minggu ini - penutupan dari bar mingguan sebelumnya (anda dapat melihat bar tersebut pada chart jika anda memilih chart dengan kerangka waktu mingguan).
Change % = ((Close price of the current bar – Close price of the previous bar)/Close price of the previous bar) * 100
Java
Formula untuk perubahan 1m, perahan 5m, dsb., dimana kerangka waktu ditentukan, dihitung berdasarkan pada kerangka waktu ini, dan total kerangka waktu dari penyaring yang tidak diperhitungkan. Jika secara umum kerangka waktu penyaring adalah 1W, maka perubahan 1m akan tetap dihitung berdasarkan kerangka waktu 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
Java
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
JavaPerubahan dari Pembukaan dan % Perubahan dari Pembukaan
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
JavaNilai menunjukkan dinamika dari bar saat ini.

Perubahan Pra-pasar dan % Perubahan Pra-pasar

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
Java

Perubahan Pasca-pasar dan % Perubahan Pasca-pasar 

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
Java

Perubahan Pra-pasar dari pembukaan dan % Perubahan Pra-pasar dari pembukaan

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
Java

% GAP and % Gap Pra-pasar

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
Java