커뮤니티

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

프로필 이미지
비밀통로
2024-10-15 09:56:07
672
글번호 184274
답변완료
아래의 (조건1)을 만족한 후에 첫번째로 발생하는 (조건2)에 대한 종목검색식을 부탁드립니다, 첫번째 발생한 이후 발생하는 (조건2)는 검색되지 않았으면 합니다. 감사합니다...^^ (조건1) Input : shortPeriod(5), midPeriod(20), longPeriod(40); value1 = ma(C,shortPeriod); value2 = ma(C,midPeriod); value3 = ma(C,longPeriod); If value1 > value2 && value1 > value3 && value3 > value2 Then Find(1); (조건2)-키움수식 S = supertrend(period, multiplier); SR = S/S(1) * 100 - 100; S(2) > C(2) && S(1) < C(1) && S < C && S > S(1) && S(1) <S(2) && SR > 기준 (지표변수) period: 14 / multiplier: 2 / 기준: 3
종목검색
답변 1
프로필 이미지

예스스탁 예스스탁 답변

2024-10-15 14:44:15

안녕하세요 예스스탁입니다. Input : shortPeriod(5), midPeriod(20), longPeriod(40); var : 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); value1 = ma(C,shortPeriod); value2 = ma(C,midPeriod); value3 = ma(C,longPeriod); Condition1 = value1 > value2 && value1 > value3 && value3 > value2; if Condition1 == true and Condition1[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; if count >= 0 and S[2] > C[2] && S[1] < C[1] && S < C && S > S[1] && S[1] <S[2] && SR > 기준 Then { count = count+1; if count == 1 Then Find(1); } } 즐거운 하루되세요 > 비밀통로 님이 쓴 글입니다. > 제목 : 종목검색식 부탁드립니다. > 아래의 (조건1)을 만족한 후에 첫번째로 발생하는 (조건2)에 대한 종목검색식을 부탁드립니다, 첫번째 발생한 이후 발생하는 (조건2)는 검색되지 않았으면 합니다. 감사합니다...^^ (조건1) Input : shortPeriod(5), midPeriod(20), longPeriod(40); value1 = ma(C,shortPeriod); value2 = ma(C,midPeriod); value3 = ma(C,longPeriod); If value1 > value2 && value1 > value3 && value3 > value2 Then Find(1); (조건2)-키움수식 S = supertrend(period, multiplier); SR = S/S(1) * 100 - 100; S(2) > C(2) && S(1) < C(1) && S < C && S > S(1) && S(1) <S(2) && SR > 기준 (지표변수) period: 14 / multiplier: 2 / 기준: 3