from AlgorithmImports import *
class Rlstrategy(QCAlgorithm):
    def initialize(self):
    rmmodel = ["MaximumDrawdownPercentPerSecurity,MaximumDrawdownPercentPortfolio"]
    for rmm in in rmmodel:
    	self.set_risk_management(self.load_module(risk_managemnet))

 

can I use multiple risk management simultaneously?
like defined in the code example. I have done this but it works for last one only, is there any way to that.