예스스탁
예스스탁 답변
2022-12-12 14:19:44
안녕하세요
예스스탁입니다.
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");
즐거운 하루되세요
> 매치다는 님이 쓴 글입니다.
> 제목 : 잘 부탁드립니다
> 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);
plot1(0,"0",GRAY);
plot2(obLevel1,"obLevel1",red);
plot3(osLevel1,"osLevel1",green);
plot4(obLevel2,"obLevel2",red);
plot5(osLevel2,"osLevel2",green);
plot6(wt1,"wt1",green);
plot7(wt2,"wt2",red);
plot8(wt1-wt2,"wt1-wt2",blue);
1, 0선 아래에서 골드나는 매수
2, -50 -60선 아래서 골드발생만 매수
3, wt1 이 wt2 를 골드 하는 매수 매도 시스템응 부탁 드립니다
### 언제나 항상 많은 도움 감사드립니다 ###
### 부족한 설명이 있거나 부족한것이 있다면 검토해서 잘 부탁드립니다###