Add package init
Browse files- polymarket_bot/__init__.py +30 -0
polymarket_bot/__init__.py
ADDED
|
@@ -0,0 +1,30 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
"""
|
| 2 |
+
Polymarket Ultra Bot 🤖
|
| 3 |
+
Un bot de trading ultra efficace pour Polymarket.
|
| 4 |
+
|
| 5 |
+
Stratégies implémentées (basées sur la recherche académique):
|
| 6 |
+
1. Arbitrage intra-marché — $40M de profit prouvé (arxiv:2508.03474)
|
| 7 |
+
2. Value Bet avec Kelly sizing — +17.6% CWR (arxiv:2604.14199)
|
| 8 |
+
3. Leader-Follower sémantique — 47.5% ROI mensuel (arxiv:2512.02436)
|
| 9 |
+
"""
|
| 10 |
+
|
| 11 |
+
from .bot import PolymarketBot
|
| 12 |
+
from .config import BotConfig
|
| 13 |
+
from .data import GammaClient, CLOBDataClient, Market
|
| 14 |
+
from .execution import ExecutionEngine
|
| 15 |
+
from .strategies import ArbitrageStrategy, ValueBetStrategy, LeaderFollowerStrategy
|
| 16 |
+
from .monitor import BotMonitor
|
| 17 |
+
|
| 18 |
+
__version__ = "1.0.0"
|
| 19 |
+
__all__ = [
|
| 20 |
+
"PolymarketBot",
|
| 21 |
+
"BotConfig",
|
| 22 |
+
"GammaClient",
|
| 23 |
+
"CLOBDataClient",
|
| 24 |
+
"Market",
|
| 25 |
+
"ExecutionEngine",
|
| 26 |
+
"ArbitrageStrategy",
|
| 27 |
+
"ValueBetStrategy",
|
| 28 |
+
"LeaderFollowerStrategy",
|
| 29 |
+
"BotMonitor",
|
| 30 |
+
]
|