Skip to content

Commit e0ee60d

Browse files
committed
Fix completeness check
1 parent 717fe0d commit e0ee60d

File tree

1 file changed

+1
-1
lines changed
  • investing_algorithm_framework/app

1 file changed

+1
-1
lines changed

investing_algorithm_framework/app/app.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -857,7 +857,7 @@ def check_data_completeness(
857857
required_start_date,
858858
backtest_date_range.end_date
859859
)
860-
if number_of_available_data_points > 0:
860+
if len(missing_dates) > 0:
861861
missing_data_info[data_source.identifier] = {
862862
"data_source_id": data_source.identifier,
863863
"completeness_percentage": (

0 commit comments

Comments
 (0)