refactor: 프로젝트명 bithumb으로 변경 및 futures 파이프라인 제거

deepcoin 패키지를 bithumb으로 rename하고, 3단계 live 운영·사이징 튜닝·텔레그램 알림을 통합한다.

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
dsyoon
2026-06-13 17:47:11 +09:00
parent 4890abd9a6
commit c3334e4f77
129 changed files with 1846 additions and 1642 deletions

View File

@@ -13,16 +13,16 @@ SRC = ROOT / "src"
if str(SRC) not in sys.path:
sys.path.insert(0, str(SRC))
from deepcoin.config import load_settings
from deepcoin.evaluation.mtf_report import (
from bithumb.config import load_settings
from bithumb.evaluation.mtf_report import (
build_mtf_correlation_report,
render_mtf_html,
save_mtf_report,
)
from deepcoin.mtf.extractor import MtfFeatureExtractor
from deepcoin.mtf.rules import derive_rules_from_report, save_mtf_rules
from deepcoin.mtf.store import MultiTimeframeStore
from deepcoin.techniques.runner import load_ground_truth
from bithumb.mtf.extractor import MtfFeatureExtractor
from bithumb.mtf.rules import derive_rules_from_report, save_mtf_rules
from bithumb.mtf.store import MultiTimeframeStore
from bithumb.techniques.runner import load_ground_truth
def _configure_logging(verbose: bool) -> None: