커뮤니티

수정부탁드립니다.

프로필 이미지
라몬
2025-01-31 22:26:17
396
글번호 187642
답변완료
안녕하세요 선생님~ 연휴 출근하시자 마자 수식 도움 받아 고맙습니다. 아래 수식 내용중 시가선도 나왔으면 하구요 5와 20 지수이평을 상승은 적색, 하락은 청색으로 구현하여 주셨으면 합니다. 색상 표현이 안나와서요... 다시한번 감사드립니다. Input : ntime(60),P1(5),P2(20); var : S1(0),D1(0),TM(0),TF1(0); Var : Ep1(0), JISU1(0),c1(0); Var : Ep2(0), JISU2(0),c2(0); Ep1 = 2/(P1+1); Ep2 = 2/(P2+1); if Bdate != Bdate[1] Then { S1 = TimeToMinutes(stime); D1 = sdate; } if D1 > 0 then{ if sdate == D1 Then TM = TimeToMinutes(stime)-S1; Else TM = TimeToMinutes(stime)+1440-S1; TF1 = TM%ntime; if Bdate != Bdate[1] or (Bdate == Bdate[1] and ntime > 1 and TF1 < TF1[1]) or (Bdate == Bdate[1] and ntime > 1 and TM >= TM[1]+ntime) or (Bdate == Bdate[1] and ntime == 1 and TM > TM[1]) Then { value1 = value1+1; JISU1 = C; JISU2 = C; } Else { JISU1 = C * EP1 + JISU1 * (1-EP1); JISU2 = C * EP2 + JISU2 * (1-EP2); } if JISU1 > JISU1[1] Then c1 = Red; if JISU1 < JISU1[1] Then c1 = Blue; if JISU2 > JISU2[1] Then c2 = Red; if JISU2 < JISU2[1] Then c2 = Blue; plot1(JiSu1); plot2(Jisu2); }
지표
답변 1
프로필 이미지

예스스탁 예스스탁 답변

2025-02-03 14:18:20

안녕하세요 예스스탁입니다. Input : ntime(60),P1(5),P2(20); var : S1(0),D1(0),TM(0),TF1(0),OO(0); Var : Ep1(0), JISU1(0),c1(0); Var : Ep2(0), JISU2(0),c2(0); Ep1 = 2/(P1+1); Ep2 = 2/(P2+1); if Bdate != Bdate[1] Then { S1 = TimeToMinutes(stime); D1 = sdate; } if D1 > 0 then{ if sdate == D1 Then TM = TimeToMinutes(stime)-S1; Else TM = TimeToMinutes(stime)+1440-S1; TF1 = TM%ntime; if Bdate != Bdate[1] or (Bdate == Bdate[1] and ntime > 1 and TF1 < TF1[1]) or (Bdate == Bdate[1] and ntime > 1 and TM >= TM[1]+ntime) or (Bdate == Bdate[1] and ntime == 1 and TM > TM[1]) Then { value1 = value1+1; JISU1 = C; JISU2 = C; OO = O; } Else { JISU1 = C * EP1 + JISU1 * (1-EP1); JISU2 = C * EP2 + JISU2 * (1-EP2); } if JISU1 > JISU1[1] Then c1 = Red; if JISU1 < JISU1[1] Then c1 = Blue; if JISU2 > JISU2[1] Then c2 = Red; if JISU2 < JISU2[1] Then c2 = Blue; plot1(JiSu1,"지수이평1",c1); plot2(Jisu2,"지수이평2",c2); plot3(OO,"시가"); } 즐거운 하루되세요 > 라몬 님이 쓴 글입니다. > 제목 : 수정부탁드립니다. > 안녕하세요 선생님~ 연휴 출근하시자 마자 수식 도움 받아 고맙습니다. 아래 수식 내용중 시가선도 나왔으면 하구요 5와 20 지수이평을 상승은 적색, 하락은 청색으로 구현하여 주셨으면 합니다. 색상 표현이 안나와서요... 다시한번 감사드립니다. Input : ntime(60),P1(5),P2(20); var : S1(0),D1(0),TM(0),TF1(0); Var : Ep1(0), JISU1(0),c1(0); Var : Ep2(0), JISU2(0),c2(0); Ep1 = 2/(P1+1); Ep2 = 2/(P2+1); if Bdate != Bdate[1] Then { S1 = TimeToMinutes(stime); D1 = sdate; } if D1 > 0 then{ if sdate == D1 Then TM = TimeToMinutes(stime)-S1; Else TM = TimeToMinutes(stime)+1440-S1; TF1 = TM%ntime; if Bdate != Bdate[1] or (Bdate == Bdate[1] and ntime > 1 and TF1 < TF1[1]) or (Bdate == Bdate[1] and ntime > 1 and TM >= TM[1]+ntime) or (Bdate == Bdate[1] and ntime == 1 and TM > TM[1]) Then { value1 = value1+1; JISU1 = C; JISU2 = C; } Else { JISU1 = C * EP1 + JISU1 * (1-EP1); JISU2 = C * EP2 + JISU2 * (1-EP2); } if JISU1 > JISU1[1] Then c1 = Red; if JISU1 < JISU1[1] Then c1 = Blue; if JISU2 > JISU2[1] Then c2 = Red; if JISU2 < JISU2[1] Then c2 = Blue; plot1(JiSu1); plot2(Jisu2); }