We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The following algorithm is logging TON, KAS and MNT as the coins with the biggest market cap whereas it should probably be BTC, ETH, LTH:
# region imports from AlgorithmImports import * # endregion class CreativeTanKoala(QCAlgorithm): def initialize(self): self.set_start_date(2024,3,4) self.add_universe(CoinGeckoUniverse, self.universe_selection) def universe_selection(self, data: List[CoinGeckoUniverse]) -> List[Symbol]: selected = sorted(data, key=lambda x: x.market_cap, reverse=True)[:3] for datum in selected: self.debug(f'{self.time} :: {datum.coin},{datum.market_cap},{datum.price}') return Universe.UNCHANGED
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The following algorithm is logging TON, KAS and MNT as the coins with the biggest market cap whereas it should probably be BTC, ETH, LTH:
The text was updated successfully, but these errors were encountered: