請問如果想篩選 當前股價比120天内最高價低 10%以內的選股如何操作?謝謝~
1 評論
value1=highest(h[1],120);
condition1=c>=value1*0.9 and c<value1;
if condition1 then ret=1;
1 評論