지표조건:
Period 200
수식1
A = c>=o;
B = if(A,V,highest(V,Period));
K = highest(B,Period);
X = valuewhen(1,K==V,L)
수식2
A = c>=o;
B = if(A,V,highest(V,Period));
K = highest(B,Period);
Y = valuewhen(1,K==V,(H+L)/2)
수식3
A = c>=o;
B = if(A,V,highest(V,Period));
K = highest(B,Period);
Z = valuewhen(1, K==V,H)
답변 1
예스스탁
예스스탁 답변
2023-10-13 10:43:36
안녕하세요
예스스탁입니다.
input : Period(200);
var : A(False),B(0),K(0),X(0),Y(0),Z(0);
A = c>=o;
if A == true Then
B = V;
else
B = highest(V,Period);
K = highest(B,Period);
if K == V Then
{
X = L;
Y = (H+L)/2;
X = H;
}
if X > 0 Then
{
Plot1(X);
Plot2(Y);
Plot3(X);
}
즐거운 하루되세요
> 가쿠렌보 님이 쓴 글입니다.
> 제목 : 안녕하세요^^ 지표수식 부탁 드립니다.
> 지표조건:
Period 200
수식1
A = c>=o;
B = if(A,V,highest(V,Period));
K = highest(B,Period);
X = valuewhen(1,K==V,L)
수식2
A = c>=o;
B = if(A,V,highest(V,Period));
K = highest(B,Period);
Y = valuewhen(1,K==V,(H+L)/2)
수식3
A = c>=o;
B = if(A,V,highest(V,Period));
K = highest(B,Period);
Z = valuewhen(1, K==V,H)