feat(currencies): add TwelveData and TwelveDataMarkets as providers

This commit is contained in:
Herculino Trotta
2025-08-17 03:21:55 -03:00
parent c3a403b8f0
commit 3c85da46b0
5 changed files with 274 additions and 0 deletions

View File

@@ -100,6 +100,8 @@ class ExchangeRateService(models.Model):
COINGECKO_PRO = "coingecko_pro", "CoinGecko (Pro)"
TRANSITIVE = "transitive", "Transitive (Calculated from Existing Rates)"
FRANKFURTER = "frankfurter", "Frankfurter"
TWELVEDATA = "twelvedata", "TwelveData"
TWELVEDATA_MARKETS = "twelvedatamarkets", "TwelveData Markets"
class IntervalType(models.TextChoices):
ON = "on", _("On")