커뮤니티

추세선 검토 부탁드립니다.

프로필 이미지
포보스
2024-10-17 16:16:05
691
글번호 184360
답변완료
안녕하세요? 아래 내용도 89537번에서 요청드린것과 같이 plot7(ll+(hh-ll)*0.50 의 추세선값을 중심으로 위,아래 plot , 4, 5, 6, 8,9 추세선을 거꾸로 표기되도록 부탁드립니다. 미리 감사드립니다. ================================= input : R1(234),G1(234),B1(234); input : R2(234),G2(234),B2(234); var : hh(0),ll(0); if Bdate != Bdate[1] Then { var1 = 0; Var2 = Upvol-DownVol; } var1 = var1 + (Upvol-DownVol); // if CurrentDate == sDate Then Plot1(var1,"당일실매수거래량",iff(var1 > 0,RGB(0,0,0),RGB(0,0,0))); // if CurrentDate == sDate Then plot2(Var2,"첫봉종가"); if Bdate != Bdate[1] Then { hh = var1; ll = var1; } Else { if var1 > hh Then hh = var1; if var1 < ll Then ll = var1; } // if CurrentDate == sDate Then { Plot3(hh,"최고"); plot4(ll,"최저"); plot5(ll+(hh-ll)*0.25,"25.0%"); plot6(ll+(hh-ll)*0.382,"38.2%"); plot7(ll+(hh-ll)*0.500,"50.0%"); plot8(ll+(hh-ll)*0.618,"61.8%"); plot9(ll+(hh-ll)*0.75,"75.0%"); PlotBaseLine1(0); }
지표
답변 1
프로필 이미지

예스스탁 예스스탁 답변

2024-10-17 16:46:13

안녕하세요 예스스탁입니다. input : R1(234),G1(234),B1(234); input : R2(234),G2(234),B2(234); var : hh(0),ll(0),mm(0); if Bdate != Bdate[1] Then { var1 = 0; Var2 = Upvol-DownVol; } var1 = var1 + (Upvol-DownVol); // if CurrentDate == sDate Then Plot1(var1,"당일실매수거래량",iff(var1 > 0,RGB(0,0,0),RGB(0,0,0))); // if CurrentDate == sDate Then plot2(Var2,"첫봉종가"); if Bdate != Bdate[1] Then { hh = var1; ll = var1; } Else { if var1 > hh Then hh = var1; if var1 < ll Then ll = var1; } // if CurrentDate == sDate Then { mm = ll+(hh-ll)*0.500; Plot3(mm-(hh-mm),"최고"); plot4(mm-(ll-mm),"최저"); plot5(mm-((ll+(hh-ll)*0.25)-mm),"25.0%"); plot6(mm-((ll+(hh-ll)*0.382)-mm),"38.2%"); plot7(mm,"50.0%"); plot8(mm-((ll+(hh-ll)*0.618)-mm),"61.8%"); plot9(mm-((ll+(hh-ll)*0.75)-mm),"75.0%"); PlotBaseLine1(0); } 즐거운 하루되세요 > 포보스 님이 쓴 글입니다. > 제목 : 추세선 검토 부탁드립니다. > 안녕하세요? 아래 내용도 89537번에서 요청드린것과 같이 plot7(ll+(hh-ll)*0.50 의 추세선값을 중심으로 위,아래 plot , 4, 5, 6, 8,9 추세선을 거꾸로 표기되도록 부탁드립니다. 미리 감사드립니다. ================================= input : R1(234),G1(234),B1(234); input : R2(234),G2(234),B2(234); var : hh(0),ll(0); if Bdate != Bdate[1] Then { var1 = 0; Var2 = Upvol-DownVol; } var1 = var1 + (Upvol-DownVol); // if CurrentDate == sDate Then Plot1(var1,"당일실매수거래량",iff(var1 > 0,RGB(0,0,0),RGB(0,0,0))); // if CurrentDate == sDate Then plot2(Var2,"첫봉종가"); if Bdate != Bdate[1] Then { hh = var1; ll = var1; } Else { if var1 > hh Then hh = var1; if var1 < ll Then ll = var1; } // if CurrentDate == sDate Then { Plot3(hh,"최고"); plot4(ll,"최저"); plot5(ll+(hh-ll)*0.25,"25.0%"); plot6(ll+(hh-ll)*0.382,"38.2%"); plot7(ll+(hh-ll)*0.500,"50.0%"); plot8(ll+(hh-ll)*0.618,"61.8%"); plot9(ll+(hh-ll)*0.75,"75.0%"); PlotBaseLine1(0); }