File size: 883 Bytes
affac54
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
"""
Polymarket Ultra Bot 🤖
Un bot de trading ultra efficace pour Polymarket.

Stratégies implémentées (basées sur la recherche académique):
1. Arbitrage intra-marché — $40M de profit prouvé (arxiv:2508.03474)
2. Value Bet avec Kelly sizing — +17.6% CWR (arxiv:2604.14199)
3. Leader-Follower sémantique — 47.5% ROI mensuel (arxiv:2512.02436)
"""

from .bot import PolymarketBot
from .config import BotConfig
from .data import GammaClient, CLOBDataClient, Market
from .execution import ExecutionEngine
from .strategies import ArbitrageStrategy, ValueBetStrategy, LeaderFollowerStrategy
from .monitor import BotMonitor

__version__ = "1.0.0"
__all__ = [
    "PolymarketBot",
    "BotConfig",
    "GammaClient",
    "CLOBDataClient",
    "Market",
    "ExecutionEngine",
    "ArbitrageStrategy",
    "ValueBetStrategy",
    "LeaderFollowerStrategy",
    "BotMonitor",
]