Hi,

I have encountered some unavailable crypto tickers from Bitfinex even though they are listed in the documentation.

Here's the command in my research notebook to get all the errors:

  1. # QuantBook Analysis Tool
  2. # For more information see [https://www.quantconnect.com/docs/research/overview]
  3. qb = QuantBook()
  4. cryptos = [
  5. 'BTCUSD', 'LTCUSD', 'ETHUSD', 'ETCUSD', 'RRTUSD', 'ZECUSD',
  6. 'XMRUSD', 'DSHUSD', 'XRPUSD', 'IOTUSD', 'EOSUSD', 'SANUSD',
  7. 'OMGUSD', 'BCHUSD', 'NEOUSD', 'ETPUSD', 'QTMUSD', 'AVTUSD',
  8. 'EDOUSD', 'BTGUSD', 'DATUSD', 'QSHUSD', 'YYWUSD', 'GNTUSD',
  9. 'SNTUSD', 'BATUSD', 'MNAUSD', 'FUNUSD', 'ZRXUSD', 'TNBUSD',
  10. 'SPKUSD', 'TRXUSD', 'RCNUSD', 'RLCUSD', 'AIDUSD', 'SNGUSD',
  11. 'REPUSD', 'ELFUSD', 'IOSUSD', 'AIOUSD', 'REQUSD', 'RDNUSD',
  12. 'LRCUSD', 'WAXUSD', 'DAIUSD', 'CFIUSD', 'AGIUSD', 'BFTUSD',
  13. 'MTNUSD', 'ODEUSD', 'ANTUSD', 'DTHUSD', 'MITUSD', 'STJUSD',
  14. 'XLMUSD', 'XVGUSD', 'BCIUSD', 'MKRUSD', 'VENUSD', 'KNCUSD',
  15. 'POAUSD', 'LYMUSD', 'UTKUSD', 'VEEUSD', 'DADUSD', 'ORSUSD',
  16. 'AUCUSD', 'POYUSD', 'FSNUSD', 'CBTUSD', 'ZCNUSD', 'SENUSD',
  17. 'NCAUSD', 'CNDUSD', 'CTXUSD', 'PAIUSD', 'SEEUSD', 'ESSUSD',
  18. 'ATMUSD', 'HOTUSD', 'DTAUSD', 'IQXUSD', 'WPRUSD', 'ZILUSD',
  19. 'BNTUSD', 'ABSUSD', 'XRAUSD', 'MANUSD', 'BBNUSD', 'NIOUSD',
  20. 'DGXUSD', 'VETUSD', 'UTNUSD', 'TKNUSD', 'GOTUSD', 'XTZUSD',
  21. 'CNNUSD', 'BOXUSD', 'MGOUSD', 'RTEUSD', 'YGGUSD', 'MLNUSD',
  22. 'WTCUSD', 'CSXUSD', 'OMNUSD', 'INTUSD', 'DRNUSD', 'PNKUSD',
  23. 'DGBUSD', 'BSVUSD', 'BABUSD', 'WLOUSD', 'VLDUSD', 'ENJUSD',
  24. 'ONLUSD', 'RBTUSD', 'USTUSD', 'EUTUSD', 'GSDUSD', 'UDCUSD',
  25. 'TSDUSD', 'PAXUSD', 'RIFUSD', 'PASUSD', 'VSYUSD',
  26. ]
  27. coins = []
  28. errors = []
  29. for c in cryptos:
  30. try:
  31. coins.append(qb.AddCrypto(c, Resolution.Hour, Market.Bitfinex))
  32. except ArgumentException as ae:
  33. errors.append(str(ae).split('\n')[0])
  34. errors
+ Expand

The full list of errors are as below:

  1. ["Symbol can't be found in the Symbol Properties Database: DSHUSD",
  2. "Symbol can't be found in the Symbol Properties Database: IOTUSD",
  3. "Symbol can't be found in the Symbol Properties Database: QTMUSD",
  4. "Symbol can't be found in the Symbol Properties Database: EDOUSD",
  5. "Symbol can't be found in the Symbol Properties Database: DATUSD",
  6. "Symbol can't be found in the Symbol Properties Database: QSHUSD",
  7. "Symbol can't be found in the Symbol Properties Database: YYWUSD",
  8. "Symbol can't be found in the Symbol Properties Database: MNAUSD",
  9. "Symbol can't be found in the Symbol Properties Database: SPKUSD",
  10. "Symbol can't be found in the Symbol Properties Database: SNGUSD",
  11. "Symbol can't be found in the Symbol Properties Database: REPUSD",
  12. "Symbol can't be found in the Symbol Properties Database: IOSUSD",
  13. "Symbol can't be found in the Symbol Properties Database: AIOUSD",
  14. "Symbol can't be found in the Symbol Properties Database: CFIUSD",
  15. "Symbol can't be found in the Symbol Properties Database: MITUSD",
  16. "Symbol can't be found in the Symbol Properties Database: STJUSD",
  17. "Symbol can't be found in the Symbol Properties Database: BCIUSD",
  18. "Symbol can't be found in the Symbol Properties Database: VENUSD",
  19. "Symbol can't be found in the Symbol Properties Database: DADUSD",
  20. "Symbol can't be found in the Symbol Properties Database: POYUSD",
  21. "Symbol can't be found in the Symbol Properties Database: SENUSD",
  22. "Symbol can't be found in the Symbol Properties Database: NCAUSD",
  23. "Symbol can't be found in the Symbol Properties Database: CTXUSD",
  24. "Symbol can't be found in the Symbol Properties Database: ABSUSD",
  25. "Symbol can't be found in the Symbol Properties Database: BBNUSD",
  26. "Symbol can't be found in the Symbol Properties Database: NIOUSD",
  27. "Symbol can't be found in the Symbol Properties Database: UTNUSD",
  28. "Symbol can't be found in the Symbol Properties Database: YGGUSD",
  29. "Symbol can't be found in the Symbol Properties Database: CSXUSD",
  30. "Symbol can't be found in the Symbol Properties Database: OMNUSD",
  31. "Symbol can't be found in the Symbol Properties Database: INTUSD",
  32. "Symbol can't be found in the Symbol Properties Database: DRNUSD",
  33. "Symbol can't be found in the Symbol Properties Database: BABUSD",
  34. "Symbol can't be found in the Symbol Properties Database: WLOUSD",
  35. "Symbol can't be found in the Symbol Properties Database: RBTUSD",
  36. "Symbol can't be found in the Symbol Properties Database: USTUSD",
  37. "Symbol can't be found in the Symbol Properties Database: EUTUSD",
  38. "Symbol can't be found in the Symbol Properties Database: GSDUSD",
  39. "Symbol can't be found in the Symbol Properties Database: UDCUSD",
  40. "Symbol can't be found in the Symbol Properties Database: TSDUSD",
  41. "Symbol can't be found in the Symbol Properties Database: PASUSD",
  42. "Symbol can't be found in the Symbol Properties Database: VSYUSD"]
+ Expand

Any suggestions on why I am getting these errors even though I am strictly using the pairs listed in the documentation?

Author

Tim Huang

July 2021