Begin work on increasing position size

This commit is contained in:
2023-02-28 07:20:12 +00:00
parent 5843000df6
commit b4424a7782
4 changed files with 33 additions and 0 deletions

View File

@@ -80,6 +80,14 @@ ADJUST_CLOSE_NOTIFY_CHOICES = (
("adjust", "Adjust violating trades"),
)
ADJUST_WITH_DIRECTION_CHOICES = (
("none", "None"),
("close", "Close violating trades"),
("notify", "Notify only"),
("adjust", "Increase and reduce"),
("adjust_up", "Increase only"),
("adjust_down", "Reduce only"),
)
# class Plan(models.Model):
# name = models.CharField(max_length=255, unique=True)