[ A tough one ] Check if there’s an active trade

Created at 24 Apr 2024, 07:15
How’s your experience with the cTrader Platform?
Your feedback is crucial to cTrader's development. Please take a few seconds to share your opinion and help us improve your trading experience. Thanks!
MA

mashazona

Joined 21.04.2024

[ A tough one ] Check if there’s an active trade
24 Apr 2024, 07:15


can someone help me to fix my code please ? i want it to check if the any of my stop orders have been activated if yes, then delete the other order that is not active but it just skips the checking part and delete both of my orders
 

var buyOrder = PlaceStopOrder(TradeType.Buy, SymbolName, 1, highestHigh, "Buy Position", SL, TP, null, "", false);

var sellOrder = PlaceStopOrder(TradeType.Sell, SymbolName, 1, lowestLow, "Sell Position", SL, TP, null, "", false);

                   

        {

                    if (buyOrder != null || sellOrder != null)   

                    {  

               


 

                foreach(var order in PendingOrders)

                {

                    order.Cancel();

                }  

}


@mashazona
Replies

PanagiotisCharalampous
25 Apr 2024, 05:53

Hi there,

If you are checking if the orders have been filled, you should use the PendingOrders.Filled event instead. You should cancel the remaining orders only when the order is filled.

Best regards,

Panagiotis


@PanagiotisCharalampous

mashazona
25 Apr 2024, 16:11 ( Updated at: 26 Apr 2024, 05:55 )

RE: [ A tough one ] Check if there’s an active trade

PanagiotisCharalampous said: 

Hi there,

If you are checking if the orders have been filled, you should use the PendingOrders.Filled event instead. You should cancel the remaining orders only when the order is filled.

Best regards,

Panagiotis

I’ve figured it out alread, now I have a different problem, do you have an idea how to write a code to check if a trade hits TP ? 


@mashazona

PanagiotisCharalampous
26 Apr 2024, 06:10

RE: RE: [ A tough one ] Check if there’s an active trade

mashazona said: 

PanagiotisCharalampous said: 

Hi there,

If you are checking if the orders have been filled, you should use the PendingOrders.Filled event instead. You should cancel the remaining orders only when the order is filled.

Best regards,

Panagiotis

I’ve figured it out alread, now I have a different problem, do you have an idea how to write a code to check if a trade hits TP ? 

See an example of how to achieve this in the link below

https://help.ctrader.com/ctrader-automate/references/Trading/Positions/PositionCloseReason/#namespace


@PanagiotisCharalampous