Compare commits

..
Author SHA1 Message Date
google-labs-jules[bot]andmaghdam 2f4e62ba57 Add tests for calculate_future_returns and handle empty cases
Added new unit tests in `tests/features/test_labeling_schemes.py` to cover `calculate_future_returns`. The tests verify normal behavior for multiple horizons, handling cases where the dataframe is smaller than the horizon without crashing, and handling missing required columns. Also cleaned up binary `__pycache__` artifacts from `features/`.

Co-authored-by: maghdam <63883156+maghdam@users.noreply.github.com>
2026-03-11 18:34:51 +00:00
9 changed files with 53 additions and 67 deletions
Binary file not shown.
Binary file not shown.
Binary file not shown.
+53
View File
@@ -0,0 +1,53 @@
import pytest
import pandas as pd
import numpy as np
from features.labeling_schemes import calculate_future_returns
def test_calculate_future_returns_happy_path():
# Setup data
data = {"close": [100.0, 105.0, 102.0, 110.0, 115.0]}
df = pd.DataFrame(data)
# Test horizon 1
result_h1 = calculate_future_returns(df.copy(), horizon=1)
# Expected:
# idx 0: (105 - 100) / 100 = 0.05
# idx 1: (102 - 105) / 105 = -0.028571
# idx 2: (110 - 102) / 102 = 0.078431
# idx 3: (115 - 110) / 110 = 0.045455
# idx 4: NaN
assert len(result_h1) == 4
np.testing.assert_allclose(result_h1["future_returns"].iloc[0], 0.05, atol=1e-5)
np.testing.assert_allclose(result_h1["future_returns"].iloc[1], -0.028571, atol=1e-5)
# Test horizon 2
result_h2 = calculate_future_returns(df.copy(), horizon=2)
# idx 0: (102 - 100) / 100 = 0.02
# idx 1: (110 - 105) / 105 = 0.047619
# idx 2: (115 - 102) / 102 = 0.127451
# idx 3: NaN
# idx 4: NaN
assert len(result_h2) == 3
np.testing.assert_allclose(result_h2["future_returns"].iloc[0], 0.02, atol=1e-5)
np.testing.assert_allclose(result_h2["future_returns"].iloc[1], 0.047619, atol=1e-5)
np.testing.assert_allclose(result_h2["future_returns"].iloc[2], 0.127451, atol=1e-5)
def test_calculate_future_returns_tiny_df():
# Rationale: Testing with a tiny DataFrame length < horizon to see if it correctly returns empty or handles it gracefully.
data = {"close": [100.0, 105.0]}
df = pd.DataFrame(data)
# Test horizon 5 where df length is 2
result = calculate_future_returns(df.copy(), horizon=5)
# Should return empty DataFrame gracefully
assert result.empty
assert "future_returns" in result.columns
def test_calculate_future_returns_missing_close_column():
data = {"open": [100.0, 105.0, 102.0]}
df = pd.DataFrame(data)
with pytest.raises(KeyError):
calculate_future_returns(df.copy(), horizon=1)
-67
View File
@@ -1,67 +0,0 @@
import pandas as pd
import numpy as np
import pytest
from features.labeling_schemes import create_labels_multi_bar
def test_create_labels_multi_bar():
"""
Test create_labels_multi_bar correctly assigns labels based on future returns.
"""
# Create a simple dummy dataframe
# We want future returns over horizon=2 to be:
# index 0: (10.5 / 10.0) - 1 = 0.05 (should be +1, since >= 0.05 is not met if threshold=0.06, wait let's use exact)
df = pd.DataFrame({
"close": [100.0, 100.0, 105.0, 95.0, 100.0, 100.0]
})
# Let's set horizon=2, threshold=0.04
# future returns for horizon=2:
# i=0: (105.0 - 100.0)/100.0 = 0.05 => >= 0.04 => 1
# i=1: (95.0 - 100.0)/100.0 = -0.05 => <= -0.04 => -1
# i=2: (100.0 - 105.0)/105.0 = -0.0476 => <= -0.04 => -1
# i=3: (100.0 - 95.0)/95.0 = 0.0526 => >= 0.04 => 1
# i=4: NaN
# i=5: NaN
labeled_df = create_labels_multi_bar(df, horizon=2, threshold=0.04)
# Check that df wasn't modified in place
assert "multi_bar_label" not in df.columns
# Ensure correct columns exist in result
assert "future_return_h" in labeled_df.columns
assert "multi_bar_label" in labeled_df.columns
# Since the original drops NaN, it should have 4 rows
assert len(labeled_df) == 4
# Check calculated future returns roughly match expected
expected_returns = [0.05, -0.05, -0.047619047619047616, 0.052631578947368474]
np.testing.assert_allclose(labeled_df["future_return_h"].values, expected_returns, rtol=1e-5)
# Check assigned labels
expected_labels = [1, -1, -1, 1]
np.testing.assert_array_equal(labeled_df["multi_bar_label"].values, expected_labels)
def test_create_labels_multi_bar_neutral():
"""
Test create_labels_multi_bar handles neutral labels correctly (returns inside threshold).
"""
df = pd.DataFrame({
"close": [100.0, 101.0, 102.0, 99.0, 100.0]
})
# Let's set horizon=1, threshold=0.02
# future returns for horizon=1:
# i=0: (101 - 100)/100 = 0.01 (neutral -> 0)
# i=1: (102 - 101)/101 = 0.0099 (neutral -> 0)
# i=2: (99 - 102)/102 = -0.0294 (down -> -1)
# i=3: (100 - 99)/99 = 0.0101 (neutral -> 0)
labeled_df = create_labels_multi_bar(df, horizon=1, threshold=0.02)
assert len(labeled_df) == 4
expected_labels = [0, 0, -1, 0]
np.testing.assert_array_equal(labeled_df["multi_bar_label"].values, expected_labels)