예스스탁
예스스탁 답변
2022-09-26 10:01:53
안녕하세요
예스스탁입니다.
1번과 2번은 같은 내용입니다.
var : aa(0),bb(0),dd(0),d1(0),a1(0),b1(0);
aa = ma(c,10);
bb = ma(c,20);
dd = ma(c,60);
d1 = ma(c,13);
a1=(highest(high,9)+lowest(low,9))/2;
b1=(highest(high,26)+lowest(low,26))/2;
if c>dd && aa>bb && a1>b1 && c>d1 Then
PlotPaintBar(H,L,"강조",Magenta);
즐거운 하루되세요
> 이대표 님이 쓴 글입니다.
> 제목 : 강조수식 부탁드려요
> <1>
a=ma(c,10);
b=ma(c,20);
d=ma(c,60);
d1=ma(c,13);
a1=(highest(high,9)+lowest(low,9))/2;
b1=(highest(high,26)+lowest(low,26))/2;
선1=shift((highest(high,9)+lowest(low,9)+highest(high,26)+lowest(low,26))/4,26-1);
선2=shift((highest(high,52)+lowest(low,52))/2,25);
(c>d && a>b && a1>b1) && c>d1
<2>
a=ma(c,10);
b=ma(c,20);
d=ma(c,60);
d1=ma(c,13);
a1=(highest(high,9)+lowest(low,9))/2;
b1=(highest(high,26)+lowest(low,26))/2;
선1=shift((highest(high,9)+lowest(low,9)+highest(high,26)+lowest(low,26))/4,26-1);
선2=shift((highest(high,52)+lowest(low,52))/2,25);
(c>d && a>b && a1>b1) && c>d1