커뮤니티

종목 검색 부탁드립니다.

프로필 이미지
골든도라도
2025-09-11 11:37:18.0
59
글번호 193928
답변완료
smoothADD = ma_length + if(smoothingBool, ma_lengthSmoothing, 0); MS = if(ma_type == 1, ma(C, smoothADD), if(ma_type == 2, eavg(C, smoothADD), if(ma_type == 3, ma(C, smoothADD,가중), eavg(C, smoothADD)))); tolerance_R = MS * toleranceInputR; PREV_BELOW = C(1) <= MS(1) + tolerance_R; CURR_ABOVE = C > MS + tolerance_R; PREV_BELOW AND CURR_ABOVE 지표조건 ma_length : 120 ma_lengthSmoothing : 25 smoothingBool : 0 ma_type : 2 toleranceInputR : 0.0025 위라인 돌파 종목 검색식 부탁드립니다
종목검색
답변 1
프로필 이미지

예스스탁 예스스탁 답변

2025-09-11 13:08:37.0

안녕하세요 예스스탁입니다. input : ma_length(120),ma_lengthsmoothing(25),smoothingbool(0),ma_type(2),toleranceinputr(0.0025); var : smoothadd(0),ms(0),tolerance_r(0),prev_below(False),curr_above(False); smoothadd=ma_length+iff(smoothingbool==1,ma_lengthsmoothing,0); ms=iff(ma_type==1,ma(c,smoothadd), iff(ma_type==2,Ema(c,smoothadd), iff(ma_type==3,wma(c,smoothadd),Ema(c,smoothadd)))); tolerance_r=ms*toleranceinputr; prev_below=c[1]<=ms[1]+tolerance_r; curr_above=c>ms+tolerance_r; if prev_below && curr_above Then Find(1); 즐거운 하루되세요 > 골든도라도 님이 쓴 글입니다. > 제목 : 종목 검색 부탁드립니다. > smoothADD = ma_length + if(smoothingBool, ma_lengthSmoothing, 0); MS = if(ma_type == 1, ma(C, smoothADD), if(ma_type == 2, eavg(C, smoothADD), if(ma_type == 3, ma(C, smoothADD,가중), eavg(C, smoothADD)))); tolerance_R = MS * toleranceInputR; PREV_BELOW = C(1) <= MS(1) + tolerance_R; CURR_ABOVE = C > MS + tolerance_R; PREV_BELOW AND CURR_ABOVE 지표조건 ma_length : 120 ma_lengthSmoothing : 25 smoothingBool : 0 ma_type : 2 toleranceInputR : 0.0025 위라인 돌파 종목 검색식 부탁드립니다