항상 도움주셔서 감사드립니다.
아래 영웅문 수식을 종목검색 수식 변환 요청드립니다.
검색은 금일 장시작(당일 09:00~) 이후 3분봉 상 해당 조건에
부합하는 조건을 검색하고자 합니다.
if(시가<종가
and (종가(1)*1.01<=종가 )
and (
(((거래량*종가)>250000)
and (time-100==time(1) or time(4)-100==time(5)))
or
(((거래량*종가)>750000)
and (time-300==time(1) or time(4)-300==time(5)))
or
(((거래량*종가)>1250000)
and (time-500==time(1) or time(4)-500==time(5)))
or
(((거래량*종가)>2500000)
and (time-1000==time(1) or time(4)-1000==time(5)))
)
,
저가*0.98,0)
답변 1
예스스탁
예스스탁 답변
2022-05-18 14:44:40
안녕하세요
예스스탁입니다.
if sDate != sDate[1] Then
Condition1 = False;
if O<C
and (C[1]*1.01<=C )
and ((((V*C)>250000) and (Stime-100==Stime[1] or Stime[4]-100==Stime[5]))
or (((V*C)>750000) and (Stime-300==Stime[1] or Stime[4]-300==Stime[5]))
or (((V*C)>1250000) and (Stime-500==Stime[1] or Stime[4]-500==Stime[5]))
or (((V*C)>2500000) and (Stime-1000==Stime[1] or Stime[4]-1000==Stime[5]))) Then
Condition1 = true;
if Condition1 == true Then
Find(1);
즐거운 하루되세요
> 장태주 님이 쓴 글입니다.
> 제목 : 종목검색 문의
> 항상 도움주셔서 감사드립니다.
아래 영웅문 수식을 종목검색 수식 변환 요청드립니다.
검색은 금일 장시작(당일 09:00~) 이후 3분봉 상 해당 조건에
부합하는 조건을 검색하고자 합니다.
if(시가<종가
and (종가(1)*1.01<=종가 )
and (
(((거래량*종가)>250000)
and (time-100==time(1) or time(4)-100==time(5)))
or
(((거래량*종가)>750000)
and (time-300==time(1) or time(4)-300==time(5)))
or
(((거래량*종가)>1250000)
and (time-500==time(1) or time(4)-500==time(5)))
or
(((거래량*종가)>2500000)
and (time-1000==time(1) or time(4)-1000==time(5)))
)
,
저가*0.98,0)