커뮤니티

예스랭귀지 Q&A

글쓰기

[공지] 예스랭귀지 AI 어시스턴트, '예스나 AI' 출시 및 무료 체험 안내

안녕하세요, 예스스탁 입니다.복잡한 수식 공부 없이 여러분의 아이디어를 말하면 시스템 트레이딩 언어 예스랭귀지로 작성해주는 서비스예스나 AI(YesNa AI)가 출시되었습니다.지금 예스나 AI를 직접 경험해 보실 수 있도록 20크레딧(질문권 20회)를 무료로 증정해 드리고 있습니다.바로 여러분의 아이디어를 코드로 변환해보세요.--------------------------------------------------🚀 YesNa AI 핵심 기능- 지표식/전략식/종목검색식 생성: 자연어로 요청하면 예스랭귀지 문법에 맞는 코드를 작성합니다.- 종목검색식 변환 지원: K증권의 종목 검색식을 예스랭귀지로 변환 지원합니다.- 컴파일 검증: 작성된 코드가 실행 가능한지 컴파일러를 통해 문법 검증을 거쳐 결과물을 제공합니다.상세한 서비스 개요 및 활용 방법은 [서비스 소개 페이지]에서 확인하실 수 있습니다.▶ 서비스 소개 페이지: 바로가기서비스 사용 유의사항 및 결제 환불정책은 [이용약관]을 참고 부탁드립니다.▶ 서비스 이용약관: 바로가기💬 이용 문의사용 중 문의사항은 [프로그램 사용법 Q&A] 게시판에서 [예스나 AI] 카테고리를 설정 후 문의해 주시면 상세히 안내해 드리겠습니다.--------------------------------------------------앞으로도 AI를 활용한 다양한 트레이딩 기능들을 지속적으로 선보일 예정입니다.많은 관심과 기대 부탁드립니다.
프로필 이미지
예스스탁
2026-02-27
1317
글번호 230811
지표

노블레스 님에 의해서 삭제되었습니다.

프로필 이미지
노블레스
2025-05-19
0
글번호 190932
지표

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

프로필 이미지
우유
2025-05-19
1
글번호 190931
시스템

와우리 님에 의해서 삭제되었습니다.

프로필 이미지
와우리
2025-05-19
61
글번호 190930
지표

남한산성 님에 의해서 삭제되었습니다.

프로필 이미지
남한산성
2025-05-19
58
글번호 190929
시스템
답변완료

가격 하락 시, 고점에서 일정부분이 하락하면 매도를 칠 수 있는 수식?

예를 들면, 옵션 3분봉에서 순간적으로 하락을 할 때, 고점에서 0.05가 빠지면 거기서 바로 매도를 칠 수 있는 수식은? 도움을 주시기 바랍니다.
프로필 이미지
푸시
2025-05-19
218
글번호 190928
시스템
답변완료

검색식 부탁드립니다. _(_ _)_

항상 도와주심에 감사드립니다. _(__)_ 1봉전에서 첫장기정배열(240<120<60)과 첫완전정배열(240<120<60<20<5)을 동시에 만족시키고 그봉이 음봉일때 1. 0봉전에서 음봉을 잡아먹는 상승장악형봉이 나오는 검색식과 5봉전에서 첫장기정배열(240<120<60)과 첫완전정배열(240<120<60<20<5)을 동시에 만족시키는 봉이 10봉 신고가일때 2.0봉전에서 5봉전 신고가를 재돌파하는 검색식을 부탁드립니다.
프로필 이미지
한칼부르스
2025-05-19
243
글번호 190927
종목검색
답변완료

텍스트 지정

늘 감사합니다 아래의 지정 가격을 가격이름과 가격을 텍스트로 각 차트에 넣어 주세요. 전고/전저/전종 당시/당고/당저/현재/당일등가/진폭 위치는 차트 상단 굵기 조절 가능 감사합니다.
프로필 이미지
상암동
2025-05-18
256
글번호 190926
지표
답변완료

종목 검색 부탁드립니다.

