커뮤니티
문의드립니다.
2017-04-27 00:31:20
209
글번호 109200
안녕하세요.
키움수식입니다.
시스템수식으로 변환을 부탁드립니다.
시스템수식이 안된다면 지표식이나 검색식으로도 괸찬습니다.
1번수식
매수진입
c(1)<o(1) and //소문자 오(o) 입니다.
c(1)>l(1) and // 소문자엘(l) 입니다.
o(0)>l(0) and
c(1)==o(0) and
l(1)==l(0) and
c(0) > o (0)
매도진입
c(1)>o(1) and //소문자 오(o) 입니다.
c(1)<h(1) and // 소문자 (h) 입니다.
o(0)<h(0) and
c(1)==o(0) and
h(1)==h(0) and
c(0) < o (0)
2번수식
매수진입
a = dayhigh();
a > a(1)
매수청산
b = daylow();
b < b(1)
감사합니다.
답변 1
예스스탁 예스스탁 답변
2017-04-27 13:30:14
안녕하세요
예스스탁입니다.
1.
if C[1] < o[1] and
c[1]>l[1] and
o[0]>l[0] and
c[1]==o[0] and
l[1]==l[0] and
c[0] > o[0] Then
buy();
if c[1]>o[1] and
c[1]<h[1] and
o[0]<h[0] and
c[1]==o[0] and
h[1]==h[0] and
c[0] < o[0] Then
sell();
2
if dayhigh(0) > dayhigh(0)[1] Then
buy();
if daylow(0) < daylow(0)[1] Then
exitlong();
즐거운 하루되세요
> 천년의사랑 님이 쓴 글입니다.
> 제목 : 문의드립니다.
> 안녕하세요.
키움수식입니다.
시스템수식으로 변환을 부탁드립니다.
시스템수식이 안된다면 지표식이나 검색식으로도 괸찬습니다.
1번수식
매수진입
c(1)<o(1) and //소문자 오(o) 입니다.
c(1)>l(1) and // 소문자엘(l) 입니다.
o(0)>l(0) and
c(1)==o(0) and
l(1)==l(0) and
c(0) > o (0)
매도진입
c(1)>o(1) and //소문자 오(o) 입니다.
c(1)<h(1) and // 소문자 (h) 입니다.
o(0)<h(0) and
c(1)==o(0) and
h(1)==h(0) and
c(0) < o (0)
2번수식
매수진입
a = dayhigh();
a > a(1)
매수청산
b = daylow();
b < b(1)
감사합니다.