커뮤니티
93236 추가질문입니다.
2014-11-28 17:29:29
139
글번호 80896
Re : 질문입니다..
안녕하세요
예스스탁입니다.
아래식 참고하시기 바랍니다.
1.
var : stok(0),count(0);
stok = StochasticsK(10,5);
if CrossDown(stok,80) Then
      count = 0;
#80이하에서 스토k가 상향반전한 횟수 카운트
if stok < 80 and stok > stok[1] and stok[1] < stok[2] then{
      count = count+1;
      #두번째 발생할때 매수
      if count == 2 Then
            buy();
}
종목검색이면, buy 만 find로 변경 하면되나요?
답변 1
예스스탁 예스스탁 답변
2014-11-28 18:34:07
안녕하세요
예스스탁입니다.
예 맞습니다.
var : stok(0),count(0);
stok = StochasticsK(10,5);
if CrossDown(stok,80) Then
count = 0;
#80이하에서 스토k가 상향반전한 횟수 카운트
if stok < 80 and stok > stok[1] and stok[1] < stok[2] then{
count = count+1;
#두번째 발생할때 매수
if count == 2 Then
find(1);
}
즐거운 하루되세요
> 그린라이트 님이 쓴 글입니다.
> 제목 : 93236 추가질문입니다.
> Re : 질문입니다..
안녕하세요
예스스탁입니다.
아래식 참고하시기 바랍니다.
1.
var : stok(0),count(0);
stok = StochasticsK(10,5);
if CrossDown(stok,80) Then
count = 0;
#80이하에서 스토k가 상향반전한 횟수 카운트
if stok < 80 and stok > stok[1] and stok[1] < stok[2] then{
count = count+1;
#두번째 발생할때 매수
if count == 2 Then
buy();
}
종목검색이면, buy 만 find로 변경 하면되나요?
다음글
이전글