예스스탁
예스스탁 답변
2020-05-25 08:53:19
안녕하세요
예스스탁입니다.
if upperLine[0] > 100 then plot3(upperLine[0],"UpperBand");
if lowerLine[0] > 100 then plot4(lowerLine[0],"LowerBand");
if maV[0] > 100 then plot5(maV[0],"MidLine");
수식에 위와 같이 plot3~5는 100이상일때만 출력되게 되어 있습니다.
종목에 맞게 값을 조절하시기 바랍니다.
조건없이 출력하고 하시면 if문 삭제하시면 됩니다.
if upperLine[0] > 0 then plot3(upperLine[0],"UpperBand");
if lowerLine[0] > 0 then plot4(lowerLine[0],"LowerBand");
if maV[0] > 0 then plot5(maV[0],"MidLine");
즐거운 하루되세요
> 뮬리 님이 쓴 글입니다.
> 제목 : 67563 재질문 부탁 드립니다.(내용무)
> .