커뮤니티
문의드립니다
2017-03-08 17:02:02
96
글번호 107588
mav9 = ma(c, Period9);
mav10 = ma(c, Period10);
mav11 = ma(c, Period11);
mav12 = ma(c, Period12);
mav13 = ma(c, Period13);
mav14 = ma(c, Period14);
mav15 = ma(c, Period15);
mav16 = ma(c, Period16);
mav17 = ma(c, Period17);
mav18 = ma(c, Period18);
SROC = ema(C,Period1)/ema(c,Period1)[Period2]*100;
SROCsig = ema(SROC,signal);
if MarketPosition <= 0 and
(mav11 > mav11[1] and mav10 > mav11 and mav11 > mav12 and mav12 > mav13 and mav13 > mav14 and mav14 > mav15 and mav15 > mav16 and mav16 > mav17 and crossup(mav9,mav10)) or (mav12 < mav13 and mav13 < mav15 and mav15 < mav16 and mav16 < mav17 and crossup(mav11,mav13)) or (mav18 > mav18[1] and CrossUP(SROC,SROCsig)) or (mav11 < mav12 and mav12 < mav13 and mav13 < mav14 and mav14 < mav15 and mav15 < mav16 and mav12 < mav17 and mav17 < mav16 and crossup(mav10,mav11)) Then
buy("b",OnClose,def,1);
if MarketPosition == 1 Then{
if mav11 > mav11[1] and CurrentContracts < 5 Then
buy("bb",OnClose,def,1);
if (mav11 > mav11[1] and mav12 > mav13 and mav13 > mav14 and mav14 > mav15 and mav15 > mav16 and mav16 > mav17 and CrossDown(mav9,mav11)) or (CrossDown(SROC,SROCsig)) or (mav12 < mav13 and mav13 < mav14 and mav14 < mav15 and mav15 < mav16 and mav12 < mav17 and mav17 < mav16 and CrossDown(mav10,mav11)) Then{
ExitLong("bx");
}
ExitLong("bp",atlimit,AvgEntryPrice+PriceScale*익절틱수);
ExitLong("bl",AtStop,AvgEntryPrice-PriceScale*손절틱수);
}
if MarketPosition >= 0 and
(mav11 < mav11[1] and mav10 < mav11 and mav11 < mav12 and mav12 < mav13 and mav13 < mav14 and mav14 < mav15 and mav15 < mav16 and mav16 < mav17 and CrossDown(mav9,mav10)) or (mav12 > mav13 and mav13 > mav15 and mav15 > mav16 and mav16 > mav17 and CrossDown(mav11,mav13)) or (mav18 < mav18[1] and CrossDown(SROC,SROCsig)) or (mav11 > mav12 and mav12 > mav13 and mav13 > mav14 and mav14 > mav15 and mav15 > mav16 and mav12 > mav17 and mav17 > mav16 and CrossDown(mav10,mav11)) Then
sell("s",OnClose,def,1);
if MarketPosition == -1 then{
if mav11 < mav11[1] and CurrentContracts < 5 Then
sell("ss",OnClose,def,1);
if (mav11 < mav11[1] and mav12 < mav13 and mav13 < mav14 and mav14 < mav15 and mav15 < mav16 and mav16 < mav17 and crossup(mav9,mav11)) or (crossup(SROC,SROCsig)) or (mav12 > mav13 and mav13 > mav14 and mav14 > mav15 and mav15 > mav16 and mav12 > mav17 and mav17 > mav16 and crossup(mav10,mav11)) Then
ExitShort("sx");
ExitShort("sp",atlimit,AvgEntryPrice-PriceScale*익절틱수);
ExitShort("sl",AtStop,AvgEntryPrice+PriceScale*손절틱수);
}
2번 수식
mav9 = ma(c, Period9);
mav10 = ma(c, Period10);
mav11 = ma(c, Period11);
mav12 = ma(c, Period12);
mav13 = ma(c, Period13);
mav14 = ma(c, Period14);
mav15 = ma(c, Period15);
mav16 = ma(c, Period16);
mav17 = ma(c, Period17);
mav18 = ma(c, Period18);
if (mav12 < mav13 and mav13 < mav15 and mav15 < mav16 and mav16 < mav17 and crossup(mav11,mav13)) or (mav11 < mav12 and mav12 < mav13 and mav13 < mav14 and mav14 < mav15 and mav15 < mav16 and mav12 < mav17 and mav17 < mav16 and crossup(mav10,mav11)) Then
T = 1;
if (mav12 > mav13 and mav13 > mav15 and mav15 > mav16 and mav16 > mav17 and CrossDown(mav11,mav13)) or (mav11 > mav12 and mav12 > mav13 and mav13 > mav14 and mav14 > mav15 and mav15 > mav16 and mav12 > mav17 and mav17 > mav16 and CrossDown(mav10,mav11)) Then
T = -1;
if T == 1 then{
if crossuP(mav10,mav11) Then
buy();
if CrossDown(mav9,mav10) Then
ExitLong();
}
if T == -1 then{
if CrossDown(mav10,mav11) Then
sell();
if Crossup(mav9,mav10) Then
ExitShort();
}
1번질문
1번 수식을 운영하다보면 5개가 아닌 6개계약으로도 진입을 하는 것 같습니다
1번 수식이 6계약 이상 진입은 에러 인가요(대부분은 5계약으로 진입하다가 가끔 6계약이상이 진입합니다)
2번 질문
1번 수식 기준으로 2번 수식을 함계 운영하고자 합니다
즉 1번 수식에 2번 수식도 시스템수식이 동작할 수 있도록 넣어 주세요
감사합니다
답변 2
예스스탁 예스스탁 답변
2017-03-09 11:36:55
안녕하세요
예스스탁입니다.
1
수식상 최대 5계약까지만 진입이 누적되게 되어 있습니다.
수식의 추가진입식에 보시면 CurrentContracts < 5라는 조건이 있습니다.
해당 내용으로 적용해 봇면 진입이 5계약을 넘어서 누적되는 경우는 없습니다.
6계약이라는 내용은 아마 실제 주문시 청산과 진입이 스위칭 되는 상황인거 같습니다.
매수가 5계약 진입된 상태에서 매도진입조건이 만족하면
매수를 청산하기 위해서 매도5계약 매도로 진입하기 위해 매도1계약해서
총 6계약이 주문이 나가게 됩니다.
이는 스위칭이 될때이므로 6계약이 정상입니다.
2
문의하신 내용은 식을 어떻게 합쳐드려야 할지 모르겠습니다.
즐거운 하루되세요
> 남산 님이 쓴 글입니다.
> 제목 : 문의드립니다
>
mav9 = ma(c, Period9);
mav10 = ma(c, Period10);
mav11 = ma(c, Period11);
mav12 = ma(c, Period12);
mav13 = ma(c, Period13);
mav14 = ma(c, Period14);
mav15 = ma(c, Period15);
mav16 = ma(c, Period16);
mav17 = ma(c, Period17);
mav18 = ma(c, Period18);
SROC = ema(C,Period1)/ema(c,Period1)[Period2]*100;
SROCsig = ema(SROC,signal);
if MarketPosition <= 0 and
(mav11 > mav11[1] and mav10 > mav11 and mav11 > mav12 and mav12 > mav13 and mav13 > mav14 and mav14 > mav15 and mav15 > mav16 and mav16 > mav17 and crossup(mav9,mav10)) or (mav12 < mav13 and mav13 < mav15 and mav15 < mav16 and mav16 < mav17 and crossup(mav11,mav13)) or (mav18 > mav18[1] and CrossUP(SROC,SROCsig)) or (mav11 < mav12 and mav12 < mav13 and mav13 < mav14 and mav14 < mav15 and mav15 < mav16 and mav12 < mav17 and mav17 < mav16 and crossup(mav10,mav11)) Then
buy("b",OnClose,def,1);
if MarketPosition == 1 Then{
if mav11 > mav11[1] and CurrentContracts < 5 Then
buy("bb",OnClose,def,1);
if (mav11 > mav11[1] and mav12 > mav13 and mav13 > mav14 and mav14 > mav15 and mav15 > mav16 and mav16 > mav17 and CrossDown(mav9,mav11)) or (CrossDown(SROC,SROCsig)) or (mav12 < mav13 and mav13 < mav14 and mav14 < mav15 and mav15 < mav16 and mav12 < mav17 and mav17 < mav16 and CrossDown(mav10,mav11)) Then{
ExitLong("bx");
}
ExitLong("bp",atlimit,AvgEntryPrice+PriceScale*익절틱수);
ExitLong("bl",AtStop,AvgEntryPrice-PriceScale*손절틱수);
}
if MarketPosition >= 0 and
(mav11 < mav11[1] and mav10 < mav11 and mav11 < mav12 and mav12 < mav13 and mav13 < mav14 and mav14 < mav15 and mav15 < mav16 and mav16 < mav17 and CrossDown(mav9,mav10)) or (mav12 > mav13 and mav13 > mav15 and mav15 > mav16 and mav16 > mav17 and CrossDown(mav11,mav13)) or (mav18 < mav18[1] and CrossDown(SROC,SROCsig)) or (mav11 > mav12 and mav12 > mav13 and mav13 > mav14 and mav14 > mav15 and mav15 > mav16 and mav12 > mav17 and mav17 > mav16 and CrossDown(mav10,mav11)) Then
sell("s",OnClose,def,1);
if MarketPosition == -1 then{
if mav11 < mav11[1] and CurrentContracts < 5 Then
sell("ss",OnClose,def,1);
if (mav11 < mav11[1] and mav12 < mav13 and mav13 < mav14 and mav14 < mav15 and mav15 < mav16 and mav16 < mav17 and crossup(mav9,mav11)) or (crossup(SROC,SROCsig)) or (mav12 > mav13 and mav13 > mav14 and mav14 > mav15 and mav15 > mav16 and mav12 > mav17 and mav17 > mav16 and crossup(mav10,mav11)) Then
ExitShort("sx");
ExitShort("sp",atlimit,AvgEntryPrice-PriceScale*익절틱수);
ExitShort("sl",AtStop,AvgEntryPrice+PriceScale*손절틱수);
}
2번 수식
mav9 = ma(c, Period9);
mav10 = ma(c, Period10);
mav11 = ma(c, Period11);
mav12 = ma(c, Period12);
mav13 = ma(c, Period13);
mav14 = ma(c, Period14);
mav15 = ma(c, Period15);
mav16 = ma(c, Period16);
mav17 = ma(c, Period17);
mav18 = ma(c, Period18);
if (mav12 < mav13 and mav13 < mav15 and mav15 < mav16 and mav16 < mav17 and crossup(mav11,mav13)) or (mav11 < mav12 and mav12 < mav13 and mav13 < mav14 and mav14 < mav15 and mav15 < mav16 and mav12 < mav17 and mav17 < mav16 and crossup(mav10,mav11)) Then
T = 1;
if (mav12 > mav13 and mav13 > mav15 and mav15 > mav16 and mav16 > mav17 and CrossDown(mav11,mav13)) or (mav11 > mav12 and mav12 > mav13 and mav13 > mav14 and mav14 > mav15 and mav15 > mav16 and mav12 > mav17 and mav17 > mav16 and CrossDown(mav10,mav11)) Then
T = -1;
if T == 1 then{
if crossuP(mav10,mav11) Then
buy();
if CrossDown(mav9,mav10) Then
ExitLong();
}
if T == -1 then{
if CrossDown(mav10,mav11) Then
sell();
if Crossup(mav9,mav10) Then
ExitShort();
}
1번질문
1번 수식을 운영하다보면 5개가 아닌 6개계약으로도 진입을 하는 것 같습니다
1번 수식이 6계약 이상 진입은 에러 인가요(대부분은 5계약으로 진입하다가 가끔 6계약이상이 진입합니다)
2번 질문
1번 수식 기준으로 2번 수식을 함계 운영하고자 합니다
즉 1번 수식에 2번 수식도 시스템수식이 동작할 수 있도록 넣어 주세요
감사합니다
남산
2017-03-09 15:21:40
문의합니다
아래 수식은 옛날에 문의한 수식입니다
문의 했던 내용
이평선 상승크로스(20,80) 발생 이후
이평선 상승크로스(10,20) 매수진입하고 하락크로스(5,10)에 청산 하고자 합니다
반대로
이평선 하락크로스(20,80) 발생 이후
이평선 하락크로스(10,20) 매도진입하고 상승크로스(5,10)에 청산 하고자 합니다
문제는 이평선 상승크로스(20,80)를 어떻게 수식으로 표현하는지가 고민입니다
이평선 상승크로스(20,80)는 국선에서 매일 발생하는지 않으나 1일에 한번(가끔 2번상승,하락크로스) 또는 2일에 한번 또는 3일에 한번 발생하고 있습니다
---- 현재기준 가장 최근에 발생한 이평선 상승크로스(20,80) 발생하면 이평선 상승크로스(20,80)로 매수진입 만 하고 이후 이평선 하락크로스(20,80)가 발생하면 매도진입 만으로 이런 식입니다 -------------
예스스탁 답변내용
var : T(0);
var1 = ma(C,10);
var2 = ma(C,20);
var3 = ma(C,80);
if crossup(var2,var3) Then
T = 1;
if CrossDown(var2,var3) Then
T = -1;
if T == 1 then{
if crossuP(var1,var2) Then
buy();
if CrossDown(var1,var2) Then
ExitLong();
}
if T == -1 then{
if CrossDown(var1,var2) Then
sell();
if Crossup(var1,var2) Then
ExitShort();
}
답변내용을 응용하여 아래와 같이 수식을 만들었습니다
예스스탁 답변내용을 응용(수식2)하여 수식 작성하였습니다
예스스탁 답변내용을 응용(수식2)
var : T(0);
mav9 = ma(c, Period9);
mav10 = ma(c, Period10);
mav11 = ma(c, Period11);
mav12 = ma(c, Period12);
mav13 = ma(c, Period13);
mav14 = ma(c, Period14);
mav15 = ma(c, Period15);
mav16 = ma(c, Period16);
mav17 = ma(c, Period17);
mav18 = ma(c, Period18);
if (mav12 < mav13 and mav13 < mav15 and mav15 < mav16 and mav16 < mav17 and crossup(mav11,mav13)) or (mav11 < mav12 and mav12 < mav13 and mav13 < mav14 and mav14 < mav15 and mav15 < mav16 and mav12 < mav17 and mav17 < mav16 and crossup(mav10,mav11)) Then
T = 1;
if (mav12 > mav13 and mav13 > mav15 and mav15 > mav16 and mav16 > mav17 and CrossDown(mav11,mav13)) or (mav11 > mav12 and mav12 > mav13 and mav13 > mav14 and mav14 > mav15 and mav15 > mav16 and mav12 > mav17 and mav17 > mav16 and CrossDown(mav10,mav11)) Then
T = -1;
if T == 1 then{
if crossuP(mav10,mav11) Then
buy();
if CrossDown(mav9,mav10) Then
ExitLong();
}
if T == -1 then{
if CrossDown(mav10,mav11) Then
sell();
if Crossup(mav9,mav10) Then
ExitShort();
}
수식 1
mav9 = ma(c, Period9);
mav10 = ma(c, Period10);
mav11 = ma(c, Period11);
mav12 = ma(c, Period12);
mav13 = ma(c, Period13);
mav14 = ma(c, Period14);
mav15 = ma(c, Period15);
mav16 = ma(c, Period16);
mav17 = ma(c, Period17);
mav18 = ma(c, Period18);
SROC = ema(C,Period1)/ema(c,Period1)[Period2]*100;
SROCsig = ema(SROC,signal);
if MarketPosition <= 0 and
(mav11 > mav11[1] and mav10 > mav11 and mav11 > mav12 and mav12 > mav13 and mav13 > mav14 and mav14 > mav15 and mav15 > mav16 and mav16 > mav17 and crossup(mav9,mav10)) or (mav12 < mav13 and mav13 < mav15 and mav15 < mav16 and mav16 < mav17 and crossup(mav11,mav13)) or (mav18 > mav18[1] and CrossUP(SROC,SROCsig)) or (mav11 < mav12 and mav12 < mav13 and mav13 < mav14 and mav14 < mav15 and mav15 < mav16 and mav12 < mav17 and mav17 < mav16 and crossup(mav10,mav11)) Then
buy("b",OnClose,def,1);
if MarketPosition == 1 Then{
if mav11 > mav11[1] and CurrentContracts < 5 Then
buy("bb",OnClose,def,1);
if (mav11 > mav11[1] and mav12 > mav13 and mav13 > mav14 and mav14 > mav15 and mav15 > mav16 and mav16 > mav17 and CrossDown(mav9,mav11)) or (CrossDown(SROC,SROCsig)) or (mav12 < mav13 and mav13 < mav14 and mav14 < mav15 and mav15 < mav16 and mav12 < mav17 and mav17 < mav16 and CrossDown(mav10,mav11)) Then{
ExitLong("bx");
}
ExitLong("bp",atlimit,AvgEntryPrice+PriceScale*익절틱수);
ExitLong("bl",AtStop,AvgEntryPrice-PriceScale*손절틱수);
}
if MarketPosition >= 0 and
(mav11 < mav11[1] and mav10 < mav11 and mav11 < mav12 and mav12 < mav13 and mav13 < mav14 and mav14 < mav15 and mav15 < mav16 and mav16 < mav17 and CrossDown(mav9,mav10)) or (mav12 > mav13 and mav13 > mav15 and mav15 > mav16 and mav16 > mav17 and CrossDown(mav11,mav13)) or (mav18 < mav18[1] and CrossDown(SROC,SROCsig)) or (mav11 > mav12 and mav12 > mav13 and mav13 > mav14 and mav14 > mav15 and mav15 > mav16 and mav12 > mav17 and mav17 > mav16 and CrossDown(mav10,mav11)) Then
sell("s",OnClose,def,1);
if MarketPosition == -1 then{
if mav11 < mav11[1] and CurrentContracts < 5 Then
sell("ss",OnClose,def,1);
if (mav11 < mav11[1] and mav12 < mav13 and mav13 < mav14 and mav14 < mav15 and mav15 < mav16 and mav16 < mav17 and crossup(mav9,mav11)) or (crossup(SROC,SROCsig)) or (mav12 > mav13 and mav13 > mav14 and mav14 > mav15 and mav15 > mav16 and mav12 > mav17 and mav17 > mav16 and crossup(mav10,mav11)) Then
ExitShort("sx");
ExitShort("sp",atlimit,AvgEntryPrice-PriceScale*익절틱수);
ExitShort("sl",AtStop,AvgEntryPrice+PriceScale*손절틱수);
}
질문
1번 수식 기준으로 예스스탁 답변내용을 응용(수식2) 수식을 함께 운영하고자 합니다
즉 1번 수식에 2번 수식도 시스템수식이 동작할 수 있도록 넣은 방법을 모르겠습니다
결과 1번 수식에 2번 수식이 함께 동작할 수 있도록 합쳐주세요 1개의 수식으로 부탁합니다
1번식에 어떻게 묶은 것을 모르겠습니다
감사합니다
> 예스스탁 님이 쓴 글입니다.
> 제목 : Re : 문의드립니다
> 안녕하세요
예스스탁입니다.
1
수식상 최대 5계약까지만 진입이 누적되게 되어 있습니다.
수식의 추가진입식에 보시면 CurrentContracts < 5라는 조건이 있습니다.
해당 내용으로 적용해 봇면 진입이 5계약을 넘어서 누적되는 경우는 없습니다.
6계약이라는 내용은 아마 실제 주문시 청산과 진입이 스위칭 되는 상황인거 같습니다.
매수가 5계약 진입된 상태에서 매도진입조건이 만족하면
매수를 청산하기 위해서 매도5계약 매도로 진입하기 위해 매도1계약해서
총 6계약이 주문이 나가게 됩니다.
이는 스위칭이 될때이므로 6계약이 정상입니다.
2
문의하신 내용은 식을 어떻게 합쳐드려야 할지 모르겠습니다.
즐거운 하루되세요
> 남산 님이 쓴 글입니다.
> 제목 : 문의드립니다
>
mav9 = ma(c, Period9);
mav10 = ma(c, Period10);
mav11 = ma(c, Period11);
mav12 = ma(c, Period12);
mav13 = ma(c, Period13);
mav14 = ma(c, Period14);
mav15 = ma(c, Period15);
mav16 = ma(c, Period16);
mav17 = ma(c, Period17);
mav18 = ma(c, Period18);
SROC = ema(C,Period1)/ema(c,Period1)[Period2]*100;
SROCsig = ema(SROC,signal);
if MarketPosition <= 0 and
(mav11 > mav11[1] and mav10 > mav11 and mav11 > mav12 and mav12 > mav13 and mav13 > mav14 and mav14 > mav15 and mav15 > mav16 and mav16 > mav17 and crossup(mav9,mav10)) or (mav12 < mav13 and mav13 < mav15 and mav15 < mav16 and mav16 < mav17 and crossup(mav11,mav13)) or (mav18 > mav18[1] and CrossUP(SROC,SROCsig)) or (mav11 < mav12 and mav12 < mav13 and mav13 < mav14 and mav14 < mav15 and mav15 < mav16 and mav12 < mav17 and mav17 < mav16 and crossup(mav10,mav11)) Then
buy("b",OnClose,def,1);
if MarketPosition == 1 Then{
if mav11 > mav11[1] and CurrentContracts < 5 Then
buy("bb",OnClose,def,1);
if (mav11 > mav11[1] and mav12 > mav13 and mav13 > mav14 and mav14 > mav15 and mav15 > mav16 and mav16 > mav17 and CrossDown(mav9,mav11)) or (CrossDown(SROC,SROCsig)) or (mav12 < mav13 and mav13 < mav14 and mav14 < mav15 and mav15 < mav16 and mav12 < mav17 and mav17 < mav16 and CrossDown(mav10,mav11)) Then{
ExitLong("bx");
}
ExitLong("bp",atlimit,AvgEntryPrice+PriceScale*익절틱수);
ExitLong("bl",AtStop,AvgEntryPrice-PriceScale*손절틱수);
}
if MarketPosition >= 0 and
(mav11 < mav11[1] and mav10 < mav11 and mav11 < mav12 and mav12 < mav13 and mav13 < mav14 and mav14 < mav15 and mav15 < mav16 and mav16 < mav17 and CrossDown(mav9,mav10)) or (mav12 > mav13 and mav13 > mav15 and mav15 > mav16 and mav16 > mav17 and CrossDown(mav11,mav13)) or (mav18 < mav18[1] and CrossDown(SROC,SROCsig)) or (mav11 > mav12 and mav12 > mav13 and mav13 > mav14 and mav14 > mav15 and mav15 > mav16 and mav12 > mav17 and mav17 > mav16 and CrossDown(mav10,mav11)) Then
sell("s",OnClose,def,1);
if MarketPosition == -1 then{
if mav11 < mav11[1] and CurrentContracts < 5 Then
sell("ss",OnClose,def,1);
if (mav11 < mav11[1] and mav12 < mav13 and mav13 < mav14 and mav14 < mav15 and mav15 < mav16 and mav16 < mav17 and crossup(mav9,mav11)) or (crossup(SROC,SROCsig)) or (mav12 > mav13 and mav13 > mav14 and mav14 > mav15 and mav15 > mav16 and mav12 > mav17 and mav17 > mav16 and crossup(mav10,mav11)) Then
ExitShort("sx");
ExitShort("sp",atlimit,AvgEntryPrice-PriceScale*익절틱수);
ExitShort("sl",AtStop,AvgEntryPrice+PriceScale*손절틱수);
}
2번 수식
mav9 = ma(c, Period9);
mav10 = ma(c, Period10);
mav11 = ma(c, Period11);
mav12 = ma(c, Period12);
mav13 = ma(c, Period13);
mav14 = ma(c, Period14);
mav15 = ma(c, Period15);
mav16 = ma(c, Period16);
mav17 = ma(c, Period17);
mav18 = ma(c, Period18);
if (mav12 < mav13 and mav13 < mav15 and mav15 < mav16 and mav16 < mav17 and crossup(mav11,mav13)) or (mav11 < mav12 and mav12 < mav13 and mav13 < mav14 and mav14 < mav15 and mav15 < mav16 and mav12 < mav17 and mav17 < mav16 and crossup(mav10,mav11)) Then
T = 1;
if (mav12 > mav13 and mav13 > mav15 and mav15 > mav16 and mav16 > mav17 and CrossDown(mav11,mav13)) or (mav11 > mav12 and mav12 > mav13 and mav13 > mav14 and mav14 > mav15 and mav15 > mav16 and mav12 > mav17 and mav17 > mav16 and CrossDown(mav10,mav11)) Then
T = -1;
if T == 1 then{
if crossuP(mav10,mav11) Then
buy();
if CrossDown(mav9,mav10) Then
ExitLong();
}
if T == -1 then{
if CrossDown(mav10,mav11) Then
sell();
if Crossup(mav9,mav10) Then
ExitShort();
}
1번질문
1번 수식을 운영하다보면 5개가 아닌 6개계약으로도 진입을 하는 것 같습니다
1번 수식이 6계약 이상 진입은 에러 인가요(대부분은 5계약으로 진입하다가 가끔 6계약이상이 진입합니다)
2번 질문
1번 수식 기준으로 2번 수식을 함계 운영하고자 합니다
즉 1번 수식에 2번 수식도 시스템수식이 동작할 수 있도록 넣어 주세요
감사합니다
다음글
이전글