if holdings > 0 and self.Securities["TWTR"].Price > 1% ABOVE PURCHASE PRICE:
self.Log("SELL >> {0}".format(self.Securities["TWTR"].Price))
self.Liquidate("TWTR")
I'm not very good at coding, so simple is better :)
I'll normally have a Moving Average after my last > Greater Than sign. How do I sell for a higher percentage price? Thanks!