Var: Upv(0),Downv(0),PVaccum(0);
Upv = Iff(Close > Close[1] and Volume > Volume[1], 1, 0);
Downv = Iff(Close < Close[1] and Volume < Volume[1], 1, 0);
PVaccum = accum(Upv - Downv);
Plot1(PVaccum, "Volume & Price Accumulator");
PlotBaseLine1(0, "기준선0");
위 수식에서 보이는 것을 막대그래프로 설정합니다.
이때 5이평선 선을 넣고 싶습니다.
이때 5이평이 상승일때 이평선과 막대그래프는 빨간색
5이평이 하락일때 이평선과 막대그래프는 빨간색으로
표시하고 싶습니다.
답변 1
예스스탁
예스스탁 답변
2025-01-23 09:28:02
안녕하세요
예스스탁입니다.
input : signal(10);
Var: Upv(0),Downv(0),PVaccum(0),sig(0);
Upv = Iff(Close > Close[1] and Volume > Volume[1], 1, 0);
Downv = Iff(Close < Close[1] and Volume < Volume[1], 1, 0);
PVaccum = accum(Upv - Downv);
sig = ma(PVaccum,signal);
Plot1(PVaccum, "Volume & Price Accumulator",IFf(Sig>Sig[1],Red,bleu));
plot2(sig,"signal",IFf(Sig>Sig[1],Red,bleu));
PlotBaseLine1(0, "기준선0");
즐거운 하루되세요
> 오늘도수익 님이 쓴 글입니다.
> 제목 : 수식 부탁드립니다.
> Var: Upv(0),Downv(0),PVaccum(0);
Upv = Iff(Close > Close[1] and Volume > Volume[1], 1, 0);
Downv = Iff(Close < Close[1] and Volume < Volume[1], 1, 0);
PVaccum = accum(Upv - Downv);
Plot1(PVaccum, "Volume & Price Accumulator");
PlotBaseLine1(0, "기준선0");
위 수식에서 보이는 것을 막대그래프로 설정합니다.
이때 5이평선 선을 넣고 싶습니다.
이때 5이평이 상승일때 이평선과 막대그래프는 빨간색
5이평이 하락일때 이평선과 막대그래프는 빨간색으로
표시하고 싶습니다.