커뮤니티

문의드립니다.

프로필 이미지
사령검사
2023-08-12 14:05:45
1124
글번호 171439
답변완료
안녕하세요 아래 두 신호검색식을 이용하여 두 조건 모두 만족하는 종목 검색식으로 변경 가능할까요?? 부탁 드리겠습니다. AA=date/100%100; 대금=(H+O+L+C)/4*V/100000000; A=IF(C>O,대금,0); B=SUM(A); D=ValueWhen(1,AA(1)!=AA,B(1)); 양대금=B-D; A1=IF(C<O,대금,0); B1=SUM(A1); D1=ValueWhen(1,AA(1)!=AA,B1(1)); 음대금=B1-D1; CROSSUP(양대금,음대금) ============================== A=(highest(high,shortPeriod)+lowest(low,shortPeriod))/2; A1=(highest(high,midPeriod)+lowest(low,midPeriod))/2; A2=(highest(high,longPeriod)+lowest(low,longPeriod))/2; A3=wavg((((C-C(Period))/C(Period))*100) + (((C-C(Period1))/C(Period1))*100),Period2); A5=MAX(A(1),A1(1),A2(1)); A6=MIN(A(1),A1(1),A2(1)); A6*1.02>=A5 && A>A(1) && A1>A1(1) && A2>A2(1) && A3(1)<A3 && C>=A5 longperiod 52 shortperiod 9 midperiod 26 period 11
검색
답변 1
프로필 이미지

예스스탁 예스스탁 답변

2023-08-16 09:21:47

안녕하세요 예스스탁입니다. var : AA(0),대금(0),A(0),B(0),D(0),양대금(0),A1(0),B1(0),D1(0),음대금(0); AA = date/100%100; 대금 = (H+O+L+C)/4*V/100000000; A=IfF(C>O,대금,0); B=Accum(A); A1=IfF(C<O,대금,0); B1=Accum(A1); if AA[1] != AA Then { D = B[1]; D1 = B1[1]; } 양대금=B-D; 음대금=B1-D1; input : shortperiod(0),midPeriod(26),LongPeriod(52),Period(11),period1(11),period2(11); var : sa(0),sa1(0),sa2(0),sa3(0),sa5(0),sa6(0); sA=(highest(high,shortPeriod)+lowest(low,shortPeriod))/2; sA1=(highest(high,midPeriod)+lowest(low,midPeriod))/2; sA2=(highest(high,longPeriod)+lowest(low,longPeriod))/2; sA3=WMa((((C-C[Period])/C[Period])*100) + (((C-C[Period1])/C[Period1])*100),Period2); sA5=MAX(sA[1],sA1[1],sA2[1]); sA6=MIN(sA[1],sA1[1],sA2[1]); if CROSSUP(양대금,음대금) and (sA6*1.02>=sA5 && sA>sA[1] && sA1>sA1[1] && sA2>sA2[1] && sA3[1]<sA3 && C>=sA5) Then Find(1); 즐거운 하루되세요 > 사령검사 님이 쓴 글입니다. > 제목 : 문의드립니다. > 안녕하세요 아래 두 신호검색식을 이용하여 두 조건 모두 만족하는 종목 검색식으로 변경 가능할까요?? 부탁 드리겠습니다. AA=date/100%100; 대금=(H+O+L+C)/4*V/100000000; A=IF(C>O,대금,0); B=SUM(A); D=ValueWhen(1,AA(1)!=AA,B(1)); 양대금=B-D; A1=IF(C<O,대금,0); B1=SUM(A1); D1=ValueWhen(1,AA(1)!=AA,B1(1)); 음대금=B1-D1; CROSSUP(양대금,음대금) ============================== A=(highest(high,shortPeriod)+lowest(low,shortPeriod))/2; A1=(highest(high,midPeriod)+lowest(low,midPeriod))/2; A2=(highest(high,longPeriod)+lowest(low,longPeriod))/2; A3=wavg((((C-C(Period))/C(Period))*100) + (((C-C(Period1))/C(Period1))*100),Period2); A5=MAX(A(1),A1(1),A2(1)); A6=MIN(A(1),A1(1),A2(1)); A6*1.02>=A5 && A>A(1) && A1>A1(1) && A2>A2(1) && A3(1)<A3 && C>=A5 longperiod 52 shortperiod 9 midperiod 26 period 11