Implement closing positions and refuse to post rejected trades

This commit is contained in:
2022-12-01 20:36:58 +00:00
parent 5c2eeae043
commit 66a18a6406
3 changed files with 34 additions and 2 deletions

View File

@@ -0,0 +1,18 @@
# Generated by Django 4.1.3 on 2022-12-01 19:42
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('core', '0041_alter_strategy_entry_signals_and_more'),
]
operations = [
migrations.AddField(
model_name='trade',
name='information',
field=models.JSONField(blank=True, null=True),
),
]