hello community, 

im trying to figure out how to get a real atr trailing stop in multiverse

                    

 

# Get current ATR

current_atr = self.atr_dictionary[symbol].Current.Value
if close < (close - (current_atr * self.stop_multiplier)):

self.Liquidate(symbol, "STOP LOSS ATR LONG")

 

this seems not to work as it will not execute the order

 

any help how to solve this is greatly appreciated.

 

thank you