- Django 5.2.7 project with Python 3.13+ - Quant strategy management system with version control - Strategy implementations using registry pattern - API endpoints for strategy listing and execution - Sample strategy implementations (MovingAverage, RSI, BollingerBand) - Async strategy execution with status tracking 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
9 lines
432 B
Python
9 lines
432 B
Python
from django.urls import path
|
|
from . import views
|
|
|
|
urlpatterns = [
|
|
path('strategies/', views.list_strategies, name='list_strategies'),
|
|
path('strategies/execute/', views.execute_strategy, name='execute_strategy'),
|
|
path('strategies/implementations/', views.list_available_implementations, name='list_available_implementations'),
|
|
path('executions/<int:execution_id>/', views.execution_status, name='execution_status'),
|
|
] |