예스스탁
예스스탁 답변
2025-03-18 13:00:29
안녕하세요
예스스탁입니다.
1
var : 이동(0),최고1(0),최고2(0);
이동=ma(c,60);
최고1=highest(h,120);
최고2=highest(h,20);
if 최고2[30]==최고1 &&
crossup(c,이동) &&
v[1]*2.5<=v Then
Find(1);
2
올리신 2번식의 조건문에 ( )의 짝이 맞지 않습니다.
괄호치기에 따라 조건내용이 달라져 어느부분에 추가해야 할 지 알수 없습니다.
확인하시고 직접 처리하시기 바랍니다.
var : A(0),B(0),N(0);
A=BollBandUp(17,2);
B=BollBandUp(40,2);
N=EnvelopeUp(20,2);
#( 추가
if ( c>ma(h,5) and Crossup(A,N) )
or ( c>ma(h,5) and B>N and Crossup(A,B) )
or ( A>B and B>N and Crossup(C,A) )
or ( Crossup(C,A) ) and Crossup(C,B) and Crossup(C,N) ) Then
Find(1);
즐거운 하루되세요
> ksks 님이 쓴 글입니다.
> 제목 : 수식요청
> 수식요청에 주신 답들에 심심한 감사를 드립니다.
오늘은 아래의 두 수식변환이 필요하여 올립니다.
1.20캔들
이동=ma(c,60);
최고1=highest(h,120);
최고2=highest(h,20);
최고2(30)==최고1 &&
crossup(c,이동) &&
v(1)*2.5<=v
2.대박이
A=BBandsUp(17,2);
B=BBandsUp(40,2);
M=EnvelopeUp(20,2);
(c>ma(h,5) and Crossup(A,M)) or
(c>ma(h,5) and B>M and Crossup(A,B))
or (A>B and B>M and Crossup(C,A))
or (Crossup(C,A)) and Crossup(C,B) and Crossup(C,M))