Note that publishing copyrighted material is strictly prohibited. If you believe there is copyrighted material in this section, please use the Copyright Infringement Notification form to submit a claim.
// I need help here
bool close_buy = standart_ema.Result.LastValue > fast_ema.Result.LastValue;
bool close_sell = standart_ema.Result.LastValue < fast_ema.Result.LastValue;
var buy_position = Positions.Find("order_buy", SymbolName, TradeType.Buy);
var sell_position = Positions.Find("order_sell", SymbolName, TradeType.Sell);
if...