You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Add parameter to z-score filter functions so that the filter may capture not only price spikes, but also price declines.
For example in the implementation of the z_score_filter, there is a sign bug : the filter only filters occurences where the price is above the threshold (condition formula should be abs(price-mean) > thresstd instead of price > mean + thresstd
The text was updated successfully, but these errors were encountered:
Add parameter to z-score filter functions so that the filter may capture not only price spikes, but also price declines.
For example in the implementation of the z_score_filter, there is a sign bug : the filter only filters occurences where the price is above the threshold (condition formula should be abs(price-mean) > thresstd instead of price > mean + thresstd
The text was updated successfully, but these errors were encountered: