commit 60b0e01a014a55f6b3609188b5e7102c447f3e81 Author: 21in7 Date: Sun Mar 1 12:48:03 2026 +0900 chore: 프로젝트 초기 설정 및 의존성 추가 Made-with: Cursor diff --git a/.env.example b/.env.example new file mode 100644 index 0000000..4ba3f68 --- /dev/null +++ b/.env.example @@ -0,0 +1,7 @@ +BINANCE_API_KEY= +BINANCE_API_SECRET= +SYMBOL=XRPUSDT +LEVERAGE=10 +RISK_PER_TRADE=0.02 +NOTION_TOKEN= +NOTION_DATABASE_ID= diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..fdd9e57 --- /dev/null +++ b/.gitignore @@ -0,0 +1,8 @@ +.env +__pycache__/ +*.pyc +.pytest_cache/ +logs/ +*.log +.venv/ +venv/ diff --git a/requirements.txt b/requirements.txt new file mode 100644 index 0000000..1be4d38 --- /dev/null +++ b/requirements.txt @@ -0,0 +1,10 @@ +python-binance==1.0.19 +pandas>=2.2.0 +pandas-ta==0.4.71b0 +python-dotenv==1.0.0 +notion-client==2.2.1 +pytest>=8.1.0 +pytest-asyncio>=0.24.0 +aiohttp==3.9.3 +websockets==12.0 +loguru==0.7.2 diff --git a/src/__init__.py b/src/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/tests/__init__.py b/tests/__init__.py new file mode 100644 index 0000000..e69de29