Add all the A tasks
This commit is contained in:
parent
2dd7375f96
commit
051504d65b
1608 changed files with 18584 additions and 0 deletions
|
|
@ -0,0 +1,17 @@
|
|||
from collections import deque
|
||||
|
||||
def simplemovingaverage(period):
|
||||
assert period == int(period) and period > 0, "Period must be an integer >0"
|
||||
|
||||
summ = n = 0.0
|
||||
values = deque([0.0] * period) # old value queue
|
||||
|
||||
def sma(x):
|
||||
nonlocal summ, n
|
||||
|
||||
values.append(x)
|
||||
summ += x - values.popleft()
|
||||
n = min(n+1, period)
|
||||
return summ / n
|
||||
|
||||
return sma
|
||||
Loading…
Add table
Add a link
Reference in a new issue