比如:
x=ema(close,9);
x值可以取到整數(四捨五入)嗎??
1 評論
Hi pao,
您好,可以使用 round 函數,
例如:
x=ema(close,9); value1 = round(x, 0); //value1為 X 四捨五入到整數
1 評論