if C>C[1] then
ret =1;
msg如何根據觸發條件下,不同K棒同個商品作次數統計呢?
1 評論
Hello 雲爺,
您可以用變數來記錄,搭配retmsg和text設定警示訊息。
舉例來說:
if c > c[1] and getinfo("IsRealTime") = 1 then begin //如果要在即時的狀況下運作的話加上getinfo("IsRealTime") = 1避免資料讀取筆數的運算也加入
value1 +=1;
ret = 1;
retmsg = text("高於前價,次數: ", value1);
end;
1 評論