Fourier Moving Average
Indicator Tutorial 9
Tradovate Trader includes some third-party libraries that can be helpful for indicators.
Lodash is a very popular and high-performance library to work with arrays and objects. All you need to do is to include const lodash = require("lodash") in your module.
Another is a library for Fast Fourier Transform. Here is an example of how to apply this library to build a moving average that calculated as FFT of input data, a filter of high frequencies, and inverse FFT.


