Weighted Moving Average (WMA) January 24, 2021 The Weighted Moving Average (WMA) is a smoothing calculation which like the Exponential Moving Average (EMA) applies greater weighting to more recient data but unlike the EMA is not cumulative. Read More
Clear RAM (Garbage Collection) in Python January 1, 2021 Clear RAM usage at run time in Python with this function and optionally print the remining RAM usage. Helpful when executing code in loops… Read More
Sharpe Ratio (SR) November 16, 2020 SR helps you understand the returns of a strategy/portfolio in relation to the risks taken to gain these returns. Read More
Exponential Moving Average (EMA) November 8, 2020 The Exponential Moving Average (EMA) is a cumulative smoothing calculation which applies greater weighting to more recient data within the period. Read More
Simple Moving Average (SMA) October 17, 2020 The Simple Moving Average (SMA) is a smoothing calculation helpful with identifying trends in timeseries data. Read More