diff options
author | luxagraf <sng@luxagraf.net> | 2021-08-17 20:25:33 -0400 |
---|---|---|
committer | luxagraf <sng@luxagraf.net> | 2021-08-17 20:25:33 -0400 |
commit | 9a4c84cdcfcc33308e1092ad2464a81c29b84eb2 (patch) | |
tree | 10b3940747945d3937c06a12fbc9d86b2a59717e /app/trading/migrations/0016_alter_luxoptionstrade_pl.py | |
parent | c3907cd3e61161a264ab0daf6b26262a40876393 (diff) |
trad: fixed all the profit loss calcs for puts
Diffstat (limited to 'app/trading/migrations/0016_alter_luxoptionstrade_pl.py')
-rw-r--r-- | app/trading/migrations/0016_alter_luxoptionstrade_pl.py | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/app/trading/migrations/0016_alter_luxoptionstrade_pl.py b/app/trading/migrations/0016_alter_luxoptionstrade_pl.py new file mode 100644 index 0000000..4ee6523 --- /dev/null +++ b/app/trading/migrations/0016_alter_luxoptionstrade_pl.py @@ -0,0 +1,18 @@ +# Generated by Django 3.2.5 on 2021-08-15 18:55 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('trading', '0015_auto_20210727_1141'), + ] + + operations = [ + migrations.AlterField( + model_name='luxoptionstrade', + name='pl', + field=models.FloatField(blank=True, null=True), + ), + ] |