AA=highest(V(1), 10);
// crossup 70% of 10 candel's highest volume
BB=crossup(V,AA*0.7);
CC=highest(C(1), 10);
// crossup 10 candel's highest
DD=crossup(C, CC);
EE=(highest(high(25),9)+lowest(low(25),9)+highest(high(25),26)+lowest(low(25),26))/4;
FF=(highest(high(25),52)+lowest(low(25),52))/2;
BB and DD and EE < C and FF < C
항상 노고에 감사드립니다.
답변 1
예스스탁
예스스탁 답변
2024-07-26 10:56:05
안녕하세요
예스스탁입니다.
var : AA(0),BB(False),CC(0),DD(False),EE(0),FF(0);
AA=highest(V, 10)[1];
// crossup 70% of 10 candel's highest volume
BB=crossup(V,AA*0.7);
CC=highest(C, 10)[1];
// crossup 10 candel's highest
DD=crossup(C, CC);
EE=(highest(high,9)[25]+lowest(low,9)[25]+highest(high,26)[25]+lowest(low,26)[25])/4;
FF=(highest(high,52)[25]+lowest(low,52)[25])/2;
if BB and DD and EE < C and FF < C Then
Find(1);
즐거운 하루되세요
> 스톰82 님이 쓴 글입니다.
> 제목 : 예스랭귀지로 변환 부탁드려요
> AA=highest(V(1), 10);
// crossup 70% of 10 candel's highest volume
BB=crossup(V,AA*0.7);
CC=highest(C(1), 10);
// crossup 10 candel's highest
DD=crossup(C, CC);
EE=(highest(high(25),9)+lowest(low(25),9)+highest(high(25),26)+lowest(low(25),26))/4;
FF=(highest(high(25),52)+lowest(low(25),52))/2;
BB and DD and EE < C and FF < C
항상 노고에 감사드립니다.