커뮤니티
수식문의
2010-09-18 10:54:04
751
글번호 32414
if
DayVolume > value3*p &&(1 + percent/100) and ma(v,5)>vv and
val2>=Stren && c>1000 and c<=DayClose[1]*상승률 then
val3=(DayVolume- DayVolume[1])/ DayVolume[1]*100;
else
val3=0;
find(val3);
위식에서
체결 강도 순으로 나열 하려면 어찌 해야 하나요?
답변 1
예스스탁 예스스탁 답변
2010-09-20 10:49:07
안녕하세요? 예스스탁입니다.
현재 진행되고 있는 봉에서의 체결강도 순서로 정렬하는 것은 아래 식으로 가능하지만, 누적 체결강도로 정렬하지는 못합니다.
if
DayVolume > value3*p &&(1 + percent/100) and ma(v,5)>vv and
val2>=Stren && c>1000 and c<=DayClose[1]*상승률 then
val3=(UpVol/DownVol*100);
else
val3=0;
find(val3);
감사합니다.
> HI_coco 님이 쓴 글입니다.
> 제목 : 수식문의
>
if
DayVolume > value3*p &&(1 + percent/100) and ma(v,5)>vv and
val2>=Stren && c>1000 and c<=DayClose[1]*상승률 then
val3=(DayVolume- DayVolume[1])/ DayVolume[1]*100;
else
val3=0;
find(val3);
위식에서
체결 강도 순으로 나열 하려면 어찌 해야 하나요?