如題,謝謝
1 評論
Hello simonwu31,
您可以使用 [n] 的方式來取得前n期的值。
舉例來說,在日頻率上運算的話:
value1 = average(close, 20);
value1[1] 就會是前一期(日)的 20MA。
1 評論