커뮤니티

도움부탁드립니다

프로필 이미지
렉스턴
2023-05-01 00:39:26
1150
글번호 168609
답변완료
안녕하세요. 캔들 색상칠하기 입니다. 수식1:이름(상승) a=Tema(c,period); if(a<=c,max(c,o),min(c,o)) 수식2:이름(0) if(a<=c,max(c,o),min(c,o)) 수식3:이름(하락) if(a>=c,max(c,o),min(c,o)) 수식4:if(a>=c,max(c,o),min(c,o)) 수식5:이름(tema%period%) a=tema(c,period) 조건설정:period(20) 라인설정: 상승막대(적색) 하락막대(청색) tema20선(분홍색) 입니다.수식변경 부탁드립니다.
강조
답변 1
프로필 이미지

예스스탁 예스스탁 답변

2023-05-02 15:18:59

안녕하세요 예스스탁입니다. 1. 강조 input : Period(20); var : a(0); a = ema(ema(ema(c,period),period),period); var1 = iff(a<=c,max(c,o),min(c,o)); var2 = iff(a>=c,max(c,o),min(c,o)); PlotPaintBar(var1,Var2,"강조",IFf(a<=c,Red,Blue)); 2 지표 input : Period(20); var : a(0); a = ema(ema(ema(c,period),period),period); Plot1(a,"tema",Pink); 즐거운 하루되세요 > 렉스턴 님이 쓴 글입니다. > 제목 : 도움부탁드립니다 > 안녕하세요. 캔들 색상칠하기 입니다. 수식1:이름(상승) a=Tema(c,period); if(a<=c,max(c,o),min(c,o)) 수식2:이름(0) if(a<=c,max(c,o),min(c,o)) 수식3:이름(하락) if(a>=c,max(c,o),min(c,o)) 수식4:if(a>=c,max(c,o),min(c,o)) 수식5:이름(tema%period%) a=tema(c,period) 조건설정:period(20) 라인설정: 상승막대(적색) 하락막대(청색) tema20선(분홍색) 입니다.수식변경 부탁드립니다.