커뮤니티
함수문의 합니다.
2004-01-16 00:00:00
1831
글번호 2038
다음 함수 로직이 밎는지요?
timelow,timehigh 함수인데 물론 기본적으로 내장된 줄은 알지만 궁금해서
문의 합니다.
input : startime(numericsimple), endtime(numericsimple);
if d <> d[1] then value1 = 0;
if time = startime then value1 = close;
if time > startime and time <= endtime then begin
if value1 > low then value1 = low;
end;
timelow = value1;
input : startime(numericsimple), endtime(numericsimple);
if d <> d[1] then value1 = 0;
if time = startime then value1 = close;
if time > startime and time <= endtime then begin
if value1 < high then value1 = high;
end;
timehigh = value1;
답변 1
예스스탁 예스스탁 답변
2004-01-19 14:35:01
953번 글에서 답변드렸습니다.