예스스탁
예스스탁 답변
2025-02-27 11:40:16
안녕하세요
예스스탁입니다.
input : R1(234),G1(234),B1(234);
input : R2(234),G2(234),B2(234);
var : hh(0),ll(0);
if Bdate != Bdate[1] Then
{
var1 = 0;
Var2 = Upvol-DownVol;
}
var1 = var1 + (Upvol-DownVol);
if CurrentDate == sDate Then
Plot1(var1,"당일실매수거래량",iff(var1 > 0,RGB(0,0,0),RGB(0,0,0)));
if CurrentDate == sDate Then
plot2(Var2,"첫봉종가");
if Bdate != Bdate[1] Then
{
hh = var1;
ll = var1;
}
Else
{
if var1 > hh Then
hh = var1;
if var1 < ll Then
ll = var1;
}
if CurrentDate == sDate Then
{
Plot3(hh,"최고");
plot4(ll,"최저");
plot5(ll+(hh-ll)*0.25,"25.0%");
plot6(ll+(hh-ll)*0.382,"38.2%");
plot7(ll+(hh-ll)*0.500,"50.0%");
plot8(ll+(hh-ll)*0.618,"61.8%");
plot9(ll+(hh-ll)*0.75,"75.0%");
Plot10(-var1,"reverse",iff(-var1 > 0,RGB(0,0,0),RGB(0,0,0)));
PlotBaseLine1(0);
}
즐거운 하루되세요
> 포보스 님이 쓴 글입니다.
> 제목 : 도움을 요청합니다.
> 안녕하세요
아래 지표에서 첫봉종가를 기준으로 한
Plot1의 지표 그래프를 동시에
Plot10 을 추가하여 Revers로 그러나가는 지표를 추가해 주시면 정말 고맙겠습니다
감사합니다.
=====================
input : R1(234),G1(234),B1(234);
input : R2(234),G2(234),B2(234);
var : hh(0),ll(0);
if Bdate != Bdate[1] Then
{
var1 = 0;
Var2 = Upvol-DownVol;
}
var1 = var1 + (Upvol-DownVol);
if CurrentDate == sDate Then
Plot1(var1,"당일실매수거래량",iff(var1 > 0,RGB(0,0,0),RGB(0,0,0)));
if CurrentDate == sDate Then
plot2(Var2,"첫봉종가");
if Bdate != Bdate[1] Then
{
hh = var1;
ll = var1;
}
Else
{
if var1 > hh Then
hh = var1;
if var1 < ll Then
ll = var1;
}
if CurrentDate == sDate Then
{
Plot3(hh,"최고");
plot4(ll,"최저");
plot5(ll+(hh-ll)*0.25,"25.0%");
plot6(ll+(hh-ll)*0.382,"38.2%");
plot7(ll+(hh-ll)*0.500,"50.0%");
plot8(ll+(hh-ll)*0.618,"61.8%");
plot9(ll+(hh-ll)*0.75,"75.0%");
PlotBaseLine1(0);
}