python-bot-standards
Installation
SKILL.md
Python Coding Standards
Modular Architecture
The backend is modularized into packages:
src.trading.orders: Order management (limit, market, batch, positions).src.data.market_data: Data fetching (polymarket, binance, indicators, price validation).src.trading: Centralized execution logic (execution.py,logic.py,strategy.py).src.trading.position_manager: Position lifecycle management (entry, exit, scale-in, stop-loss, reconciliation).
Standard Trade Execution
from src.trading import execute_trade
# Execute a trade with full tracking and notifications
trade_id = execute_trade(trade_params, is_reversal=False)
Related skills
More from niller2005/polyflup
polymarket-trading
Polymarket-specific terminology, trading strategies, and API reference.
129database-sqlite
SQLite best practices, connection management, and migration system for PolyFlup.
19bookkeeper
Specialized in maintaining project documentation, ensuring it reflects the current state of the codebase and operational procedures.
13polyflup-ops
Operational commands, environment configuration, and deployment for PolyFlup.
13database-analyzer
Specialized in syncing the production database and performing analysis on trades, balances, and market history.
13svelte-ui-standards
Coding standards and UI guidelines for the PolyFlup Svelte dashboard.
13