커뮤니티
예스랭귀지 Q&A
답변완료
[공지] 예스랭귀지 AI 어시스턴트, '예스나 AI' 출시 및 무료 체험 안내
안녕하세요, 예스스탁 입니다.복잡한 수식 공부 없이 여러분의 아이디어를 말하면 시스템 트레이딩 언어 예스랭귀지로 작성해주는 서비스예스나 AI(YesNa AI)가 출시되었습니다.지금 예스나 AI를 직접 경험해 보실 수 있도록 20크레딧(질문권 20회)를 무료로 증정해 드리고 있습니다.바로 여러분의 아이디어를 코드로 변환해보세요.--------------------------------------------------🚀 YesNa AI 핵심 기능- 지표식/전략식/종목검색식 생성: 자연어로 요청하면 예스랭귀지 문법에 맞는 코드를 작성합니다.- 종목검색식 변환 지원: K증권의 종목 검색식을 예스랭귀지로 변환 지원합니다.- 컴파일 검증: 작성된 코드가 실행 가능한지 컴파일러를 통해 문법 검증을 거쳐 결과물을 제공합니다.상세한 서비스 개요 및 활용 방법은 [서비스 소개 페이지]에서 확인하실 수 있습니다.▶ 서비스 소개 페이지: 바로가기서비스 사용 유의사항 및 결제 환불정책은 [이용약관]을 참고 부탁드립니다.▶ 서비스 이용약관: 바로가기💬 이용 문의사용 중 문의사항은 [프로그램 사용법 Q&A] 게시판에서 [예스나 AI] 카테고리를 설정 후 문의해 주시면 상세히 안내해 드리겠습니다.--------------------------------------------------앞으로도 AI를 활용한 다양한 트레이딩 기능들을 지속적으로 선보일 예정입니다.많은 관심과 기대 부탁드립니다.
2026-02-27
5470
글번호 230811
답변완료
안녕하세요
안녕하세요
선의 기울기에 따라서 색의 변화가 구현되도록 문의드릴 수 있을까요
예) 상승 시 yellow
하락 시 blue
감사합니다.
input : Period(6);
var1 = WMA(2*WMA(c, Period/2) - WMA(c, Period), Sqrt(Period));
plot1(var1);
2020-02-24
405
글번호 136276
답변완료
매수청산 수식에서 추가 기능 부여 부탁드리겠습니다.
아래 수식에서 다음과 같은 기능을 부여부탁드림니다.
1번
매수진입된 상태에서 -100틱(변수설정) 하락한후 매수진입가격도달시 청산 하는 수식을 추가로 넣어주세요~~
if MarketPosition == 1 then
{
BuySetup = false;
if countif(CrossDown(CCIv,CCI값),BarsSinceEntry) >= 1 and
CCIv < CCI값 and C < O Then
ExitLong("매수cci청산"); # CCI청산
if highest(H,BarsSinceEntry) >= EntryPrice+PriceScale*즉시익절1 and C < O Then
ExitLong("즉시익절1"); # 수익청산
if highest(H,BarsSinceEntry) >= (EntryPrice+PriceScale*즉시익절1*N2) Then
ExitLong("본전청산1",AtStop,EntryPrice+PriceScale*즉시익절1*N3); # 본전
Else
{
if L <= EntryPrice-PriceScale*즉시손절1 Then
ExitLong("즉시손절1",AtStop,L-PriceScale*저점손절틱수); # 손절
}
if highest(H,BarsSinceEntry) >= EntryPrice+PriceScale*tr수익 Then
ExitLong("tr",AtStop, highest(H,BarsSinceEntry)-PriceScale*tr하락); # tr청산
}
===========================================================================
2번
매수진입된 상태에서 -100틱(변수설정) 하락한후 CCI값(기간20) > 200 이상 일때 청산 하는 수식을 추가로 넣어주세요~~
if MarketPosition == 1 then
{
BuySetup = false;
if countif(CrossDown(CCIv,CCI값),BarsSinceEntry) >= 1 and
CCIv < CCI값 and C < O Then
ExitLong("매수cci청산"); # CCI청산
if highest(H,BarsSinceEntry) >= EntryPrice+PriceScale*즉시익절1 and C < O Then
ExitLong("즉시익절1"); # 수익청산
if highest(H,BarsSinceEntry) >= (EntryPrice+PriceScale*즉시익절1*N2) Then
ExitLong("본전청산1",AtStop,EntryPrice+PriceScale*즉시익절1*N3); # 본전
Else
{
if L <= EntryPrice-PriceScale*즉시손절1 Then
ExitLong("즉시손절1",AtStop,L-PriceScale*저점손절틱수); # 손절
}
if highest(H,BarsSinceEntry) >= EntryPrice+PriceScale*tr수익 Then
ExitLong("tr",AtStop, highest(H,BarsSinceEntry)-PriceScale*tr하락); # tr청산
}
===========================================================================
2020-02-25
385
글번호 136275
답변완료
주석요청
안녕하세요?
아래 스크립트는 글번호 66149번에 답변 주신 내용입니다.
번거로우시겠지만 구체적이고 자세한 주석 요청드립니다.
언제나 감사드립니다.
input : N1(5),N2(10),X(10);
var : entry(0,data1);
var : H1(0,data1),L1(0,data1),H2(0,data2),L2(0,data2);
H1 = data1(highest(H,N1));
L1 = data1(Lowest(L,N1));
H2 = data2(highest(H,N2));
L2 = data2(Lowest(L,N2));
if (sdate != sdate[1] and stime >= 101500) or
(sdate == sdate[1] and stime >= 101500 and stime[1] < 101500) Then
{
entry = 0;
}
if MarketPosition != 0 and MarketPosition != MarketPosition[1] Then
entry = entry+1;
if stime >= 101500 and stime < 170000 then
{
if entry < X then
{
if MarketPosition <= 0 and data2(C > H2[1]) Then
buy("b",AtStop,H1+PriceScale);
if MarketPosition >= 0 and data2(C < L2[1]) Then
sell("s",AtStop,L1-PriceScale);
}
}
SetStopEndofday(170000);
2020-02-24
459
글번호 136268
답변완료
문의 드립니다 MACD,CCI
RSI 50선 MACD 0선 CCI 0선 상향 돌파하는 신호검색을 하고 싶습니다.
2020-02-24
540
글번호 136267
답변완료
안녕하세요
averageprice = (((high[5]+low[5])/2)+((high[4]+low[4])/2)+((high[3]+low[3])/2)+((high[2]+low[2])/2)+((high[1]+low[1])/2)+((high[6]+low[6])/2))/6
if close > averageprice then
drawcandle(open,high,low,close) coloured(0,255,0)
endif
if close < averageprice then
drawcandle(open,high,low,close) coloured(255,0,0)
endif
return
--------------------------------------------------------------------------
macd1= exponentialaverage[8](close)-exponentialaverage[34](close)
signal1= average[34,1](macd1)
hist1= macd1-signal1
macd2= exponentialaverage[8](close)-exponentialaverage[55](close)
signal2= average[55,1](macd2)
hist2= macd2-signal2
return hist2 coloured(0,128,0) style(histogram),hist1 coloured(218,165,32) style(histogram)
------------------------------------------------------------------------
예스수식으로 변환 문의드립니다. 감사합니다.
2020-02-24
545
글번호 136258
답변완료
수식 확인 부탁합니다
수고하십니다.
아래 종목검색식으로 일정기간동안 계속 "0"위에 있는 종목을 검색하려고 하는데
어느 값에서는 되고, 어느 값에서는 검색이 안되네요..
검색이 안되는 값에서 지표를 확인해 보면 분명히 해당되는 종목이 있는데도요..
아래 수식 확인 좀 부탁드립니다.
수고하세요
*************종목검색식
input : period(3),period1(20), period2(10) ;
var : Counter(0), Lowval(0), Highval(0), DownVel(0),UpVel(0), DnAroon(0),UpAroon(0),AroonOsc(0) ;
Lowval= Lowest(Low, Period+1);
Highval = Highest(High, Period+1);
For counter= 0 To Period {
If Low[counter] == Lowval Then
DownVel = counter;
If High[counter] == highval Then
UpVel = counter;
}
UpAroon = 100*(Period-UpVel)/Period;
DnAroon = 100*(Period-DownVel)/Period;
AroonOsc = upAroon - dnAroon;
if countif(AroonOSC>0,period1)>=period2 then
var1 = 1 ;
else var1 = 0 ;
Find(var1);
2020-02-23
522
글번호 136249
답변완료
문의 드립니다
수고하십니다.
아래 식의 경우 시스템식과 지표식은 동일한데..
그 밑의 동일한 로직의 종목검색식에서는
시스템식에서 신호가 나온 종목이 검색되지 않는 경우가 왕왕 있는데 그 이유가 뭔가요...?
혹 N일전 종목검색 로직이 이상있는건지요..?
확인 좀 부탁드립니다.
수고하세요
*****시스템식
input : Period(3);
var : Counter(0), Lowval(0), Highval(0), DownVel(0),UpVel(0), DnAroon(0),UpAroon(0) ;
Lowval= Lowest(Low, Period+1);
Highval = Highest(High, Period+1);
For counter= 0 To Period {
If Low[counter] == Lowval Then
DownVel = counter;
If High[counter] == highval Then
UpVel = counter;
}
UpAroon = 100*(Period-UpVel)/Period;
DnAroon = 100*(Period-DownVel)/Period;
if crossup(UpAroon,DnAroon) Then
buy("B10S10");
if CrossDown(UpAroon,DnAroon) Then
sell("S10");
*****종목검색식
Input : Period(3);
input : N일전(3);
var : Counter(0), Lowval(0), Highval(0), DownVel(0),UpVel(0), DnAroon(0),UpAroon(0),AroonOsc(0) ;
Lowval= Lowest(Low, Period+1);
Highval = Highest(High, Period+1);
For counter= 0 To Period {
If Low[counter] == Lowval Then
DownVel = counter;
If High[counter] == highval Then
UpVel = counter;
}
UpAroon = 100*(Period-UpVel)/Period;
DnAroon = 100*(Period-DownVel)/Period;
if crossup(UpAroon[N일전],DnAroon[N일전]) Then
var1 = 1 ;
else var1 = 0 ;
Find(var1);
2020-02-23
473
글번호 136248
답변완료
수식문의드립니다
Crossup(DIPlus(Period), DIMinus(Period))and
if(DIPlus(5)>DIMinus(5), C>=SAR(0.02,0.2),!C>=SAR(0.02,0.2))
and MACD(short,long)>-20 and
A = (highest(high,shortPeriod)+lowest(low,shortPeriod))/2;
B = (highest(high,midPeriod)+lowest(low,midPeriod))/2;
Crossup(c, A) and CrossUp(c, B) and
c>eavg(c,30)
period 10
short 5
long 10
shortperiod 3
midperiod 26
====================
종목검색 할수 있게 부탁드립니다...감사합니다^^
2020-02-23
455
글번호 136247
오이도인 님에 의해서 삭제되었습니다.
2020-02-23
1
글번호 136246