Merhaba,
Aşağıdaki gibi olan cross'lu stratejimizi < ve > olarak nasıl yazabiliriz?
Sadece aşağıdaki kısımları değiştirmek yeterli midir?
if (CrossAbove(mov, ott))
{
SendMarketOrder(Symbol, BuyOrderQuantity, (OrderSide.Buy));
Debug("Alış emri verildi.");
Debug("OTT_SupportLine:" + mov.CurrentValue);
Debug("OTTLine:" + ott.ottLine.CurrentValue);
}
if (CrossBelow(mov, ott))
{
SendMarketOrder(Symbol, SellOrderQuantity, (OrderSide.Sell));
Debug("Satış emri verildi.");
Debug("OTT_SupportLine:" + mov.CurrentValue);
Debug("OTTLine:" + ott.ottLine.CurrentValue);