답변완료
수식 문의 드립니다
수고 많으십니다.
아래 전체 식을 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();
2024-11-15
724
글번호 185291
시스템
답변완료
변환부탁드립니다.
안녕하세요. 항상 많은 도움을 받고 있습니다.
감사합니다.
아래 수식을 종목 검색으로 변환 부탁드립니다.
항상 건강하세요
a=avg(c,5);
b=avg(c,20);
d=avg(c,60);
D1=(A+B+D)/3;
a1=(highest(high,9)+lowest(low,9))/2;
b1=(highest(high,26)+lowest(low,26))/2;
B2=(A1+B1)/2;
A3=RSI(9)-50;
B3=CMO(12)*0.5;
B4=A3+B3;
B5=EAVG(C,112);
(CROSSUP(B2,D1) or crossup(D1,B5) or CROSSUP(B2,B5))
감사합니다.
2024-11-14
676
글번호 185289
종목검색
답변완료
문의 드립니다.
이평선 같은 경우,
그 색 강도, 투명도를 조절할 수 있나요?
예를들면, 캔들 위에 20, 60,120 이런 이평선을 씌우면,
캔들이 잘 안 보이는데,
이평선 두께 보다는, 선 투명도를 낮춰서 뒤에서 캔들이 비치도록 할 수 있는지 해서요.
답변 감사드립니다.
2024-11-14
623
글번호 185288
지표
답변완료
키움수식을 파워종목 검색식 부탁드립니다
우리1=shift((highest(high, shortperiod)+
lowest(low,shortperiod)+
highest(high,midperiod)+
lowest(low,midperiod))/4,midperiod-1);
우리2=shift((highest( high, longperiod)+
lowest(low,longperiod))/2,midperiod-1);
crossup(C, max(우리1, 우리2))
지표변수
shortperiod 9
midperiod 26
longperiod 52
2024-11-14
716
글번호 185287
종목검색