커뮤니티

지표

프로필 이미지
호정0688
2021-11-23 12:51:58
699
글번호 153836
답변완료
지표 1]당일)시고저중종 고가~저가 사이의 10%30%60%80%110%130%(-110%,-130%)라인 1-1전일)시고저중종 고가~저가 사이의 10%30%60%80%110%130%(-110%,-130%)라인 2]이번주지난주~ 3]이번월지난월~
지표
답변 1
프로필 이미지

예스스탁 예스스탁 답변

2021-11-24 09:47:02

안녕하세요 예스스탁입니다. 1 당일 var1 = DayHigh; Var2 = DayLow; var3 = var1-Var2; Plot1(var2+var3*0.1); Plot2(var2+var3*0.3); Plot3(var2+var3*0.6); Plot4(var2+var3*0.8); Plot5(var2+var3*1.1); Plot6(var2+var3*1.3); Plot7(var2-var3*0.1); Plot8(var2-var3*0.3); 2 전일 var1 = DayHigh(1); Var2 = DayLow(1); var3 = var1-Var2; Plot1(var2+var3*0.1); Plot2(var2+var3*0.3); Plot3(var2+var3*0.6); Plot4(var2+var3*0.8); Plot5(var2+var3*1.1); Plot6(var2+var3*1.3); Plot7(var2-var3*0.1); Plot8(var2-var3*0.3); 3.이번주 var : hh(0),ll(0),diff(0); if DayOfWeek(Bdate) < DayOfWeek(Bdate[1]) Then { hh = h; ll = l; } if hh > 0 and h > hh Then hh = h; if ll > 0 and l < ll Then ll = l; if hh > 0 and ll > 0 Then { diff = hh-ll; Plot1(ll+diff*0.1); Plot2(ll+diff*0.3); Plot3(ll+diff*0.6); Plot4(ll+diff*0.8); Plot5(ll+diff*1.1); Plot6(ll+diff*1.3); Plot7(ll-diff*0.1); Plot8(ll-diff*0.3); } 4 전주 var : hh(0),ll(0),hh1(0),ll1(0),diff(0); if DayOfWeek(Bdate) < DayOfWeek(Bdate[1]) Then { hh = h; ll = l; hh1 = hh[1]; ll1 = ll[1]; } if hh > 0 and h > hh Then hh = h; if ll > 0 and l < ll Then ll = l; if hh1 > 0 and ll1 > 0 Then { diff = hh1-ll1; Plot1(ll1+diff*0.1); Plot2(ll1+diff*0.3); Plot3(ll1+diff*0.6); Plot4(ll1+diff*0.8); Plot5(ll1+diff*1.1); Plot6(ll1+diff*1.3); Plot7(ll1-diff*0.1); Plot8(ll1-diff*0.3); } 5.이번달 var : hh(0),ll(0),diff(0); if Bdate > Bdate[1]+30 Then { hh = h; ll = l; } if hh > 0 and h > hh Then hh = h; if ll > 0 and l < ll Then ll = l; if hh > 0 and ll > 0 Then { diff = hh-ll; Plot1(ll+diff*0.1); Plot2(ll+diff*0.3); Plot3(ll+diff*0.6); Plot4(ll+diff*0.8); Plot5(ll+diff*1.1); Plot6(ll+diff*1.3); Plot7(ll-diff*0.1); Plot8(ll-diff*0.3); } 6 전월 var : hh(0),ll(0),hh1(0),ll1(0),diff(0); if Bdate > Bdate[1]+30 Then { hh = h; ll = l; hh1 = hh[1]; ll1 = ll[1]; } if hh > 0 and h > hh Then hh = h; if ll > 0 and l < ll Then ll = l; if hh1 > 0 and ll1 > 0 Then { diff = hh1-ll1; Plot1(ll1+diff*0.1); Plot2(ll1+diff*0.3); Plot3(ll1+diff*0.6); Plot4(ll1+diff*0.8); Plot5(ll1+diff*1.1); Plot6(ll1+diff*1.3); Plot7(ll1-diff*0.1); Plot8(ll1-diff*0.3); } 즐거운 하루되세요 > 호정0688 님이 쓴 글입니다. > 제목 : 지표 > 지표 1]당일)시고저중종 고가~저가 사이의 10%30%60%80%110%130%(-110%,-130%)라인 1-1전일)시고저중종 고가~저가 사이의 10%30%60%80%110%130%(-110%,-130%)라인 2]이번주지난주~ 3]이번월지난월~