커뮤니티

수식문의

프로필 이미지
백진강
2014-11-07 10:02:04
116
글번호 80175
답변완료
데이타2와 데이타3의 거래량지표 0-100 점표시 100-200 점표시 200-300 점표시 반대로 마이너스때도 점표시나게 만들어주세요 점표시는 그다음 거래넘어갈때까지 계속해서 나오게해주세요.그리고 데이타2와 데이타3를 함께보는 지표로 부탁합니다
시스템
답변 1
프로필 이미지

예스스탁 예스스탁 답변

2014-11-07 14:39:49

안녕하세요 예스스탁입니다. 문의하신 내용 정확히 이해하지 못했습니다. 아래와 같이 값의 범위를 주어 지표를 출력하시면 됩니다 아래 내용으로 수정보완해 사용하시기 바랍니다. var : V2(0,data2),V3(0,data3); V2 = data2(v); if V2 >= 0 and V2 < 100 Then plot1(100); if V2 >= 100 and V2 < 200 Then plot1(200); if V2 >= 200 and V2 < 300 Then plot1(300); if V2 < 0 and V2 > -100 Then plot1(-100); if V2 <= 100 and V2 > -200 Then plot1(-200); if V2 <= 200 and V2 > -300 Then plot1(-300); V3 = data3(v); if V3 >= 0 and V3 < 100 Then plot1(100); if V3 >= 100 and V3 < 200 Then plot1(200); if V3 >= 200 and V3 < 300 Then plot1(300); if V3 < 0 and V3 > -100 Then plot1(-100); if V3 <= 100 and V3 > -200 Then plot1(-200); if V3 <= 200 and V3 > -300 Then plot1(-300); 즐거운 하루되세요 안녕하세요 예스스탁입니다. 문의하신 내용 정확히 이해하지 못했습니다. 아래와 같이 값의 범위를 주어 지표를 출력하시면 됩니다 아래 내용으로 수정보완해 사용하시기 바랍니다. var : V2(0,data2),V3(0,data3); V2 = data2(v); if V2 >= 0 and V2 < 100 Then plot1(100); if V2 >= 100 and V2 < 200 Then plot1(200); if V2 >= 200 and V2 < 300 Then plot1(300); if V2 < 0 and V2 > -100 Then plot1(-100); if V2 <= 100 and V2 > -200 Then plot1(-200); if V2 <= 200 and V2 > -300 Then plot1(-300); V3 = data3(v); if V3 >= 0 and V3 < 100 Then plot1(100); if V3 >= 100 and V3 < 200 Then plot1(200); if V3 >= 200 and V3 < 300 Then plot1(300); if V3 < 0 and V3 > -100 Then plot1(-100); if V3 <= 100 and V3 > -200 Then plot1(-200); if V3 <= 200 and V3 > -300 Then plot1(-300); 즐거운 하루되세요 > 백진강 님이 쓴 글입니다. > 제목 : 수식문의 > 데이타2와 데이타3의 거래량지표 0-100 점표시 100-200 점표시 200-300 점표시 반대로 마이너스때도 점표시나게 만들어주세요 점표시는 그다음 거래넘어갈때까지 계속해서 나오게해주세요.그리고 데이타2와 데이타3를 함께보는 지표로 부탁합니다