커뮤니티

수식부탁드립니다----------

프로필 이미지
leekss1
2012-05-23 18:26:21
308
글번호 51268
답변완료
if dayindex > 10 and stime > 090000 and stime < 144500 and goldjisutem-sTEMA82 > goldjisutem-sTEMA82[1]+0.02 then{ plot12(goldjisutem+0.1,"기울기매도"); //PlaySound("C:₩예스트레이더31₩Data₩alert.wav"); } if dayindex > 10 and stime > 090000 and stime < 144500 and goldjisutem-sTEMA82 < goldjisutem-sTEMA82[1]-0.02 then { plot13(goldjisutem-0.1,"기울기매수"); // PlaySound("C:₩예스트레이더31₩Data₩alert.wav"); } plot12 조건이되면 점한번찍고 plot13 조건이되면 점한번찍게해주세요 즉 plot2점찍으면 plot3나올때까지 점안찍는다 또 plot3점찍으면 plot2나올때까지 점안찍는다 (상승 시작 할때 점한번찍고 하락 시작 할때 점한번 찍으려 합니다) 부탁드립니다
지표
답변 1
프로필 이미지

예스스탁 예스스탁 답변

2012-05-23 20:46:23

안녕하세요 예스스탁입니다. plot22를 점그래프로 설정하시고 적용하셔야 합니다. var : AA(0); if dayindex > 10 and stime > 090000 and stime < 144500 and goldjisutem-sTEMA82 > goldjisutem-sTEMA82[1]+0.02 then{ plot12(goldjisutem+0.1,"기울기매도"); AA = 1; } if dayindex > 10 and stime > 090000 and stime < 144500 and goldjisutem-sTEMA82 < goldjisutem-sTEMA82[1]-0.02 then { plot13(goldjisutem-0.1,"기울기매수"); AA = -1; } if AA == 1 and AA[1] != 1 Then plot22(H); if AA == -1 and AA[1] != -1 Then plot22(L); 즐거운 하루되세요 > leekss1 님이 쓴 글입니다. > 제목 : 수식부탁드립니다---------- > if dayindex > 10 and stime > 090000 and stime < 144500 and goldjisutem-sTEMA82 > goldjisutem-sTEMA82[1]+0.02 then{ plot12(goldjisutem+0.1,"기울기매도"); //PlaySound("C:₩예스트레이더31₩Data₩alert.wav"); } if dayindex > 10 and stime > 090000 and stime < 144500 and goldjisutem-sTEMA82 < goldjisutem-sTEMA82[1]-0.02 then { plot13(goldjisutem-0.1,"기울기매수"); // PlaySound("C:₩예스트레이더31₩Data₩alert.wav"); } plot12 조건이되면 점한번찍고 plot13 조건이되면 점한번찍게해주세요 즉 plot2점찍으면 plot3나올때까지 점안찍는다 또 plot3점찍으면 plot2나올때까지 점안찍는다 (상승 시작 할때 점한번찍고 하락 시작 할때 점한번 찍으려 합니다) 부탁드립니다