커뮤니티
문의
2017-06-18 19:50:51
142
글번호 110525
Stochasticsslow(50,30)
Stochasticsslow(20,12)
Stochasticsslow(12,5)
가 동시에 20이하면 매수
동시에 80이상이면 매도
부탁드립니다
답변 1
예스스탁 예스스탁 답변
2017-06-19 13:38:56
안녕하세요
예스스탁입니다.
var1 = StochasticsK(50,30);
var2 = StochasticsK(20,12);
var3 = StochasticsK(12,5);
if var1 < 20 and var2 < 20 and var3 < 20 Then
buy();
if var1 > 80 and var2 > 80 and var3 > 80 Then
sell();
즐거운 하루되세요
> 레전드 님이 쓴 글입니다.
> 제목 : 문의
> Stochasticsslow(50,30)
Stochasticsslow(20,12)
Stochasticsslow(12,5)
가 동시에 20이하면 매수
동시에 80이상이면 매도
부탁드립니다