제일 많이 쓰는 필터는 어떻게 셈이 되나요?

체인지 및 체인지 %

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

"Close price of the current bar" 는 커런트 프라이스입니다.

"Close price of the previous bar" – 셀렉트한 타임프레임에서 그 이전 바의 클로징 프라이스.

"Change" 는 현재 바와 이전 바의 차이입니다. "Change (%)" 는 스크리너에서 셀렉트한 타임프레임을 기초로 셈을 합니다. 그렇기 때문에 1W 타임 인터벌을 걸면 change = Close of the current weekly bar - Close of the previous weekly bar 가 됩니다 (차트에서 이들 바를 보려면 위클리 타임프레임을 고르면 됩니다).

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

타임 프레임이 지정된 Change 1m, Change 5m, 등의 포뮬러는 이 타임프레임을 기반으로 셈을 하며 스크리너의 토탈 타임프레임은 반영되지 않습니다. 기본 스크리너 타임프레임이 1W 이더라도, Change 1m 는 여전히 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
Java

체인지 프롬 오픈 및 체인지 프롬 오픈 % 

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
Java

이 밸류는 커런트 바의 다이내믹스를 보여줍니다.

프리-마켓 체인지 및 프리-마켓 체인지 %

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

포스트-마켓 체인지 및 포스트-마켓 체인지 %

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

프리-마켓 체인지 프롬 오픈 및 프리-마켓 체인지 프롬 오픈 %

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 % = (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