A SimpleMovingAverage is always initialized with fast = SMA(Symbol, 5, Resolution.Daily);

but not its own constructor public SimpleMovingAverage(string name, int period).

I am able to find the source code of SimpleMovingAverage but wonder where i can find SMA function implementation?

Author