커뮤니티
문의
2012-02-23 15:48:21
357
글번호 48116
Input: g(12), r(25), s(2), p(9), BaseLine0(0), BaseLine1(40), BaseLine2(-40);
Var: value1(0), value2(0);
Input: g(Numeric), r(Numeric), s(Numeric);
SMI_C = ema(ema(c-(highest(H,g) + lowest(L,g))*0.5, r),s) * 100 /
(0.5 * ema(ema(highest(H,g)-lowest(L,g),r),s));
value1 = SMI_C(g,r,s);
value2 = ema(SMI_C(g,r,s),p);
Plot1( value1, "Formula0");
Plot2( value2, "Formula1");
PlotBaseLine1( 0, "BaseLine0");
PlotBaseLine2( 40, "BaseLine1");
PlotBaseLine3( -40, "BaseLine2");
예제))
위식은 smi 지표인데요. (이평대신)
위식을 응용해서 (데이타2)에 변동성지수(참조272) 를 깔고
변동성 모멘텀 지표를 부탁드립니다.
smi 처럼 나오게 부탁드립니다.
감사합니다.
답변 1
예스스탁 예스스탁 답변
2012-02-23 16:58:45
안녕하세요
예스스탁입니다.
Input: g(12), r(25), s(2), p(9), BaseLine0(0), BaseLine1(40), BaseLine2(-40);
Var: SMI_C(0,data2),Signal(0,data2);
SMI_C = data2(ema(ema(c-(highest(H,g) + lowest(L,g))*0.5, r),s) * 100 /(0.5 * ema(ema(highest(H,g)-lowest(L,g),r),s)));
Signal = data2(ema(SMI_C,p));
Plot1( value1, "Formula0");
Plot2( value2, "Formula1");
PlotBaseLine1( 0, "BaseLine0");
PlotBaseLine2( 40, "BaseLine1");
PlotBaseLine3( -40, "BaseLine2");
즐거운 하루되세요
> 털보 님이 쓴 글입니다.
> 제목 : 문의
> Input: g(12), r(25), s(2), p(9), BaseLine0(0), BaseLine1(40), BaseLine2(-40);
Var: value1(0), value2(0);
Input: g(Numeric), r(Numeric), s(Numeric);
SMI_C = ema(ema(c-(highest(H,g) + lowest(L,g))*0.5, r),s) * 100 /
(0.5 * ema(ema(highest(H,g)-lowest(L,g),r),s));
value1 = SMI_C(g,r,s);
value2 = ema(SMI_C(g,r,s),p);
Plot1( value1, "Formula0");
Plot2( value2, "Formula1");
PlotBaseLine1( 0, "BaseLine0");
PlotBaseLine2( 40, "BaseLine1");
PlotBaseLine3( -40, "BaseLine2");
예제))
위식은 smi 지표인데요. (이평대신)
위식을 응용해서 (데이타2)에 변동성지수(참조272) 를 깔고
변동성 모멘텀 지표를 부탁드립니다.
smi 처럼 나오게 부탁드립니다.
감사합니다.
다음글
이전글