커뮤니티

수식 변경 부탁합니다

프로필 이미지
볼라레
2024-12-25 18:26:03
575
글번호 186599
답변완료
SuoerTrend 영웅문 수식 수식1 supertrend(period, multiplier) 수식2 수식3 수식4 S = supertrend(period, multiplier); 라인 = Valuwhen(1, CrossUp(C, S), S(1); K = if(라인>S && Max(C,O)>라인,라인,0); if(K==0, S, K) 수식5 supertrend(period, multiplier) 지표조건설정 period 60 multiplier 3 라인설정 수식4 blue 수식5 원래의 supertrend색 영웅문 수식입니다 예스트레이더 수식으로 변경 부탁합니다 행복한 하루되세요
지표
답변 1
프로필 이미지

예스스탁 예스스탁 답변

2024-12-26 13:46:38

안녕하세요 예스스탁입니다. input : period(60),multiplier(3); var : src(0), AtrV(0),upperBand(0),lowerBand(0), prevLowerBand(0), prevUpperBand(0); var : prevSuperTrend(0), direction(0),alpha(0),source(0),S(C),라인(0),K(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 S = lowerband; Else S = upperband; if CrossUp(C,S) Then 라인 = S[1]; K = iff(라인>S && Max(C,O)>라인,라인,0); var1 = iff(K==0, S, K); Plot1(S,"supertrend",IFf(C>S,Lime,Red)); plot2(var1,"2",Blue); } 즐거운 하루되세요 > 볼라레 님이 쓴 글입니다. > 제목 : 수식 변경 부탁합니다 > SuoerTrend 영웅문 수식 수식1 supertrend(period, multiplier) 수식2 수식3 수식4 S = supertrend(period, multiplier); 라인 = Valuwhen(1, CrossUp(C, S), S(1); K = if(라인>S && Max(C,O)>라인,라인,0); if(K==0, S, K) 수식5 supertrend(period, multiplier) 지표조건설정 period 60 multiplier 3 라인설정 수식4 blue 수식5 원래의 supertrend색 영웅문 수식입니다 예스트레이더 수식으로 변경 부탁합니다 행복한 하루되세요