커뮤니티

종목검색식 부탁드립니다.

프로필 이미지
비밀통로
2024-10-15 17:55:53
582
글번호 184294
답변완료
다시한번 부탁드립니다. 조건을 약간 수정했습니다. 아래의 (조건1)을 만족한 후에 (조건2)를 만족하는 종목검색식을 부탁드립니다. 감사합니다...^^ (조건1) M1=ma(C, 기간1); M2=ma(C, 기간2); M3=ma(C, 기간3)); 조건=(M1>M3 && M3>M2 && M1>M2) && M2>M2(1); 조건 && !조건(1) (지표변수) 기간1: 5 / 기간2: 20 / 기간3: 60 (조건2)-키움수식 S = supertrend(period, multiplier); SR = S/S(1) * 100 - 100; Con=S(2) > C(2) && S(1) < C(1) && S < C && S > S(1) && S(1) <S(2) && SR > 기준; Con && !Con(1) (지표변수) period: 14 / multiplier: 2 / 기준: 3
종목검색
답변 1
프로필 이미지

예스스탁 예스스탁 답변

2024-10-16 14:47:35

안녕하세요 예스스탁입니다. input : 기간1(5),기간2(20),기간3(60); var : m1(0),m2(0),m3(0),조건(false),count(0); input : period(14),multiplier(2),기준(3); var : src(0), AtrV(0),upperBand(0),lowerBand(0), prevLowerBand(0), prevUpperBand(0); var : prevSuperTrend(0), superTrend(C), direction(0),alpha(0),source(0),S(0),SR(0),con(False); M1=ma(C, 기간1); M2=ma(C, 기간2); M3=ma(C, 기간3); 조건=(M1>M3 && M3>M2 && M1>M2) && M2>M2[1]; if 조건 == true && 조건[1] == False Then count = 0; if CurrentBar > 1 Then { src = (H+L)/2; alpha = 1 / period ; source = max(high - low, abs(high - close[1]), abs(low - close[1])); ATrV = alpha * source + (1 - alpha) * ATrV[1]; //지수가중이평방식 //ATrV = ma(source,AtrPeriod); //단순이평방식 upperBand = src + multiplier * AtrV; lowerBand = src - multiplier * AtrV; prevLowerBand = lowerBand[1]; prevUpperBand = upperBand[1]; if lowerBand > prevLowerBand or close[1] < prevLowerBand Then lowerBand = lowerBand; Else lowerBand = prevLowerBand; if upperBand < prevUpperBand or close[1] > prevUpperBand Then upperBand = upperBand; Else upperBand = prevUpperBand; if C > UpperBand Then direction = 1; if C < LowerBand Then direction = -1; if direction == 1 Then supertrend = lowerband; Else supertrend = upperband; S = supertrend; SR = S/S[1] * 100 - 100; con = S[2] > C[2] && S[1] < C[1] && S < C && S > S[1] && S[1] <S[2] && SR > 기준; if count >= 0 and con == true and con[1] == False Then { count = count+1; if count == 1 Then Find(1); } } 즐거운 하루되세요 > 비밀통로 님이 쓴 글입니다. > 제목 : 종목검색식 부탁드립니다. > 다시한번 부탁드립니다. 조건을 약간 수정했습니다. 아래의 (조건1)을 만족한 후에 (조건2)를 만족하는 종목검색식을 부탁드립니다. 감사합니다...^^ (조건1) M1=ma(C, 기간1); M2=ma(C, 기간2); M3=ma(C, 기간3)); 조건=(M1>M3 && M3>M2 && M1>M2) && M2>M2(1); 조건 && !조건(1) (지표변수) 기간1: 5 / 기간2: 20 / 기간3: 60 (조건2)-키움수식 S = supertrend(period, multiplier); SR = S/S(1) * 100 - 100; Con=S(2) > C(2) && S(1) < C(1) && S < C && S > S(1) && S(1) <S(2) && SR > 기준; Con && !Con(1) (지표변수) period: 14 / multiplier: 2 / 기준: 3