예스스탁
예스스탁 답변
2023-04-10 16:26:10
안녕하세요
예스스탁입니다.
input : Period(88),per(3);
var : AA(false),BB(False),BBB(False);
var : CC(False),CCC(False),DD(False);
var : EE(0),FF(False);
var1 = Ema(C,5);
Var2 = Ema(C,20);
AA = H[1]>highest(c, Period)[2];
BB = C > var1 or crossup(C, Var2);
BBB = BB or BB[1] or BB[2];
CC = V[1] > highest(V, Period)[2];
CCC = CC or CC[1] or CC[2];
DD = O>C and C < (abs(C[1]-O[1])*2/3+min(C[1],O[1]));
EE = max(var1,Var2);
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);
condition1 = AA and BBB and CCC and DD and FF;
if Condition1 == true Then
{
value1 = abs(C[1]-O[1])*2/3 + min(C[1], O[1]);
Value2 = max((abs(C[1]-O[1])*2/3+min(C[1], O[1]))*0.95, EE);
}
if value1 > 0 and C <= value1*(1+per/100) and C >= value1*(1-per/100) Then
Find(1);
즐거운 하루되세요
> anj 님이 쓴 글입니다.
> 제목 : 부탁드려요
> 아래 박스 지표에서 상단에 아주 근접한 종목검색하는 수식 부탁드려요ㅜ
질문이 많아서 죄송해요(__)
input : Period(88);
var : AA(false),BB(False),BBB(False);
var : CC(False),CCC(False),DD(False);
var : EE(0),FF(False);
var1 = Ema(C,5);
Var2 = Ema(C,20);
AA = H[1]>highest(c, Period)[2];
BB = C > var1 or crossup(C, Var2);
BBB = BB or BB[1] or BB[2];
CC = V[1] > highest(V, Period)[2];
CCC = CC or CC[1] or CC[2];
DD = O>C and C < (abs(C[1]-O[1])*2/3+min(C[1],O[1]));
EE = max(var1,Var2);
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);
condition1 = AA and BBB and CCC and DD and FF;
if Condition1 == true Then
{
value1 = abs(C[1]-O[1])*2/3 + min(C[1], O[1]);
Value2 = max((abs(C[1]-O[1])*2/3+min(C[1], O[1]))*0.95, EE);
}
Plot1(value1);
Plot2(value2);