예스스탁
예스스탁 답변
2025-03-05 16:10:08
안녕하세요
예스스탁입니다.
Input : Period(12), Period1(5), Period2(5);
var : Stok(0),Stod(0),T(0),LL(0),LL1(0);
stok = stochasticsK(Period,Period1);
stod = StochasticsD(Period,Period1,Period2);
if CrossUp(stok,stod) Then
{
T = 1;
if LL > LL1 Then
Buy();
}
if CrossDown(stok,stod) Then
{
T = -1;
LL = stok;
LL1 = LL[1];
}
if T == -1 Then
{
if stok < LL Then
LL = stok;
}
즐거운 하루되세요
> 엉덩공주 님이 쓴 글입니다.
> 제목 : 문의
> 스톡캐스틱 이중바닥 더블딥에서
매수하고싶어요