예스스탁
예스스탁 답변
2025-03-18 15:18:52
안녕하세요
예스스탁입니다.
input : A_Period(26),Period(20),ratio(1),기간(5),mah기간(240);
var :가격(0),A(0),upt(0),dnt(0),cc(0),turn(0),라인(0),D(0),S(0),R2(0);
가격 = (H+L)/2;
A=ATR(A_period);
UPT=Ema(가격+A*ratio,기간);
dnt=Ema(가격-A*ratio,기간);
CC=CCi(period);
turn= iff(CC>=0&&dnt>dnt[1],1, iff(CC<0&&upt<upt[1],-1,0));
라인=iff(turn==-1,upt,dnt);
if turn==1 OR turn==-1 Then
D=라인;
S = ma((highest(high,mah기간)),mah기간);
R2 = (dayhigh(1)+daylow(1)+dayclose(1))/3 + dayhigh(1)-daylow(1);
if CrossUp(D,S) or CrossUp(D,R2) Then
Find(1);
즐거운 하루되세요
> 님이랑 님이 쓴 글입니다.
> 제목 : 돌파 조건 검색식 부탁 합니다
> A=ATR(A_period);
UPT=eavg(가격+A*ratio,기간);
dnt=eavg(가격-A*ratio,기간);
CC=CCi(period);
turn=
if(CC>=0&&dnt>dnt(1),1,
if(CC<0&&upt<upt(1),-1,0));
라인=if(turn==-1,upt,dnt);
D=valuewhen(1,turn==1 OR turn==-1,라인)
지표조건
A_period 26
period 20
ratio 1
가격 (H+L)/2
기간 5
S=avg((highest(high,기간)),기간)
지표 조건
기간 240
2차저항(predayhigh()+predaylow()+predayclose())/3 +predayhigh()-predaylow()
분봉에서 D가 S OR 2차저항 돌파 검색식 부탁 드립니다