커뮤니티

피보나치 설정

프로필 이미지
서노기
2026-08-10 11:54:01
63
글번호 233180
답변완료

첨부 이미지

당일 고점 저점 피보나치 선을 사용 중입니다.


피모나치 지표속성 => 변수 => 변수 편집 클릭하여 고점 저점 변수 값을 변경할수 있는 수식 코드를 부탁드리겠습니다.


ex)

현재 피보나치 고점이 7800  저점이 7700 일 경우

지표 속성에서  변수값을 고점을 7750   저점 7650 으로 변경하면  기존 피보나치 선이  

변경한 변수값의  피보나치로  전체가  적용 될수  있는 수식으로 부탁드리겠습니다


현재는 변수 피보나치 지표속성 => 변수 => 변수 편집 클릭하면 23.6 / 38.2 ..... 하나씩 변경 되고 있습니다.


고점 클릭하면 고점만 변경값 입력하고 (고점 변경값을 입력하면  저점은  그대로고  고점만 변경값 적용 되어  전체 피보나치 선 적용)

저점은  그대로

저점 클릭하면 저점 변경값 입력하고  (저점 변경값을  입력하면  고점은  그애로고  저점만 변경값 적용 되어  전체 피보나치 선 적용)

고점은 그대로


고점 저점  둘다 변경값  입력하면   변경값 적용 되어  전체 피보나치 선 적용)


그리고


#지표 속성에서

                               변수 이름에  고점 저점으로 만 표기 되고  변수 값을 클릭하여  변수값  조정(고점 저점) 할수 있게 부탁드리겠습니다.

                                변수에  23.6 / 38.2.... 아닌     고점  저점으로  표기 될수있게요~





지표
답변 7
프로필 이미지

예스스탁 예스스탁 답변

2026-08-10 15:16:17

안녕하세요 예스스탁입니다. 사용하시는 "단기 피보나치"라는 이름의 지표식 내용을 올려주셔야 가능합니다. 수식내용이 있어야 수정해 드릴수 있습니다. 즐거운 하루되세요
프로필 이미지

서노기

2026-08-10 20:01:39

사용중인 단기 피보나치 식 입니다

input : Per1(23.6),Per2(38.2),Per3(50.0),Per4(61.8),Per5(76.4),Per6(-23.6),Per7(123.6),Per8(138.2),Per9(150),Per10(-38.2),Per11(-50); var : cnt(0),HH(0),LL(0),RR(0); HH = dayhigh(0); LL = daylow(0); RR = HH-LL; plot1(HH,"고점"); plot2(LL+RR*(Per9/100),"150%"); plot3(LL+RR*(Per8/100),"138.2%"); plot4(LL+RR*(Per7/100),"123.6%"); plot5(LL+RR*(Per1/100),"23.6%"); plot6(LL+RR*(Per2/100),"38.2%"); plot7(LL+RR*(Per3/100),"50.0%"); plot8(LL+RR*(Per4/100),"61.8%"); plot9(LL+RR*(Per5/100),"76.4%"); plot10(LL+RR*(Per7/100),"-23.6%"); plot11(LL+RR*(Per8/100),"-38.2%"); plot12(LL+RR*(Per9/100),"-50%"); plot13(LL,"저점");
프로필 이미지

예스스탁 예스스탁 답변

2026-08-11 09:16:54

안녕하세요 예스스탁입니다. 고점이나 저점을 0으로 지정하면 기존과 같이 당일고가와 당일저가를 사용합니다. input : 고점(7800),저점(7700); input : Per1(23.6),Per2(38.2),Per3(50.0),Per4(61.8),Per5(76.4),Per6(-23.6),Per7(123.6),Per8(138.2),Per9(150),Per10(-38.2),Per11(-50); var : cnt(0),HH(0),LL(0),RR(0); if 고점 > 0 Then HH = 고점; Else HH = dayhigh(0); if 저점 > 0 Then LL = 저점; Else LL = daylow(0); RR = HH-LL; plot1(HH,"고점"); plot2(LL+RR*(Per9/100),"150%"); plot3(LL+RR*(Per8/100),"138.2%"); plot4(LL+RR*(Per7/100),"123.6%"); plot5(LL+RR*(Per1/100),"23.6%"); plot6(LL+RR*(Per2/100),"38.2%"); plot7(LL+RR*(Per3/100),"50.0%"); plot8(LL+RR*(Per4/100),"61.8%"); plot9(LL+RR*(Per5/100),"76.4%"); plot10(LL+RR*(Per7/100),"-23.6%"); plot11(LL+RR*(Per8/100),"-38.2%"); plot12(LL+RR*(Per9/100),"-50%"); plot13(LL,"저점"); 즐거운 하루되세요

프로필 이미지

서노기

