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

@@ -14,10 +14,10 @@ SRC = ROOT / "src"
if str(SRC) not in sys.path:
sys.path.insert(0, str(SRC))
from deepcoin.config import load_settings
from deepcoin.data.candle_loader import load_candles
from deepcoin.data.intervals import interval_label
from deepcoin.evaluation.causal_sim import (
from bithumb.config import load_settings
from bithumb.data.candle_loader import load_candles
from bithumb.data.intervals import interval_label
from bithumb.evaluation.causal_sim import (
best_technique_chart_path,
build_causal_sim_report,
pick_best_technique_row,
@@ -28,7 +28,7 @@ from deepcoin.evaluation.causal_sim import (
save_causal_sim_report,
technique_sim_chart_path,
)
from deepcoin.techniques.runner import load_ground_truth, load_technique_results
from bithumb.techniques.runner import load_ground_truth, load_technique_results
def _configure_logging(verbose: bool) -> None: