Coverage for tests/django_tests/db/bots/test_strategies/test_turbo_dca.py: 100%
14 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 datetime import timedelta
2from typing import ClassVar
4from django_napse.core.models import Controller, TurboDCAStrategy
5from django_napse.utils.model_test_case import ModelTestCase
6from tests.django_tests.db.bots.test_strategy import StrategyDefaultTestCase
8"""
9python tests/test_app/manage.py test tests.django_tests.bots.test_strategies.test_turbo_dca -v2 --keepdb --parallel
10"""
13class TurboDCATestCase(StrategyDefaultTestCase):
14 model = TurboDCAStrategy
15 config_settings: ClassVar = {"timeframe": timedelta(days=1), "percentage": 1}
17 @property
18 def architecture_constants(self):
19 return {
20 "controller": Controller.get(
21 exchange_account=self.exchange_account,
22 base="BTC",
23 quote="USDT",
24 interval="1d",
25 ),
26 }
29class TurboDCABINANCETestCase(TurboDCATestCase, ModelTestCase):
30 exchange = "BINANCE"