예스스탁
예스스탁 답변
2021-09-09 11:20:35
안녕하세요
예스스탁입니다.
1
input : short(12),long(26),sig(9);
input : 익절틱수(20),손절틱수(20);
var : macdv(0),macds(0);
macdv = macd(short,long);
macds = ma(macdv,sig);
if CrossDown(macds,0) Then
Buy();
SetStopProfittarget(PriceScale*익절틱수,PointStop);
SetStopLoss(PriceScale*손절틱수,PointStop);
2
input : short(12),long(26),sig(9);
input : 익절틱수(20),손절틱수(20);
var : macdv(0),macds(0);
macdv = macd(short,long);
macds = ma(macdv,sig);
if CrossUp(macds,0) Then
Sell();
SetStopProfittarget(PriceScale*익절틱수,PointStop);
SetStopLoss(PriceScale*손절틱수,PointStop);
즐거운 하루되세요
> 선물대장 님이 쓴 글입니다.
> 제목 : 문의 드립니다.
> 매수조건
MACD 12 26 9 시그널선이 기준선0선을 위에서 아래로 하향 돌파 시 매수
손절 20틱 익절 20틱
(아래 파일1참조:MACD 시그널선이 하향 돌파 하는 때 매수 임)
매도조건
MACD 12 26 9 시그널선이 기준선0선을 아래에서 상향 돌파 시 매도
손절 20틱 익절 20틱
(아래 파일2참조:MACD 시그널선이 상향 돌파 하는 때 매도 임)
상승추세와 하락추세에서 각각 사용하고자 하오니 부탁드립니다.
매번 감사드립니다.
그런데 아래에서 손절과 익절을 빼고
매수 진입과 매도 진입만 가능하게 부탁드립니다.
-------------------------------------------------
1
input : short(12),long(26),sig(9);
input : 익절틱수(20),손절틱수(20);
var : macdv(0),macds(0);
macdv = macd(short,long);
macds = ma(macdv,sig);
if CrossDown(macds,0) Then
Buy();
SetStopProfittarget(PriceScale*익절틱수,PointStop);
SetStopLoss(PriceScale*손절틱수,PointStop);
2
input : short(12),long(26),sig(9);
input : 익절틱수(20),손절틱수(20);
var : macdv(0),macds(0);
macdv = macd(short,long);
macds = ma(macdv,sig);
if CrossUp(macds,0) Then
Sell();
SetStopProfittarget(PriceScale*익절틱수,PointStop);
SetStopLoss(PriceScale*손절틱수,PointStop);
> 매수조건
MACD 12 26 9 시그널선이 기준선0선을 위에서 아래로 하향 돌파 시 매수
손절 20틱 익절 20틱
(아래 파일1참조:MACD 시그널선이 하향 돌파 하는 때 매수 임)
매도조건
MACD 12 26 9 시그널선이 기준선0선을 아래에서 상향 돌파 시 매도
손절 20틱 익절 20틱
(아래 파일2참조:MACD 시그널선이 상향 돌파 하는 때 매도 임)
상승추세와 하락추세에서 각각 사용하고자 하오니 부탁드립니다.
예스스탁
예스스탁 답변
2021-09-09 12:50:23
안녕하세요
예스스탁입니다.
input : short(12),long(26),sig(9);
var : macdv(0),macds(0);
macdv = macd(short,long);
macds = ma(macdv,sig);
if CrossDown(macds,0) Then
Buy();
if CrossUp(macds,0) Then
Sell();
즐거운 하루되세요
> 선물대장 님이 쓴 글입니다.
> 제목 : Re : Re : 문의 드립니다.
> 매번 감사드립니다.
그런데 아래에서 손절과 익절을 빼고
매수 진입과 매도 진입만 가능하게 부탁드립니다.
-------------------------------------------------
1
input : short(12),long(26),sig(9);
input : 익절틱수(20),손절틱수(20);
var : macdv(0),macds(0);
macdv = macd(short,long);
macds = ma(macdv,sig);
if CrossDown(macds,0) Then
Buy();
SetStopProfittarget(PriceScale*익절틱수,PointStop);
SetStopLoss(PriceScale*손절틱수,PointStop);
2
input : short(12),long(26),sig(9);
input : 익절틱수(20),손절틱수(20);
var : macdv(0),macds(0);
macdv = macd(short,long);
macds = ma(macdv,sig);
if CrossUp(macds,0) Then
Sell();
SetStopProfittarget(PriceScale*익절틱수,PointStop);
SetStopLoss(PriceScale*손절틱수,PointStop);
> 매수조건
MACD 12 26 9 시그널선이 기준선0선을 위에서 아래로 하향 돌파 시 매수
손절 20틱 익절 20틱
(아래 파일1참조:MACD 시그널선이 하향 돌파 하는 때 매수 임)
매도조건
MACD 12 26 9 시그널선이 기준선0선을 아래에서 상향 돌파 시 매도
손절 20틱 익절 20틱
(아래 파일2참조:MACD 시그널선이 상향 돌파 하는 때 매도 임)
상승추세와 하락추세에서 각각 사용하고자 하오니 부탁드립니다.