커뮤니티

예스랭귀지 Q&A

글쓰기
답변완료

검색식 부탁드립니다.

안녕하세요?언제나 친절한 답변 감사합니다.------------------------------20봉이내 어떠한 신호가 뜨는걸 검색하려면 어떤 수식을 넣어야하는지 궁금합니다.예를 들어...각각 A-B-C 라는 3개의 예스검색이 있고, 20봉안에 각 A-B-C의 종목(신호)을 같이 골라내는 수식을 어떻게 작성하는지 궁금합니다.1. 20봉이내라는 검색식 <------- 질문의 요지2. A 검색식3. B 검색식4. C 검색식이렇게 해서 검색식을 돌리면 될까요? 가능하시면 1번의 (20봉이내)이라는 다른 하나의 검색식식 부탁드립니다..감사합니다.
프로필 이미지
오말리
2025-10-17
113
글번호 226976
종목검색
답변완료

수식부탁드립니다.

당일 첫봉 ( 5분봉, 또는 10분봉 등)의 고저종 값을 돌파하는 수식을 부탁합니다.첫봉의 분봉을 입력값으로고저종 값도 입력값으로 부탁합니다.그리고 이 수식을 적용할 때종목검색창에 일봉을 선택해야 할지 수식에 맞는 분봉값을 선택해야 할지 알려 주시면 감사하겠습니다.
프로필 이미지
bw
2025-10-17
148
글번호 226974
종목검색

pmcj 님에 의해서 삭제되었습니다.

프로필 이미지
pmcj
2025-10-17
57
글번호 226973
종목검색
답변완료

종목검색식

1) 최근 10일 이내에 '전일 종가 대비 N(%) 이상 상승' AND '거래량이 전일 대비 VolumeMultiple(배) 이상 증가'를 같은 날 동시에 만족한 날이 1회 이상 존재하고,2) 거래량이 3일 이상 연속 감소하여 '어제'가 최소 거래량 (V[3] > V[2] > V[1]),3) 오늘은 양봉(C > O) 이면서,4) 오늘 거래량이 어제 거래량을 돌파(V > V[1])이면 종목을 찾음.
프로필 이미지
삼손감자
2025-10-17
134
글번호 226972
종목검색
답변완료

문의드립니다

Inputs: Period(240), Smooth(5), Thr(0.95), UseAutoScale(true), ScaleFix(10000);Vars: U(0), D(0), SU(0), SD(0), FlowRaw(0), Flow(0), Slope(0), Col(magenta), Scale(0);If C > C[1] Then begin U = V; D = 0;endElse If C < C[1] Then begin U = 0; D = V;endElse begin U = V * 0.95; D = V * 0.95;end;SU = SummationRec(U, Period);SD = SummationRec(D, Period);If (SU + SD) <> 0 Then FlowRaw = (SU - SD) / (SU + SD);Else FlowRaw = 0;Flow = TXAverage(Upvol/DownVol,5,20,60); Slope = Flow - Flow[1];If Slope > 0 Then Col = Magenta;buy();Else If Slope < 0 Then Col = Cyan;sell();조건이 갖춰졌을때 처음에만 신호가나올수있게 해주세요
프로필 이미지
처음처럼22
2025-10-17
115
글번호 226971
시스템
답변완료

문의 드립니다.

