Don't show all signals on strategy page

This commit is contained in:
2022-12-01 07:20:35 +00:00
parent baed991eca
commit 2ee5f7b937
3 changed files with 40 additions and 2 deletions

View File

@@ -0,0 +1,19 @@
# Generated by Django 4.1.3 on 2022-12-07 09:57
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('core', '0044_strategy_trends'),
]
operations = [
migrations.AddField(
model_name='hook',
name='type',
field=models.CharField(choices=[('entry', 'Entry'), ('exit', 'Exit'), ('trend', 'Trend')], default='entry', max_length=255),
preserve_default=False,
),
]