예스스탁
예스스탁 답변
2024-01-11 16:09:58
안녕하세요
예스스탁입니다.
1-1
input : 기간1(5),기간2(25),k(1);
var : 이격(0),이격률(0);
이격=ma(c,기간1)-ma(c,기간2);
이격률=이격/C*100;
if CrossUp(이격률,K) Then
plot1(1);
else
plot1(0);
1-2 검색
input : 기간1(5),기간2(25),k(1);
var : 이격(0),이격률(0);
이격=ma(c,기간1)-ma(c,기간2);
이격률=이격/C*100;
if CrossUp(이격률,K) Then
plot1(L,"검색");
1-3 종목검색
input : 기간1(5),기간2(25),k(1);
var : 이격(0),이격률(0);
이격=ma(c,기간1)-ma(c,기간2);
이격률=이격/C*100;
if CrossUp(이격률,K) Then
Find(1);
2-1 종목검색
var : 거대금(0),스팬2(0);
거대금=((h+o+c+l)/4)*V;
스팬2=(highest(H,52)[26-2] + lowest(L,52)[26-2])/2;
if Ema(c,112) < Ema(c,224)
&& Ema(c,224)<Ema(c,448)
&& (ma(V,5)[1] >= 50000) || (ma(거대금,5)[1] >= 500000000)
&& Ema(c,112) < c
&& 스팬2 < c Then
Find(1);
2-2 강조
var : 거대금(0),스팬2(0);
거대금=((h+o+c+l)/4)*V;
스팬2=(highest(H,52)[26-2] + lowest(L,52)[26-2])/2;
if Ema(c,112) < Ema(c,224)
&& Ema(c,224)<Ema(c,448)
&& (ma(V,5)[1] >= 50000) || (ma(거대금,5)[1] >= 500000000)
&& Ema(c,112) < c
&& 스팬2 < c Then
PlotPaintBar(H,L,"강조",Pink);
Else
PlotPaintBar(H,L,"강조",Cyan);
3-2 종목검색
var : A(0),B(0);
A=(highest(high,9)+lowest(low,9)+highest(high,26)+lowest(low,26))/4;
B=(highest(high,52)+lowest(low,52))/2;
if A>B Then
Find(1);
3-3 강조
var : A(0),B(0);
A=(highest(high,9)+lowest(low,9)+highest(high,26)+lowest(low,26))/4;
B=(highest(high,52)+lowest(low,52))/2;
if A>B Then
PlotPaintBar(H,L,"강조",Pink);
Else
PlotPaintBar(H,L,"강조",Cyan);
즐거운 하루되세요
> 신성복 님이 쓴 글입니다.
> 제목 : 부탁드립니다.
> 1번
이격=ma(가격,기간1,종류)-
ma(가격,기간2,종류);
이격률=이격/C*100;
CrossUp(이격률,K) // 이격률이 K%를 넘어가면
가격 종가
기간1 5
기간2 25
종류 단순
k 1
해당수식의
지표와 지표내검색 종목검색 부탁드립니다.
ㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡ
2번
거대금=((h+o+c+l)/4)*V;
스팬2=(highest(H(26-2),52) + lowest(L(26-2),52))/2;
eavg(c,112)<eavg(c,224)
&& eavg(c,224)<eavg(c,448)
&& (avg(V,5,1) >= 50000) || (avg(거대금(1),5) >= 500000000)
&& eavg(c,112) < c
&& 스팬2 < c
ㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡ
3번
A=(highest(high,9)+lowest(low,9)+highest(high,26)+lowest(low,26))/4;
B=(highest(high,52)+lowest(low,52))/2;
A>B
2번과 3번은 처음 화살표가 발생되는 때를 종목검색해주시고
화살표가 떠있는상태는 분홍색 없는상태는 하늘색으로 강조표시 부탁드립니다.