From 60b0e01a014a55f6b3609188b5e7102c447f3e81 Mon Sep 17 00:00:00 2001 From: 21in7 Date: Sun, 1 Mar 2026 12:48:03 +0900 Subject: [PATCH] =?UTF-8?q?chore:=20=ED=94=84=EB=A1=9C=EC=A0=9D=ED=8A=B8?= =?UTF-8?q?=20=EC=B4=88=EA=B8=B0=20=EC=84=A4=EC=A0=95=20=EB=B0=8F=20?= =?UTF-8?q?=EC=9D=98=EC=A1=B4=EC=84=B1=20=EC=B6=94=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Made-with: Cursor --- .env.example | 7 +++++++ .gitignore | 8 ++++++++ requirements.txt | 10 ++++++++++ src/__init__.py | 0 tests/__init__.py | 0 5 files changed, 25 insertions(+) create mode 100644 .env.example create mode 100644 .gitignore create mode 100644 requirements.txt create mode 100644 src/__init__.py create mode 100644 tests/__init__.py 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