2026-08-11 10:08:13

위 와 같은 피보나치 식으로 매주 / 매월 / 매년 피보나치 수식 코드도 부탁드리겠습니다.
프로필 이미지

예스스탁 예스스탁 답변

2026-08-11 14:43:01

안녕하세요 예스스탁입니다. 1 주 input : 고점(7800),저점(7700); input : Per1(23.6),Per2(38.2),Per3(50.0),Per4(61.8),Per5(76.4),Per6(-23.6),Per7(123.6),Per8(138.2),Per9(150),Per10(-38.2),Per11(-50); var : cnt(0),HH(0),LL(0),RR(0); var : wh(0),wl(0); if DayOfWeek(Bdate) < DayOfWeek(Bdate[1]) Then { wh = h; wl = l; } Else { if h > wh Then wh = h; if l < wl Then wl = l; } if 고점 > 0 Then HH = 고점; Else HH = wh; if 저점 > 0 Then LL = 저점; Else LL = wl; RR = HH-LL; plot1(HH,"고점"); plot2(LL+RR*(Per9/100),"150%"); plot3(LL+RR*(Per8/100),"138.2%"); plot4(LL+RR*(Per7/100),"123.6%"); plot5(LL+RR*(Per1/100),"23.6%"); plot6(LL+RR*(Per2/100),"38.2%"); plot7(LL+RR*(Per3/100),"50.0%"); plot8(LL+RR*(Per4/100),"61.8%"); plot9(LL+RR*(Per5/100),"76.4%"); plot10(LL+RR*(Per7/100),"-23.6%"); plot11(LL+RR*(Per8/100),"-38.2%"); plot12(LL+RR*(Per9/100),"-50%"); plot13(LL,"저점"); 2 월 input : 고점(7800),저점(7700); input : Per1(23.6),Per2(38.2),Per3(50.0),Per4(61.8),Per5(76.4),Per6(-23.6),Per7(123.6),Per8(138.2),Per9(150),Per10(-38.2),Per11(-50); var : cnt(0),HH(0),LL(0),RR(0); var : mh(0),ml(0); if Bdate > Bdate[1]+30 Then { mh = h; ml = l; } Else { if h > mh Then mh = h; if l < ml Then ml = l; } if 고점 > 0 Then HH = 고점; Else HH = mh; if 저점 > 0 Then LL = 저점; Else LL = ml; RR = HH-LL; plot1(HH,"고점"); plot2(LL+RR*(Per9/100),"150%"); plot3(LL+RR*(Per8/100),"138.2%"); plot4(LL+RR*(Per7/100),"123.6%"); plot5(LL+RR*(Per1/100),"23.6%"); plot6(LL+RR*(Per2/100),"38.2%"); plot7(LL+RR*(Per3/100),"50.0%"); plot8(LL+RR*(Per4/100),"61.8%"); plot9(LL+RR*(Per5/100),"76.4%"); plot10(LL+RR*(Per7/100),"-23.6%"); plot11(LL+RR*(Per8/100),"-38.2%"); plot12(LL+RR*(Per9/100),"-50%"); plot13(LL,"저점"); 3 년 input : 고점(7800),저점(7700); input : Per1(23.6),Per2(38.2),Per3(50.0),Per4(61.8),Per5(76.4),Per6(-23.6),Per7(123.6),Per8(138.2),Per9(150),Per10(-38.2),Per11(-50); var : cnt(0),HH(0),LL(0),RR(0); var : yh(0),yl(0); if Bdate > Bdate[1]+1000 Then { yh = h; yl = l; } Else { if h > yh Then yh = h; if l < yl Then yl = l; } if 고점 > 0 Then HH = 고점; Else HH = yh; if 저점 > 0 Then LL = 저점; Else LL = yl; RR = HH-LL; plot1(HH,"고점"); plot2(LL+RR*(Per9/100),"150%"); plot3(LL+RR*(Per8/100),"138.2%"); plot4(LL+RR*(Per7/100),"123.6%"); plot5(LL+RR*(Per1/100),"23.6%"); plot6(LL+RR*(Per2/100),"38.2%"); plot7(LL+RR*(Per3/100),"50.0%"); plot8(LL+RR*(Per4/100),"61.8%"); plot9(LL+RR*(Per5/100),"76.4%"); plot10(LL+RR*(Per7/100),"-23.6%"); plot11(LL+RR*(Per8/100),"-38.2%"); plot12(LL+RR*(Per9/100),"-50%"); plot13(LL,"저점"); 즐거운 하루되세요

프로필 이미지

서노기

2026-08-11 14:58:58

감사합니다~~ 즐거운 하루 되십시요 ^^
프로필 이미지

예스스탁 예스스탁 답변

2026-08-11 15:59:01

좋은 하루되세요