You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
1.3 KiB
34 lines
1.3 KiB
from django.db import models |
|
|
|
class RobotInstance(models.Model): |
|
instanceId = models.CharField(max_length=255) |
|
|
|
class Trade(models.Model): |
|
account = models.CharField(max_length=256) |
|
security = models.CharField(max_length=256) |
|
price = models.DecimalField(max_digits=20, decimal_places=10) |
|
quantity = models.IntegerField() |
|
volume = models.DecimalField(max_digits=25, decimal_places=10) |
|
volumeCurrency = models.CharField(max_length=10) |
|
strategyId = models.CharField(max_length=64) |
|
signalId = models.CharField(max_length=64) |
|
comment = models.CharField(max_length=256) |
|
timestamp = models.DateTimeField() |
|
commission = models.DecimalField(max_digits=20, decimal_places=10, default=0) |
|
balanced = models.BooleanField(default=False) |
|
|
|
class ClosedTrade(models.Model): |
|
LONG = 'long' |
|
SHORT = 'short' |
|
DIRECTION_CHOICES = ( |
|
(LONG, 'long'), |
|
(SHORT, 'short') |
|
) |
|
account = models.CharField(max_length=256) |
|
security = models.CharField(max_length=256) |
|
entryTime = models.DateTimeField() |
|
exitTime = models.DateTimeField() |
|
profit = models.DecimalField(max_digits=25, decimal_places=10) |
|
profitCurrency = models.CharField(max_length=10) |
|
strategyId = models.CharField(max_length=64) |
|
direction = models.CharField(max_length=10, choices=DIRECTION_CHOICES)
|
|
|