커뮤니티

검색식 부탁합니다

프로필 이미지
행복만땅
2025-09-05 09:01:23.0
84
글번호 193742
답변완료
안녕하십니까~ 간단한 조건검색식 부탁 드립니다 **단기 EMA(5)**가 중기 EMA(15) 상향 돌파 (골든크로스) RSI(9) ≥ 55 (강세 진입 확인) 양봉 캔들 (종가 > 시가) 거래량 전일 대비 1.5배 이상 (수급 강화) 종가 > 슈퍼트렌드 (추세 확인 필터) 입니다
종목검색
답변 1
프로필 이미지

예스스탁 예스스탁 답변

2025-09-08 11:26:53.0

안녕하세요 예스스탁입니다. input : period(10),multiplier(3); var : src(0), alpha(0),ATRV(0),upperBand(0),lowerBand(0),direction(0),SuperTrend(C); var1 = Ema(c,5); var2 = Ema(C,15); var3 = rsi(9); if CurrentBar > 1 Then { src = (H+L)/2; alpha = 1 / period ; ATRV = IFf(IsNan(ATRV[1]) == true, ma(TrueRange,period) , alpha * TrueRange + (1 - alpha) * IFf(isnan(ATRV[1])==true,0,ATRV[1])); upperBand = src + multiplier * AtrV; lowerBand = src - multiplier * AtrV; if lowerBand > lowerBand[1] or close[1] < lowerBand[1] Then lowerBand = lowerBand; Else lowerBand = lowerBand[1]; if upperBand < upperBand[1] or close[1] > upperBand[1] Then upperBand = upperBand; Else upperBand = upperBand[1]; if C > UpperBand Then direction = 1; if C < LowerBand Then direction = -1; if direction == 1 Then SuperTrend = lowerband; Else SuperTrend = upperband; if CrossUp(var1,var2) and var3 >= 55 and C > O and V >= V[1]*1.5 and C > supertrend Then Find(1); } 즐거운 하루되세요 > 행복만땅 님이 쓴 글입니다. > 제목 : 검색식 부탁합니다 > 안녕하십니까~ 간단한 조건검색식 부탁 드립니다 **단기 EMA(5)**가 중기 EMA(15) 상향 돌파 (골든크로스) RSI(9) ≥ 55 (강세 진입 확인) 양봉 캔들 (종가 > 시가) 거래량 전일 대비 1.5배 이상 (수급 강화) 종가 > 슈퍼트렌드 (추세 확인 필터) 입니다