//@version=6// Copyright (c) 2019-present, Alex Orekhov (everget)// Chandelier Exit script may be freely distributed under the terms of the GPL-3.0 license.indicator('Chandelier Exit', shorttitle = 'CE', overlay = true)const string calcGroup = 'Calculation'length = input.int(22, title = 'ATR Period', group = calcGroup)mult = input.float(3.0, step = 0.1, title = 'ATR Multiplier', group = calcGroup)useClose = input.bool(true, title = 'Use Close Price for Extremums', group = calcGroup)const string visualGroup = 'Visuals'showLabels = input.bool(true, title = 'Show Buy/Sell Labels', group = visualGroup)highlightState = input.bool(true, title = 'Highlight State', group = visualGroup)const string alertGroup = 'Alerts'awaitBarConfirmation = input.bool(true, title = 'Await Bar Confirmation', group = alertGroup)//---atr = mult * ta.atr(length)longStop = (useClose ? ta.highest(close, length) : ta.highest(length)) - atrlongStopPrev = nz(longStop[1], longStop)longStop := close[1] > longStopPrev ? math.max(longStop, longStopPrev) : longStopshortStop = (useClose ? ta.lowest(close, length) : ta.lowest(length)) + atrshortStopPrev = nz(shortStop[1], shortStop)shortStop := close[1] < shortStopPrev ? math.min(shortStop, shortStopPrev) : shortStopvar int dir = 1dir := close > shortStopPrev ? 1 : close < longStopPrev ? -1 : dirconst color textColor = color.whiteconst color longColor = color.greenconst color shortColor = color.redconst color longFillColor = color.new(color.green, 85)const color shortFillColor = color.new(color.red, 85)buySignal = dir == 1 and dir[1] == -1longStopPlot = plot(dir == 1 ? longStop : na, title = 'Long Stop', style = plot.style_linebr, linewidth = 2, color = longColor)plotshape(buySignal ? longStop : na, title = 'Long Stop Start', location = location.absolute, style = shape.circle, size = size.tiny, color = longColor)plotshape(buySignal and showLabels ? longStop : na, title = 'Buy Label', text = 'Buy', location = location.absolute, style = shape.labelup, size = size.tiny, color = longColor, textcolor = textColor)sellSignal = dir == -1 and dir[1] == 1shortStopPlot = plot(dir == 1 ? na : shortStop, title = 'Short Stop', style = plot.style_linebr, linewidth = 2, color = shortColor)plotshape(sellSignal ? shortStop : na, title = 'Short Stop Start', location = location.absolute, style = shape.circle, size = size.tiny, color = shortColor)plotshape(sellSignal and showLabels ? shortStop : na, title = 'Sell Label', text = 'Sell', location = location.absolute, style = shape.labeldown, size = size.tiny, color = shortColor, textcolor = textColor)midPricePlot = plot(ohlc4, title = '', display = display.none, editable = false)fill(midPricePlot, longStopPlot, title = 'Long State Filling', color = (highlightState and dir == 1 ? longFillColor : na))fill(midPricePlot, shortStopPlot, title = 'Short State Filling', color = (highlightState and dir == -1 ? shortFillColor : na))await = awaitBarConfirmation ? barstate.isconfirmed : truealertcondition(dir != dir[1] and await, title = 'CE Direction Change', message = 'Chandelier Exit has changed direction, {{exchange}}:{{ticker}}')alertcondition(buySignal and await, title = 'CE Buy', message = 'Chandelier Exit Buy, {{exchange}}:{{ticker}}')alertcondition(sellSignal and await, title = 'CE Sell', message = 'Chandelier Exit Sell, {{exchange}}:{{ticker}}')트레이딩뷰 수식인데 예스트레이더 매수/매도 시스템신호로 만들어주세요.
프로필 이미지
신대륙발견
2025-10-17
149
글번호 226969
시스템
답변완료

종목검색식 부탁드립니다

1. 일목균형표 에서, 캔들의 종가가 구름을 돌파할때 종목검색식 부탁드립니다.2. 일목균형표 에서, 캔들의 종가가 구름을 돌파할때 0봉전~10봉전까지의 모든종목 검색식 부탁드려요.
프로필 이미지
일지매7
2025-10-17
119
글번호 226968
종목검색
답변완료

수식 부탁드립니다

부탁드립니다.if CrossUp(source, upper_band) Then Buy("Buy");if CrossDown(source, lower_band) Then Sell("Sell");Buy 진입 후 진입봉 제외 2연속 음봉이면 청산, 2연속 양봉이면 재진입.Sell 진입 후 진입봉 제외 2연속 양봉이면 청산 , 2연속 음봉이면 재진입.
프로필 이미지
사노소이
2025-10-17
116
글번호 226967
시스템
답변완료

수식 부탁 드림니다

안녕하십니까?수식 부탁 드립니다1.변동폭라인-(상단선)종가고점=최고값(종가, 기간); 시가고점=최고값(시가, 기간);상단선=최대값(종가고점, 시가고점)---------------------------------------2.변동폭라인-(하단선)종가저점=최저값(종가, 기간);시가저점=최저값(시가, 기간);하단선=최소값(종가저점, 시가저점)---------------------------------------3.price_상단highest(H, period, R); --------------------------------------4.price하단lowest(L, period, R);----------------------------------------기간 = 5period = 5R = 1항상 감사 합니다
프로필 이미지
s1017051
2025-10-17
106
글번호 226966
지표
답변완료

setstoploss 관련 질문 드립니다.

항상 많은 도움 감사드립니다.setstoploss 설정에 대해서 궁금한 점이 있어서 문의 드립니다.한 시스템 안에buy "A";buy "B";buy "C":라는 세가지 진입 수식이 있고 이에 따라서exitlong "A";exitlong "B";exitlong "C"; 세가지 청산식 있는 경우에 "A" 청산식에setstoploss(10,pointStop);exitlong "A";exitlong "B";exitlong "C"; 이런식으로 하나의 청산식에 setstoploss 설정을 하면 "B","C" 청산식까지 10포인트 손실이 나면 stoploss로 청산이 됩니다."A","B","C"청산에서 setstoploss값을 따로 설정하거나 "A"만 stoploss를 적용하고 "B","C"는 설정하지 않는 방법이 없을까요?조건 만족시 바로 청산 되는게 setstoploss밖에 없어서 빠른 손절을 위해 setstoploss를 사용할 수 밖에 없는데 setstoploss 값을 "A" =10,"B"=20,"C"=15 이런식으로 작성할 수는 없는지 아니면 다른 명령어를 쓰면 같은 효과를 낼 수 있는 방법이 있는지 문의드립니다.
프로필 이미지
비정성시
2025-10-17
93
글번호 226965
시스템