리서치팀
예스스탁 답변
2003-07-14 00:00:00
안녕하세요? 예스스탁입니다....
답변이 늦어져서 죄송합니다....
담당자가 이미 메일을 발송해 드렸다고 착각했었습니다....
답변을 메일로 드렸으니 확인 부탁드리겠습니다...
그럼 즐거운 저녁시간 되시고 선물투자님 매번 친절한 답변 감사드립니다....
> CJ_amita2jh 님이 쓴 글입니다.
> 제목 : 372번 답변 부탁
> 372번 수식 부탁드린거 가능한지 답변 좀 부탁드립니다
input:period(20), D(2), ma_len(20);
if crossup(c, BollBandDown(Period,D)) and c>o then begin
exitshort();
buy();
end;
if crossup(ma(c,ma_len), BollBandDown(Period,D)) then begin
exitshort();
buy();
end;
if crossup(c, BollBandUp(Period,D)) and c>o then begin
exitshort();
buy();
end;
if crossup(ma(c, ma_len), BollBandUp(Period,D)) then begin
exitshort();
buy();
end;
if ma(c, ma_len)[1]>BollBandUp(Period,D)[1] and c>BollBandUp(Period,D)[1]
and crossup(c, ma(c, ma_len)) and c<o then begin
exitlong();
sell();
end;
if crossdown(c, BollBandUp(Period,D)) and c<o then begin
exitlong();
sell();
end;
if crossdown(ma(c,ma_len), BollBandUp(period, D)) then begin
exitlong();
sell();
end;
if crossdown(c, BollBandDown(period, D)) and c<o then begin
exitlong();
sell();
end;
if crossdown(ma(c, ma_len), BollBandDown(period, D)) then begin
exitlong();
sell();
end;
올린글에 의문점이 있었지만 제 임의적으로 판단한 것들이 있습니다.
확인하실 필요 있을 것같습니다.
좋은 시스테 만드시길 바랍니다.
> CJ_amita2jh 님이 쓴 글입니다.
> 제목 : 372번 답변 부탁
> 372번 수식 부탁드린거 가능한지 답변 좀 부탁드립니다
********
2003-07-14 00:00:00
제가 초보라서 잘 모르고 하다보니 무리하게 또는 잘 맞지않는 수식을 부탁드리는 경우가 많습니다.
그러나 이렇게 친절하게 도와주시니 정말이지 감사합니다.
성공하시기 바랍니다.....
> 선물투자 님이 쓴 글입니다.
> 제목 : Re : 372번 답변 부탁
>
> input:period(20), D(2), ma_len(20);
>
>
> if crossup(c, BollBandDown(Period,D)) and c>o then begin
> exitshort();
> buy();
> end;
> if crossup(ma(c,ma_len), BollBandDown(Period,D)) then begin
> exitshort();
> buy();
> end;
> if crossup(c, BollBandUp(Period,D)) and c>o then begin
> exitshort();
> buy();
> end;
> if crossup(ma(c, ma_len), BollBandUp(Period,D)) then begin
> exitshort();
> buy();
> end;
>
>
> if ma(c, ma_len)[1]>BollBandUp(Period,D)[1] and c>BollBandUp(Period,D)[1]
> and crossup(c, ma(c, ma_len)) and c<o then begin
> exitlong();
> sell();
> end;
>
> if crossdown(c, BollBandUp(Period,D)) and c<o then begin
> exitlong();
> sell();
> end;
> if crossdown(ma(c,ma_len), BollBandUp(period, D)) then begin
> exitlong();
> sell();
> end;
>
> if crossdown(c, BollBandDown(period, D)) and c<o then begin
> exitlong();
> sell();
> end;
> if crossdown(ma(c, ma_len), BollBandDown(period, D)) then begin
> exitlong();
> sell();
> end;
>
>
> 올린글에 의문점이 있었지만 제 임의적으로 판단한 것들이 있습니다.
> 확인하실 필요 있을 것같습니다.
> 좋은 시스테 만드시길 바랍니다.
>
>
> > CJ_amita2jh 님이 쓴 글입니다.
>
> > 제목 : 372번 답변 부탁
>
> > 372번 수식 부탁드린거 가능한지 답변 좀 부탁드립니다