예스스탁
예스스탁 답변
2022-10-25 14:44:22
안녕하세요
예스스탁입니다.
input : Period(10);
input : midPeriod(26),BBperiod(20),d1(2);
var : bb(0);
var :AA(False),VV(False),box(0);
AA = crossup(C, max((highest(high,9)[25]+lowest(low,9)[25]+highest(high,26)[25]+lowest(low,26)[25])/4 , (highest(high,52)[25]+lowest(low,52)[25])/2));
VV=V>highest(V, Period)[1];
if AA and VV Then
{
box = Box_New(sDate,sTime,H,NextBarSdate,NextBarStime,L);
Box_SetColor(box,Magenta);
Box_SetFill(box,true);
Box_SetExtFill(box,true);
}
bb = BollBandUp(BBperiod,d1);
if CrossUp(c,bb[midperiod-1]) Then
Plot1(L,"검색");
즐거운 하루되세요
> 매치다는 님이 쓴 글입니다.
> 제목 : 감사합니다
> 1번
input : Period(10);
var :AA(False),VV(False),box(0);
AA = crossup(C, max((highest(high,9)[25]+lowest(low,9)[25]+highest(high,26)[25]+lowest(low,26)[25])/4 , (highest(high,52)[25]+lowest(low,52)[25])/2));
VV=V>highest(V, Period)[1];
if AA and VV Then
{
box = Box_New(sDate,sTime,H,NextBarSdate,NextBarStime,L);
Box_SetColor(box,Magenta);
Box_SetFill(box,true);
Box_SetExtFill(box,true);
}
2번
input : midPeriod(26),period(20),d1(2);
var : bb(0);
bb = BollBandUp(Period,d1);
if CrossUp(c,bb[midperiod-1]) Then
Plot1(L,"검색");
다른색으로 두식을 을 합처서 표현 하고자 합니다
위 캡처 처럼 부탁 드립니다 감사합니다