예스스탁
예스스탁 답변
2024-11-15 13:58:55
안녕하세요
예스스탁입니다.
Input : EVPeriod(3), Percent(2);
Input : BBPeriod(5), dv(2);
var : EVmd(0,Data2),EVup(0,Data2),EVdn(0,Data2);
var : BBmd(0,Data2),BBup(0,Data2),BBdn(0,Data2);
EVmd = data2(ma(C, EVPeriod));
EVup = data2(EnvelopeUp(EvPeriod, Percent));
EVdn = data2(EnvelopeDown(EVPeriod, Percent));
BBmd = data2(ma(C, BBPeriod));
BBup = data2(BollBandUp(BBPeriod, dv));
BBdn = data2(BollBandDown(BBPeriod, dv));
input : period5(5), period15(2),period25(2);
var : 스토g(0,Data2), 스토q(0,Data2);
스토g = data2(StochasticsK(period5,period15));
스토q = data2(StochasticsD(period5,period15,period25));
if data2(CrossUp(c, BBdn)) Then Buy();
if data2(CrossDown(c, BBdn) && 스토g>50) Then Buy();
if data2(CrossUp(c, BBmd ) && 스토g<스토g[1]) Then Buy();
if data2(CrossUp(c,BBmd) && 스토g<50) Then Buy();
if data2(CrossDown(c, BBdn)) Then Buy();
if data2(CrossUp(스토g, 50)) Then ExitLong();
if data2(Crossdown(스토g, 50)) Then ExitLong();
if data2(CrossUp(스토g,50)) Then ExitLong();
즐거운 하루되세요
> 기관장 님이 쓴 글입니다.
> 제목 : 수식 문의 드립니다
> 수고 많으십니다.
아래 전체 식을 data2 식으로 바꾸어 주시면 감사하겠습니다.
------------------ 아래-----------------------------
Input : EVPeriod(3), Percent(2);
Input : BBPeriod(5), dv(2);
var : EVmd(0),EVup(0),EVdn(0);
var : BBmd(0),BBup(0),BBdn(0);
EVmd = ma(C, EVPeriod);
EVup = EnvelopeUp(EvPeriod, Percent);
EVdn = EnvelopeDown(EVPeriod, Percent);
BBmd = ma(C, BBPeriod);
BBup = BollBandUp(BBPeriod, dv);
BBdn = BollBandDown(BBPeriod, dv);
input : period5(5), period15(2),period25(2);
var : 스토g(0), 스토q(0);
스토g = StochasticsK(period5,period15);
스토q = StochasticsD(period5,period15,period25);
if CrossUp(c, BBdn) Then Buy();
if CrossDown(c, BBdn) && 스토g>50 Then Buy();
if CrossUp(c, BBmd ) && 스토g<스토g[1] Then Buy();
if CrossUp(c,BBmd) && 스토g<50 Then Buy();
if CrossDown(c, BBdn) Then Buy();
if CrossUp(스토g, 50) Then ExitLong();
if Crossdown(스토g, 50) Then ExitLong();
if CrossUp(스토g,50) Then ExitLong();