At 15.59 Liquidate() is schedulled to close all the opening positions.
Which should be the right Insight to work with this Liquidate()?
I mean, which should be the right XXX?

    def ClosePositions(self):
        self.Liquidate()
        insight = Insight.Price(XXX,Expiry.EndOfDay, InsightDirection.Flat)
        self.EmitInsights(insight)

Author