커뮤니티

항상 감사합니다.....

프로필 이미지
숭테크
2021-02-19 01:57:02
445
글번호 146449
답변완료
M= (HighestSince(1, CrossUp(Trix(Period),0),C)+ LowestSince(1, CrossDown(Trix(Period),0),C))/2; N=EnvelopeUp(50,3); c>=M and c>N(19) and c>o and MACD(short,long)>=0 and MACD(short,long)>eavg(MACD(short, long), Signal) and DIPlus(14)>=DIMinus(14) and C>=SAR(0.015,0.15) and CrossUp(c, BBandsUp(period1,2)) 이조건을 만족하는 종목을 검색하고싶습니다.... signal 7 Period 8 Period1 17 Short 10 long 15 감사합니다 ....
종목검색
답변 1
프로필 이미지

예스스탁 예스스탁 답변

2021-02-19 14:48:56

안녕하세요 예스스탁입니다. input : signal(7),period(8),period1(17),short(10),long(15); var : T(0),N(0),MM(0),hh(0),ll(0),macdv(0),macds(0),DM(0),DP(0),Sarv(0),bbup(0); T = TRIX(Period); N = EnvelopeUp(50,3); macdv = macd(short,long); macds = Ema(macdv,signal); DP = DiPlus(14); DM = DiMinus(14); Sarv = Sar(0.015,0.15); bbup = BollBandUp(Period1,2); if CrossUp(T,0) Then hh = C; if CrossDown(T,0) Then LL = C; if HH > 0 and C > HH Then HH = C; if LL > 0 and C < LL Then LL = C; if hh > 0 and LL > 0 Then { MM = (HH+LL)/2; if c>=MM and c > N[19] and c>o and macdv >= 0 and macdv > macds and DP >= DM and C >= Sarv and CrossUp(c, bbup) Then Find(1); } 즐거운 하루되세요 > 숭테크 님이 쓴 글입니다. > 제목 : 항상 감사합니다..... > M= (HighestSince(1, CrossUp(Trix(Period),0),C)+ LowestSince(1, CrossDown(Trix(Period),0),C))/2; N=EnvelopeUp(50,3); c>=M and c>N(19) and c>o and MACD(short,long)>=0 and MACD(short,long)>eavg(MACD(short, long), Signal) and DIPlus(14)>=DIMinus(14) and C>=SAR(0.015,0.15) and CrossUp(c, BBandsUp(period1,2)) 이조건을 만족하는 종목을 검색하고싶습니다.... signal 7 Period 8 Period1 17 Short 10 long 15 감사합니다 ....