1봉전 대비 거래량 200%인 지점을 마크하고싶습니다
input : per(200);
if date != date[1] then
Condition1 = false;
if Condition1 == false and DayVolume >= DayVolume(1)*(1+Per/100) Then
begin
Plot1(High, "거래량 상승",GolD);
end
else
NoPlot( 1 ) ;
이렇게 하면 200%지점부터 이후봉까지 계속 마크가 되는데 딱 200%이상 된 지점만 마크는 안될까요?
답변 1
예스스탁
예스스탁 답변
2023-12-12 14:48:10
안녕하세요
예스스탁입니다.
input : per(200);
if date != date[1] then
Condition1 = false;
if Condition1 == false and DayVolume >= DayVolume(1)*(1+Per/100) Then
{
Condition1 = true;
Plot1(High, "거래량 상승",GolD);
}
else
NoPlot( 1 ) ;
즐거운 하루되세요
> 철판때기 님이 쓴 글입니다.
> 제목 : 1봉전 대비 거래량 *200 지점
> 1봉전 대비 거래량 200%인 지점을 마크하고싶습니다
input : per(200);
if date != date[1] then
Condition1 = false;
if Condition1 == false and DayVolume >= DayVolume(1)*(1+Per/100) Then
begin
Plot1(High, "거래량 상승",GolD);
end
else
NoPlot( 1 ) ;
이렇게 하면 200%지점부터 이후봉까지 계속 마크가 되는데 딱 200%이상 된 지점만 마크는 안될까요?