refactor(ml): rename real_data_loader to data_loader

The real_ prefix was misleading — there is no fake data loader.
Mechanical rename across 18 source files, no logic changes.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
jgrusewski
2026-03-02 14:06:40 +01:00
parent 3d679e824f
commit 2fbb19d9df
18 changed files with 21 additions and 21 deletions

View File

@@ -4,7 +4,7 @@
//! Each rule implements the `ValidationRule` trait and can be composed
//! into a comprehensive validation pipeline.
use crate::real_data_loader::Indicators;
use crate::data_loader::Indicators;
use crate::types::OHLCVBar;
use anyhow::Result;

View File

@@ -5,7 +5,7 @@
use std::fmt::Write as _;
use super::rules::{Severity, ValidationError, ValidationRule};
use crate::real_data_loader::Indicators;
use crate::data_loader::Indicators;
use crate::types::OHLCVBar;
use anyhow::Result;
use std::sync::atomic::{AtomicUsize, Ordering};