hangye 發表於 11-12-22 23:00

請教各位大大該用什麽公式呢 謝謝

請教各位大大:如何統計出一定周期內,符合條件的棒數,如我想統計過去10日內收盤上漲的天數,該用什麽公式呢 謝謝

lucas 發表於 11-12-23 08:36

收盤上漲 指的是1.紅K2.今收大於昨收?

hangye 發表於 11-12-23 09:17

今收大於昨收 thank u

lucas 發表於 11-12-23 14:54

int close=0;
int count=0;
int[] close_a11d={9991,9990,9998,9997,9993,9988,9977,9966,9922,9911,9900};

for(int i=close_a11d.length-1;i>=0;i--){
   if(close==0){
   close=close_a11d;
   continue;
}else{
   if(close>close_a11d){
         count++;
   }
   close=close_a11d;
}
}

應該是這樣吧!
如果寫錯還請包含..
不過這也不是公式ㄚ.
還是小弟沒看清您的問題?

moneymaker 發表於 11-12-23 22:41

好像少了紅K的條件{:4_144:}

moneymaker 發表於 11-12-23 23:00

close>close_a11d and close>open{:4_186:}

u04122 發表於 18-3-16 22:49

謝謝LUCAS大的指導. {:4_160:}
頁: [1]
查看完整版本: 請教各位大大該用什麽公式呢 謝謝