Is there any function available to get AdanceDeclineRatio for all tradable US stocks  ? If function is not available, Is below method is correct implementation ?

 

  1. # Selecting the universe. This example uses CoarseSelectionFunction for simplicity
  2. self.UniverseSettings.Resolution = Resolution.Daily
  3. self.AddUniverse(self.CoarseSelectionFunction)
  4. self.yesterdayPrices = {}
  5. def CoarseSelectionFunction(self, coarse):
  6. # Filtering criteria can be adjusted as needed
  7. filtered = [c.Symbol for c in coarse if c.Price > 10 and c.DollarVolume > 10000000]
  8. return filtered
  9. def OnData(self, data):
  10. advancers = 0
  11. decliners = 0
  12. for symbol in self.yesterdayPrices:
  13. if symbol in data and data[symbol] is not None:
  14. today_price = data[symbol].Close
  15. yesterday_price = self.yesterdayPrices[symbol]
  16. if today_price > yesterday_price:
  17. advancers += 1
  18. elif today_price < yesterday_price:
  19. decliners += 1
  20. # Calculate and log the difference
  21. difference = advancers - decliners
  22. self.Log(f"Advance-Decline Difference: {difference}")
  23. # Update yesterday's prices
  24. for symbol in data.Keys:
  25. self.yesterdayPrices[symbol] = data[symbol].Close
+ Expand

 

Author

Dharmesh Khalasi

January 2024