커뮤니티

수식문의드립니다

프로필 이미지
필명입니다
2017-09-27 12:30:11
175
글번호 113131
답변완료
안녕하세요 현재 항생 당일 피보나치를 저녁장시작을 기준으로 다음날까지 연결이되는데요 오전 10:15분을 시작점으로 만들수있을까요? 현재는 이렇게 쓰고있습니다. var1 = dayhigh-DayLow; plot1(dayhigh,"고점"); plot2(dayhigh-var1*0.764,"76.4"); plot3(dayhigh-var1*0.618,"61.8"); plot4(dayhigh-var1*0.500,"50.0"); plot5(dayhigh-var1*0.382,"38.2"); plot6(dayhigh-var1*0.236,"23.6"); plot7(DayLow,"저점"); 부탁드립니다 수고하세요~
지표
답변 1
프로필 이미지

예스스탁 예스스탁 답변

2017-09-27 14:11:41

안녕하세요 예스스탁입니다. var : cnt(0); Array : DO[10](0),DH[10](0),DL[10](0),DC[10](0); if (sdate != sdate[1] and stime >= 100000) or (sdate == sdate[1] and (Stime == 100000 or (stime > 100000 and stime[1] < 100000))) Then{ DO[0] = O; DH[0] = H; DL[0] = L; for cnt = 1 to 9{ DO[cnt] = DO[cnt-1][1]; DH[cnt] = DH[cnt-1][1]; DL[cnt] = DL[cnt-1][1]; DC[cnt] = DC[cnt-1][1]; } } if H > DH[0] Then DH[0] = H; if L < DL[0] Then DL[0] = L; DC[0] = C; var1 = DH[0] - DL[0]; plot1(DH[0],"고점"); plot2(DH[0]-var1*0.764,"76.4"); plot3(DH[0]-var1*0.618,"61.8"); plot4(DH[0]-var1*0.500,"50.0"); plot5(DH[0]-var1*0.382,"38.2"); plot6(DH[0]-var1*0.236,"23.6"); plot7(DL[0],"저점"); 즐거운 하루되세요 > 필명입니다 님이 쓴 글입니다. > 제목 : 수식문의드립니다 > 안녕하세요 현재 항생 당일 피보나치를 저녁장시작을 기준으로 다음날까지 연결이되는데요 오전 10:15분을 시작점으로 만들수있을까요? 현재는 이렇게 쓰고있습니다. var1 = dayhigh-DayLow; plot1(dayhigh,"고점"); plot2(dayhigh-var1*0.764,"76.4"); plot3(dayhigh-var1*0.618,"61.8"); plot4(dayhigh-var1*0.500,"50.0"); plot5(dayhigh-var1*0.382,"38.2"); plot6(dayhigh-var1*0.236,"23.6"); plot7(DayLow,"저점"); 부탁드립니다 수고하세요~