Skip to content

Commit e3f9683

Browse files
committed
Fix is_above params
1 parent 2b35c99 commit e3f9683

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pyindicators/indicators/up_and_down_trends.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,8 +66,8 @@ def up_and_downtrends(
6666

6767
if is_above(
6868
selected_rows,
69-
fast_column="SMA_Close_50",
70-
slow_column="SMA_Close_200"
69+
first_column="SMA_Close_50",
70+
second_column="SMA_Close_200"
7171
):
7272
if current_trend != 'Up':
7373

0 commit comments

Comments
 (0)