Hey, I'm trying to trade using velocity/acceleration principles. 

I thought a good place to start would be by creating a momentum indicator into another, but for the life of me, I can't seem to do it.

Would anyone give me a hand please?

 
  1.  
  2. I've tried this
  3.  
  4. ```
  5. self.spyVelocity = self.MOMP("SPY", 10, Resolution.Minute)
  6.  
  7. self.spyAcceleration = self.MOMP(10, Resolution.Minute)
  8. self.RegisterIndicator(self.spyVelocity, self.spyAcceleration, Resolution.Minute)
  9. ```
  10.  
  11. as well as this
  12.  
  13. ```
  14. self.spyVelocity = self.MOMP("SPY", 10, Resolution.Minute)
  15. self.spyAcceleration = IndicatorExtensions.Of(self.MOMP, self.spyVelocity)
  16. ```