diff --git a/strategies/two_period_rsi.py b/strategies/two_period_rsi.py index a55a3b4..06c644d 100644 --- a/strategies/two_period_rsi.py +++ b/strategies/two_period_rsi.py @@ -32,4 +32,4 @@ def signals(data: DataFrame) -> Series: rsi_2 = calculate_rsi(data) conditions = (data['Close'] > ma_200) & (rsi_2 < 5) - return Series(np.where(conditions, 'Long', 'None'), index = data.index) \ No newline at end of file + return Series(np.where(conditions, 'L', 'N'), index = data.index) \ No newline at end of file