예스스탁
예스스탁 답변
2025-01-20 14:46:10
안녕하세요
예스스탁입니다.
input : P1(5),P2(20);
input : short(12),long(26),sig(9);
input : sto1(10),sto2(5),sto3(5);
input : 수익1(3),수익2(5),수익3(10);
var : m1(0),m2(0);
var : macdv(0),macds(0);
var : stok(0),stod(0);
m1 = ma(C,P1);
m2 = ma(C,P2);
macdv = macd(short,long);
macds = ema(macdv,sig);
stok = stochasticsK(sto1,sto2);
stod = stochasticsD(sto1,sto2,sto3);
if CrossUp(m1,m2) Then
Buy("b1");
if CrossDown(m1,m2) Then
sell("s1");
if CrossUp(macdv,macds) Then
Buy("b2");
if CrossDown(macdv,macds) Then
sell("s2");
if CrossUp(stok,stod) Then
Buy("b3");
if CrossDown(stok,stod) Then
sell("s3");
if IsEntryName("b1") == true or IsEntryName("s1") == true Then
SetStopProfittarget(수익1,PercentStop);
if IsEntryName("b2") == true or IsEntryName("s2") == true Then
SetStopProfittarget(수익2,PercentStop);
if IsEntryName("b3") == true or IsEntryName("s3") == true Then
SetStopProfittarget(수익3,PercentStop);
즐거운 하루되세요
> 필승맨 님이 쓴 글입니다.
> 제목 : 목표수익 적용된 수식 합성
> 수식 내에 목표수익률이 각각 다른 게 적용된 3개(이평,macd, sto)의 수식을 or로 묶어
하나의 수식으로 만들어 주시면 감사하겠습니다.