Coverage for tests/django_tests/db/bots/test_strategies/test_dca.py: 100%

14 statements  

« prev     ^ index     » next       coverage.py v7.4.3, created at 2024-03-12 13:49 +0000

1from datetime import timedelta 

2from typing import ClassVar 

3 

4from django_napse.core.models import Controller, DCAStrategy 

5from django_napse.utils.model_test_case import ModelTestCase 

6from tests.django_tests.db.bots.test_strategy import StrategyDefaultTestCase 

7 

8""" 

9python tests/test_app/manage.py test tests.django_tests.bots.test_strategies.test_dca -v2 --keepdb --parallel 

10""" 

11 

12 

13class DCATestCase(StrategyDefaultTestCase): 

14 model = DCAStrategy 

15 config_settings: ClassVar = {"timeframe": timedelta(days=1)} 

16 

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 } 

27 

28 

29class DCABINANCETestCase(DCATestCase, ModelTestCase): 

30 exchange = "BINANCE"