Coverage for django_napse/core/models/bots/plugins/mbp.py: 100%
15 statements
« prev ^ index » next coverage.py v7.4.3, created at 2024-03-12 13:49 +0000
« prev ^ index » next coverage.py v7.4.3, created at 2024-03-12 13:49 +0000
1from django_napse.core.models.bots.plugin import Plugin
2from django_napse.core.models.connections.connection import ConnectionSpecificArgs
3from django_napse.utils.constants import PLUGIN_CATEGORIES, SIDES
6class MBPPlugin(Plugin):
7 @classmethod
8 def plugin_category(cls):
9 return PLUGIN_CATEGORIES.POST_ORDER
11 def _apply(self, data: dict) -> dict:
12 order = data["order"]
13 if order["side"] == SIDES.BUY:
14 new_mbp = f"{order['controller'].base}|{order['price']}"
15 order["ConnectionModifications"] += [
16 {
17 "key": "mbp",
18 "value": new_mbp,
19 "target_type": "plugin_mbp",
20 "ignore_failed_order": False,
21 "connection_specific_arg": data["connection_data"][data["connection"]]["connection_specific_args"]["mbp"],
22 },
23 ]
24 return data
26 def _connect(self, connection):
27 ConnectionSpecificArgs.objects.create(connection=connection, key="mbp", value="None", target_type="float")