아래 수식은 각기 다른 수식의 if ~ 부분입니다.
각각을 1봉전에 발생하는 것으로 변경해보았는데 잘 안되어 요청드립니다.
------------------------------------------------------------------------------
if CROSSUP(haH,A) && cumulative_volume_delta>0 && ema_volume_strength_wave>ema_volume_strength_wave[1] && haC>haO && Var3 > 60 &&
CountIf(Var3 < 59.9,5)[1] == 5 Then
Find(1);
-------------------------------------------------------------------------------
if haC[2] < HaO[2] and HaC[1] > HaO[1] and HaC > HaO and
((haRSI[2] < 30 and haRSI > 30) or haRSI>60) and
haL[2] < B[2] then
Find(1);
답변 4
예스스탁
예스스탁 답변
2025-09-26 13:20:28.0
안녕하세요
예스스탁입니다.
기존조건은 변수처리하시고 해당 변수를 [1]로 해서 조건을 지정하시면 됩니다.
1
Condition1 = CROSSUP(haH,A) && cumulative_volume_delta>0 &&
ema_volume_strength_wave>ema_volume_strength_wave[1] && haC>haO &&
Var3 > 60 && CountIf(Var3 < 59.9,5)[1] == 5
if Condition1[1] == true Then
Find(1);
2
Condition2 = haC[2] < HaO[2] and HaC[1] > HaO[1] and HaC > HaO and
((haRSI[2] < 30 and haRSI > 30) or haRSI>60) and
haL[2] < B[2];
if Condition2[1] == true then
Find(1);
즐거운 하루되세요
> ksks 님이 쓴 글입니다.
> 제목 : 수정요청
> 아래 수식은 각기 다른 수식의 if ~ 부분입니다.
각각을 1봉전에 발생하는 것으로 변경해보았는데 잘 안되어 요청드립니다.
------------------------------------------------------------------------------
if CROSSUP(haH,A) && cumulative_volume_delta>0 && ema_volume_strength_wave>ema_volume_strength_wave[1] && haC>haO && Var3 > 60 &&
CountIf(Var3 < 59.9,5)[1] == 5 Then
Find(1);
-------------------------------------------------------------------------------
if haC[2] < HaO[2] and HaC[1] > HaO[1] and HaC > HaO and
((haRSI[2] < 30 and haRSI > 30) or haRSI>60) and
haL[2] < B[2] then
Find(1);
ksks
2025-09-26 13:26:48.0
ksks 님에 의해 삭제된 답변입니다.
ksks
2025-09-26 13:26:51.0
ksks 님에 의해 삭제된 답변입니다.
ksks
2025-09-26 13:31:27.0
ksks 님에 의해 삭제된 답변입니다.