커뮤니티

지표식 부탁드립니다.

프로필 이미지
이대표
2020-10-06 17:53:42
685
글번호 142902
답변완료
다음 수식을 지표전환부탁드립니다. 수식1 t2=tema(c,period); if(c>t2,max(c,o),0) 수식2 t2=tema(c,period); if(c<t2,max(c,o),0) 수식3 t1=tema(c,20); t2=tema(c,period); if((low<t2 && high>t2) or (t1>t2 && high<t2),max(c,o),min(c,o)) 수식4 t1=tema(c,20); t2=tema(c,period); z=if((t1<t2 && high>t2 && low<t2) or (t1<t2 && low>t2),max(c,o), if(t1<t2 && high<t2,min(c,o),0)) period 10
지표
답변 1
프로필 이미지

예스스탁 예스스탁 답변

2020-10-07 10:27:53

안녕하세요 예스스탁입니다. input : Period(10); var : t1(0),t2(0),z(0); t1 = Ema(Ema(Ema(c,20),20),20); t2 = Ema(Ema(Ema(c,period),period),period); if c > t2 Then var1 = ma(C,O); if c < t2 Then var2 = ma(C,O); var3 = IFf((low < t2 && high >t2 ) or (t1>t2 && high<t2),max(c,o),min(c,o)); z = iff((t1<t2 && high>t2 && low<t2) or (t1<t2 && low>t2),max(c,o),iff(t1<t2 && high<t2,min(c,o),0)); if t1<t2 && high<t2 then var4 = min(c,o); if var1 > 0 Then Plot1(var1); if Var2 > 0 Then Plot2(var2); if Var3 > 0 Then Plot3(var3); if Var4 > 0 Then Plot4(var4); 즐거운 하루되세요 > 이대표 님이 쓴 글입니다. > 제목 : 지표식 부탁드립니다. > 다음 수식을 지표전환부탁드립니다. 수식1 t2=tema(c,period); if(c>t2,max(c,o),0) 수식2 t2=tema(c,period); if(c<t2,max(c,o),0) 수식3 t1=tema(c,20); t2=tema(c,period); if((low<t2 && high>t2) or (t1>t2 && high<t2),max(c,o),min(c,o)) 수식4 t1=tema(c,20); t2=tema(c,period); z=if((t1<t2 && high>t2 && low<t2) or (t1<t2 && low>t2),max(c,o), if(t1<t2 && high<t2,min(c,o),0)) period 10