커뮤니티

종목검색 부탁드립니다.

프로필 이미지
만경
2026-03-01 16:53:40
62
글번호 230817
답변완료

1. macd(12,26,9)가 0기준선을 기준으로 +2 %~-2%를 오르내리면서 20봉이상 횡보하는 종목


2. OBV가 0 기준선 이하에서 주가등락률이 +2 %~-2% 내에서 오르내리면서 20봉이상 횡보하는 종목


3. 1과2를 다 포함한 종목검색식 부탁드립니다.

종목검색
답변 1
프로필 이미지

예스스탁 예스스탁 답변

2026-03-03 14:49:42

안녕하세요 예스스탁입니다. 1 input : short(12),long(26),sig(9); var : macdv(0),macds(0); macdv = macd(short,long); macds = ema(macdv,sig); if CountIf( Macdv <= 2 and Macdv >= -1,20) == 20 Then Find(1); 2 if CountIf(OBV<0 and highest(H,20) <= lowest(L,20)*1.04,20) == 20 Then Find(1); 3 input : short(12),long(26),sig(9); var : macdv(0),macds(0); macdv = macd(short,long); macds = ema(macdv,sig); if CountIf( Macdv <= 2 and Macdv >= -1,20) == 20 and CountIf(OBV<0 and highest(H,20) <= lowest(L,20)*1.04,20) == 20 Then Find(1); 즐거운 하루되세요