I am puzzled by how to calculate stochastic. This is the psuedocode I have:
stoch_fastK(list):
````{_, _, _, todaysClose} = list.first()
````low = min(list)
````high = max(list)
````((todayClose - low) / (high - low)) * 100
stoch(list, period, d, k):
````smoothK = for 1..k, 0, fun(kIteration...