커뮤니티
시가를 깨지 않은 종목
2004-06-02 17:18:22
1650
글번호 3889
당일 9시30분까지 시가를 깨지 않고 이후 현재가가 9시30분까지의 고가를 갱신하는 종목중에서 9시 30분까지 거래량이 전일의 거래량의 1/5이상인 종목 검색
input:st(90000),et(092929);
if stime>=093000 and time<=095959 and timeopen(st,et)<=timelow(st,et)
and c>=timehigh(st,et) and .....
then find(1);
거래량을 식화하는 것이 궁굼합니다.
답변 1
예스스탁 예스스탁 답변
2004-06-03 10:04:11
안녕하세요? 예스스탁입니다...
문의하신 식은 다음과 같습니다...
input:st(90000),et(092929);
var : value(0);
if date != date[1] then
value = volume;
if stime >= st&& stime <= et then
value = value + volume;
else
value = value;
if stime>=093000 and time<=095959 and timeopen(st,et)<=timelow(st,et) and
c>=timehigh(st,et) and value > dayvolume(1)/5 then
find(1);
감사합니다...
> 붉은기 님이 쓴 글입니다.
> 제목 : 시가를 깨지 않은 종목
> 당일 9시30분까지 시가를 깨지 않고 이후 현재가가 9시30분까지의 고가를 갱신하는 종목중에서 9시 30분까지 거래량이 전일의 거래량의 1/5이상인 종목 검색
input:st(90000),et(092929);
if stime>=093000 and time<=095959 and timeopen(st,et)<=timelow(st,et)
and c>=timehigh(st,et) and .....
then find(1);
거래량을 식화하는 것이 궁굼합니다.
다음글