Merhaba aşağıdaki formülde " Error CS0019 > işleci 'Indicator' ve 'MOST' türündeki işlenenlere uygulanamaz" hatası alıyorum sorun nerede acaba?
Diğer sorum; Matriks Prime'da, işlem bir kez tetiklendiği için "cross" işlemi yerine >,< uygulamak daha uygundu, aynı durum IQ için de geçerli mi? Ben o yüzden IQ'da da >,< uygulamak istemiştim.
if (most.ExMOV > most)
{
SendMarketOrder(Symbol, BuyOrderQuantity, (OrderSide.Buy));
Debug("Alış emri verildi.");
Debug("Most.ExMov:" + most.ExMOV.CurrentValue);
Debug("Most:" + most.CurrentValue);
}
if (most.ExMOV < most)
{
SendMarketOrder(Symbol, SellOrderQuantity, (OrderSide.Sell));
Debug("Satış emri verildi.");
Debug("Most.ExMov:" + most.ExMOV.CurrentValue);
Debug("Most:" + most.CurrentValue);
}