커뮤니티

문의 드려요

프로필 이미지
dudgml79
2011-03-30 13:51:04
683
글번호 37097
답변완료
선생님 스토캐스틱 식에서요 input : Period1(12),Period2(5),Period3(5); if StochasticsK(Period1,Period2) > StochasticsD(Period1,Period2,Period3) Then buy(); if StochasticsK(Period1,Period2) < StochasticsD(Period1,Period2,Period3) Then Sell(); 매수할때 조건을 if StochasticsK(Period1,Period2) > StochasticsD(Period1,Period2,Period3) Then buy(); 1. 이 조건이 만족한 뒤 나중에 이평선에서 5일선이 20일선 상향 돌파하면 매수하는 식을 적어 주세요 먼저 스토캐스틱이 매수신호가 발생한뒤 나중에라도 이평선이 조건에 만족하면 매수하는방법이요 스토캐스틱이 A라고 하고 이평선이 B라고 하면 A안에 B가 포함되어 있는거라고 생각하시면 되요 스토캐스틱하고 이평선이 동시에 만족하는것과 스토캐스틱이 먼저 성립되고 나중에 이평선이 성립되면 매수하는 방식으로 꼭 써주세요 2. 정배열에서는 스토캐스틱 신호가 발생하거나 역배열에서는 스토캐스틱 신호가 안걸리게 해주시면 감사하겠습니다. 3. 9시 30분부터 2시30분까지 자동매매 할 수 있게 해주시고 당일청산이 가능하게 해주세요 4.매수 매도 매수 매도 번갈아가면서 매매 할 수 있게 해주는 식도 있나요 먼저 매수가 들어가게 한다음 반드시 매도가오고 그다음 다시 매수 하는방식을 써주세요 매수 매수 매수 매도 이런식 말구요 이 4가지 질문 부탁드립니다.
시스템
답변 1
프로필 이미지

예스스탁 예스스탁 답변

2011-03-30 13:52:58

안녕하세요 예스스탁입니다. 1. input : Period1(12),Period2(5),Period3(5); if StochasticsK(Period1,Period2) > StochasticsD(Period1,Period2,Period3) and crossup(ma(C,5),ma(C,20)) Then buy(); if StochasticsK(Period1,Period2) < StochasticsD(Period1,Period2,Period3) and CrossDown(ma(C,5),ma(C,20)) Then Sell(); 2. 정대열에서만 스토케스틱 신호 발생 input : Period1(12),Period2(5),Period3(5); Condition1 = ma(C,5) > ma(C,20) and ma(c,20) > ma(C,60); if Condition1 == true then{ if StochasticsK(Period1,Period2) > StochasticsD(Period1,Period2,Period3) Then buy(); if StochasticsK(Period1,Period2) < StochasticsD(Period1,Period2,Period3) Then Sell(); } 3. input : Period1(12),Period2(5),Period3(5); if stime >= 93000 and stime <= 143000 then{ if StochasticsK(Period1,Period2) > StochasticsD(Period1,Period2,Period3) Then buy(); if StochasticsK(Period1,Period2) < StochasticsD(Period1,Period2,Period3) Then Sell(); } SetStopEndofday(150000); 즐거운 하루되세요 > dudgml79 님이 쓴 글입니다. > 제목 : 문의 드려요 > 선생님 스토캐스틱 식에서요 input : Period1(12),Period2(5),Period3(5); if StochasticsK(Period1,Period2) > StochasticsD(Period1,Period2,Period3) Then buy(); if StochasticsK(Period1,Period2) < StochasticsD(Period1,Period2,Period3) Then Sell(); 매수할때 조건을 if StochasticsK(Period1,Period2) > StochasticsD(Period1,Period2,Period3) Then buy(); 1. 이 조건이 만족한 뒤 나중에 이평선에서 5일선이 20일선 상향 돌파하면 매수하는 식을 적어 주세요 먼저 스토캐스틱이 매수신호가 발생한뒤 나중에라도 이평선이 조건에 만족하면 매수하는방법이요 스토캐스틱이 A라고 하고 이평선이 B라고 하면 A안에 B가 포함되어 있는거라고 생각하시면 되요 스토캐스틱하고 이평선이 동시에 만족하는것과 스토캐스틱이 먼저 성립되고 나중에 이평선이 성립되면 매수하는 방식으로 꼭 써주세요 2. 정배열에서는 스토캐스틱 신호가 발생하거나 역배열에서는 스토캐스틱 신호가 안걸리게 해주시면 감사하겠습니다. 3. 9시 30분부터 2시30분까지 자동매매 할 수 있게 해주시고 당일청산이 가능하게 해주세요 이 세가지 질문 부탁드립니다.