안녕하세요.
수고 많으십니다.
시스템 1번
macd oscialloator가 0선 아래서에서 2연손상승하면 매수
0선위에서 2연속 하락하면 매도.
시스템 2번
macd oscillator가 최저점이 -0.2이상이고 최저점이후 2연속상승하면 매도
macd 최고점이 0.02이상이고 최고점이후 2연속하락하면 매수
답변 1
예스스탁
예스스탁 답변
2024-11-12 15:34:51
안녕하세요
예스스탁입니다.
1
Input : shortPeriod(12), longPeriod(26), Period(9);
Var : MACDv(0), MACDs(0),macdo(0) ;
MACDv = MACD(shortPeriod, longPeriod);
MACDs = ema(MACDv,Period);
macdo = MACDv-MACDs;
if CountIf(MACDO < 0 and MACDO > MACDO[1],2) == 2 Then
Buy();
if CountIf(MACDO > 0 and MACDO < MACDO[1],2) == 2 Then
Sell();
2
Input : shortPeriod(12), longPeriod(26), Period(9);
Var : MACDv(0), MACDs(0),macdo(0),t(0),hh(0),ll(0) ;
MACDv = MACD(shortPeriod, longPeriod);
MACDs = ema(MACDv,Period);
macdo = MACDv-MACDs;
if CrossUp(macdo,0) Then
{
t = 1;
hh = macdo;
}
if CrossDown(macdo,0) Then
{
t = -1;
ll = macdo;
}
if t == 1 Then
{
if macdo > hh Then
hh = macdo;
if t[1] == 1 and CountIf(hh >= 0.02 and MACDO < MACDO[1],2) == 2 Then
Buy();
}
if t == -1 Then
{
if macdo < ll Then
ll = macdo;
if t[1] == -1 and CountIf(ll <= -0.02 and MACDO > MACDO[1],2) == 2 Then
Sell();
}
즐거운 하루되세요
> 일프로 님이 쓴 글입니다.
> 제목 : 수식문의드립니다.
> 안녕하세요.
수고 많으십니다.
시스템 1번
macd oscialloator가 0선 아래서에서 2연손상승하면 매수
0선위에서 2연속 하락하면 매도.
시스템 2번
macd oscillator가 최저점이 -0.2이상이고 최저점이후 2연속상승하면 매도
macd 최고점이 0.02이상이고 최고점이후 2연속하락하면 매수