안녕하세요 항상 감사합니다.
아래의 서식에서
1. 매도(sell)도 추가해주시기 바랍니다.
선물에서 매수와 매도 모두 가능하게끔 부탁드립니다.
input : Period1(5),Period2(10),wPeriod(50);
var : e1(0),e2(0),w(0);
e1 = Ema(C,Period1);
e2 = Ema(C,Period2);
w = WMA(C,wPeriod);
if MarketPosition == 0 and CrossUp(e1,w) Then
Buy("b");
if MarketPosition == 1 and CrossDown(e1,e2) and e1 > w and e2 > w Then
ExitLong("bx");
답변 1
예스스탁
예스스탁 답변
2025-02-18 16:49:21
안녕하세요
예스스탁입니다.
input : Period1(5),Period2(10),wPeriod(50);
var : e1(0),e2(0),w(0);
e1 = Ema(C,Period1);
e2 = Ema(C,Period2);
w = WMA(C,wPeriod);
if MarketPosition == 0 and CrossUp(e1,w) Then
Buy("b");
if MarketPosition == 1 and CrossDown(e1,e2) and e1 > w and e2 > w Then
ExitLong("bx");
if MarketPosition == 0 and CrossDown(e1,w) Then
sell("s");
if MarketPosition == -1 and Crossup(e1,e2) and e1 < w and e2 < w Then
ExitShort("sx");
즐거운 하루되세요
> 가자아이 님이 쓴 글입니다.
> 제목 : 문의 드립니다.
>
안녕하세요 항상 감사합니다.
아래의 서식에서
1. 매도(sell)도 추가해주시기 바랍니다.
선물에서 매수와 매도 모두 가능하게끔 부탁드립니다.
input : Period1(5),Period2(10),wPeriod(50);
var : e1(0),e2(0),w(0);
e1 = Ema(C,Period1);
e2 = Ema(C,Period2);
w = WMA(C,wPeriod);
if MarketPosition == 0 and CrossUp(e1,w) Then
Buy("b");
if MarketPosition == 1 and CrossDown(e1,e2) and e1 > w and e2 > w Then
ExitLong("bx");