예스스탁
예스스탁 답변
2022-12-13 15:08:46
안녕하세요
예스스탁입니다.
문의하신 내용이면 -50,-60은 필요가 없습니다.
0선이하 매수이면 -50,-60 아래에사 발생한것도 모두 포함이 됩니다.
input : n1(10),n2(21),obLevel1(60),obLevel2(53),osLevel1(-60),osLevel2(-53);
var : ap(0),esa(0),dd(0),ci(0),tci(0),wt1(0),wt2(0);
ap = (h+l+c)/3 ;
esa = ema(ap, n1);
dd = ema(abs(ap - esa), n1);
ci = (ap - esa) / (0.015 * dd);
tci = ema(ci, n2);
wt1 = tci;
wt2 = ma(wt1,4);
# 0선 아래 골드시 매수
if CrossUp(wt1,wt2) and wt1 < 0 Then
Buy("b");
즐거운 하루되세요
> 매치다는 님이 쓴 글입니다.
> 제목 : 잘 부탁드립니다
> 1
input : n1(10),n2(21),obLevel1(60),obLevel2(53),osLevel1(-60),osLevel2(-53);
var : ap(0),esa(0),dd(0),ci(0),tci(0),wt1(0),wt2(0);
ap = (h+l+c)/3 ;
esa = ema(ap, n1);
dd = ema(abs(ap - esa), n1);
ci = (ap - esa) / (0.015 * dd);
tci = ema(ci, n2);
wt1 = tci;
wt2 = ma(wt1,4);
# 0선 아래 골드시 매수
if CrossUp(wt1,wt2) and wt1 < 0 Then
Buy("b");
# 0선 위 데드시 매수
if CrossDown(wt1,wt2) and wt1 > 0 Then
Sell("s");
2
input : n1(10),n2(21),obLevel1(60),obLevel2(53),osLevel1(-60),osLevel2(-53);
var : ap(0),esa(0),dd(0),ci(0),tci(0),wt1(0),wt2(0);
ap = (h+l+c)/3 ;
esa = ema(ap, n1);
dd = ema(abs(ap - esa), n1);
ci = (ap - esa) / (0.015 * dd);
tci = ema(ci, n2);
wt1 = tci;
wt2 = ma(wt1,4);
# -50선 아래 골드시 매수
if CrossUp(wt1,wt2) and wt1 < -50 Then
Buy("b");
# 50선 위 데드시 매수
if CrossDown(wt1,wt2) and wt1 > 50 Then
Sell("s");
3
input : n1(10),n2(21),obLevel1(60),obLevel2(53),osLevel1(-60),osLevel2(-53);
var : ap(0),esa(0),dd(0),ci(0),tci(0),wt1(0),wt2(0);
ap = (h+l+c)/3 ;
esa = ema(ap, n1);
dd = ema(abs(ap - esa), n1);
ci = (ap - esa) / (0.015 * dd);
tci = ema(ci, n2);
wt1 = tci;
wt2 = ma(wt1,4);
# 골드시 매수
if CrossUp(wt1,wt2) Then
Buy("b");
# 데드시 매수
if CrossDown(wt1,wt2) Then
Sell("s");
##### 0 선 아래에서 골드 나는 조건만 매수
-50 -60 아레에 있는 골드두 두매수
#### 제가 부족해서 설명을 잘못 드렸네요
1번 2번 2번 하나로 만들어주세요 0선 아래에서 골드나는 매수 신호만
부탁 드립니다