This document compares three anomaly detection methods: moving averages, mean absolute deviation (MAD), and DBSCAN. It provides examples of how each method can be used, discusses their advantages and disadvantages, and compares them on execution time, efficiency, and number of false alerts. Moving averages have high efficiency and fewer false alerts but do not work for volatile data. MAD has medium efficiency but can produce more false alerts and only works for normal distributions. DBSCAN has medium execution time and efficiency with an average number of false alerts, but does not work well for varying cluster densities or high dimensions.