안녕하세요?
아래의 수식을 예스검색식으로 부탁드립니다..
감사합니다...
EE=highest(v, 125);
FF=highest(v, 250);
GG=eavg(v, 60);
AA=eavg(C, 120);
BB=eavg(C, 180);
CC=eavg(C, 250);
reset_condition=if((AA<=BB and BB<=CC),1, 0);
count=Countsince(reset_condition, (v>=EE or v>=FF or v >=GG*mul) );
AAA=if(count>=n, 1, 0);
if(AAA && !AAA(1), count, 0)
mul 5
n 1
답변 1
예스스탁
예스스탁 답변
2025-02-05 11:20:45
안녕하세요
예스스탁입니다.
input : mul(5),n(1);
var : EE(0),FF(0),GG(0),AA(0),BB(0),CC(0);
var : reset_condition(False),count(-1),AAA(False);
EE=highest(v, 125);
FF=highest(v, 250);
GG=Ema(v, 60);
AA=Ema(C, 120);
BB=Ema(C, 180);
CC=Ema(C, 250);
reset_condition= AA<=BB and BB<=CC;
if reset_condition == true Then
count = 0;
if v>=EE or v>=FF or v >=GG*mul Then
count = count+1;
AAA = count>=n;
if AAA == true && AAA[1] == False Then
Find(1);
즐거운 하루되세요
> 오말리 님이 쓴 글입니다.
> 제목 : 종목검색 부탁드립니다.
> 안녕하세요?
아래의 수식을 예스검색식으로 부탁드립니다..
감사합니다...
EE=highest(v, 125);
FF=highest(v, 250);
GG=eavg(v, 60);
AA=eavg(C, 120);
BB=eavg(C, 180);
CC=eavg(C, 250);
reset_condition=if((AA<=BB and BB<=CC),1, 0);
count=Countsince(reset_condition, (v>=EE or v>=FF or v >=GG*mul) );
AAA=if(count>=n, 1, 0);
if(AAA && !AAA(1), count, 0)
mul 5
n 1