技術指標:VOL的6T ‹ 18T 時
要如何用condition 表達..?
1 評論
Hello will1,
您可以使用 average 函數來計算移動平均線。
所以要計算6期成交量均線小於18期成交量均線可以這樣寫:
condition1 = average(volume, 6) < average(volume, 18);
1 評論