1. 도지형 캔들 종목 검색 부탁 드립니다. 단, 캔들의(양봉 음봉 모두) 몸통보다 각각 윗꼬리가 길고, 아래꼬리가 긴 1봉전 도지형 캔들 2. 양봉 캔들 (0봉전) 종목 검색 부탁드려요.
프로필 이미지
일지매7
2025-05-18
220
글번호 190925
종목검색
답변완료

예스 트레이더 에서 쓸수 있게 고쳐 주세요 감사함미다

트레이딩 뷰에 있는 지표 임미다 indicator(title="Range Filter Buy and Sell 5min", shorttitle="Range Filter", overlay=true) upColor = color.white midColor = #90bff9 downColor = color.blue src = input(defval=close, title="Source") auto_per = input.bool(defval=true, title="Auto-adjust Sampling Period based on timeframe") per_input = input.int(defval=100, minval=1, title="Sampling Period (if not auto)") base_timeframe = 5 // Base timeframe in minutes (5min chart) base_per = 100 // Base sampling period for 5min chart per = auto_per and timeframe.isintraday ? math.max(1, math.round(base_per * (base_timeframe / timeframe.multiplier))) : per_input mult = input.float(defval=3.0, minval=0.1, title="Range Multiplier") smoothrng(x, t, m) => wper = t * 2 - 1 avrng = ta.ema(math.abs(x - x[1]), t) smoothrng = ta.ema(avrng, wper) * m smoothrng smrng = smoothrng(src, per, mult) rngfilt(x, r) => rngfilt = x rngfilt := x > nz(rngfilt[1]) ? x - r < nz(rngfilt[1]) ? nz(rngfilt[1]) : x - r : x + r > nz(rngfilt[1]) ? nz(rngfilt[1]) : x + r rngfilt filt = rngfilt(src, smrng) upward = 0.0 upward := filt > filt[1] ? nz(upward[1]) + 1 : filt < filt[1] ? 0 : nz(upward[1]) downward = 0.0 downward := filt < filt[1] ? nz(downward[1]) + 1 : filt > filt[1] ? 0 : nz(downward[1]) hband = filt + smrng lband = filt - smrng // Colors filtcolor = upward > 0 ? upColor : downward > 0 ? downColor : midColor barcolor = src > filt and src > src[1] and upward > 0 ? upColor : src > filt and src < src[1] and upward > 0 ? upColor : src < filt and src < src[1] and downward > 0 ? downColor : src < filt and src > src[1] and downward > 0 ? downColor : midColor filtplot = plot(filt, color=filtcolor, linewidth=2, title="Range Filter") // Target Bands hbandplot = plot(hband, color=color.new(upColor, 70), title="High Target") lbandplot = plot(lband, color=color.new(downColor, 70), title="Low Target") // Fills fill(hbandplot, filtplot, color=color.new(upColor, 90), title="High Target Range") fill(lbandplot, filtplot, color=color.new(downColor, 90), title="Low Target Range") // Bar Color barcolor(barcolor) // Break Outs longCond = bool(na) shortCond = bool(na) longCond := src > filt and src > src[1] and upward > 0 or src > filt and src < src[1] and upward > 0 shortCond := src < filt and src < src[1] and downward > 0 or src < filt and src > src[1] and downward > 0 CondIni = 0 CondIni := longCond ? 1 : shortCond ? -1 : CondIni[1] longCondition = longCond and CondIni[1] == -1 shortCondition = shortCond and CondIni[1] == 1 // Alerts plotshape(longCondition, title="Buy Signal", text="Buy", textcolor=color.white, style=shape.labelup, size=size.small, location=location.belowbar, color=color.new(#aaaaaa, 20)) plotshape(shortCondition, title="Sell Signal", text="Sell", textcolor=color.white, style=shape.labeldown, size=size.small, location=location.abovebar, color=color.new(downColor, 20)) alertcondition(longCondition, title="Buy alert on Range Filter", message="Buy alert on Range Filter") alertcondition(shortCondition, title="Sell alert on Range Filter", message="Sell alert on Range Filter") alertcondition(longCondition or shortCondition, title="Buy and Sell alert on Range Filter", message="Buy and Sell alert on Range Filter") 지표로 볼수있게 부탁 드려요 건강하세요
프로필 이미지
뽀스뽀스
2025-05-18
373
글번호 190924
지표