While calculating a simple moving average is as simple as the following:
MAs = closes.rolling(window=MAsWin).mean()
I cannot really find out