커뮤니티
종목검색문의드립니다
2026-01-20 08:28:45
247
글번호 229913
1번
AA=Crossup(CCI(Period*5),Level);
CC=CountSince(crossdown(CCI(Period*5), Level), CCI(Period*5)<Level);
AA && CC>span
period 48
level -100
span 20
2번
AA=crossup(C, eavg(C, 5));
BB=crossup(C, eavg(C, 20));
CC=(97<=disparity(5)) and (disparity(5)<=103);
DD=(97<=disparity(20)) and (disparity(20)<=103);
EE=(97<=disparity(60)) and (disparity(60)<=103);
FF=(C>(highest(high(25),9)+lowest(low(25),9)+highest(high(25),26)+lowest(low(25),26))/4 ) and (C>(highest(high(25),52)+lowest(low(25),52))/2);
VV=V>highest(V(1), period);
(AA or BB) and CC and DD and EE and FF and VV
period 20
답변 1
예스스탁 예스스탁 답변
2026-01-20 14:19:30
안녕하세요
예스스탁입니다.
1
input : Period(48),level(-100),span(20);
var : AA(False),CC(Nan);
var1 = CCI(Period*5);
AA=Crossup(var1,Level);
if CrossDown(var1,Level) Then
CC = 0;
if var1 < Level Then
CC = CC+1;
if AA && CC>span Then
Find(1);
2
input : Period(20);
var : AA(False),BB(False),CC(False),DD(False);
var : EE(False),FF(False),VV(False);
var1 = Ema(c,5);
var2 = Ema(c,20);
value1 = Disparity(5);
value2 = Disparity(20);
value3 = Disparity(60);
AA=crossup(C, var1);
BB=crossup(C, var2);
CC=(97<=value1) and (Value1<=103);
DD=(97<=Value2) and (Value2<=103);
EE=(97<=Value3) and (Value3<=103);
FF=(C>(highest(high,9)[25]+lowest(low,9)[25]+highest(high,26)[25]+lowest(low,26)[25])/4 ) and
(C>(highest(high,52)[25]+lowest(low,52)[25])/2);
VV=V>highest(V, period)[1];
if (AA or BB) and CC and DD and EE and FF and VV Then
Find(1);
즐거운 하루되세요
이전글