Is there a way to implement trailing stop functionality through .NET code?

kailashbisht
Hi,
I want to first place an order with a Buy/Sell limit. Once it it placed I want trailing stop so that I can exit the trade based on my condition.
Is there a way to implement in .NET?
  • trade_then
    trade_then edited July 2020
    • Place StopLoss Order
    • as your calculation for trailing the price indicates keep pushing modify order by providing the order id of the previously set stop loss order with new stop loss or trigger price.
    • modify order

    you can track order id via for complicated or many scrip, order firing, you can use Tag to uniquely identify your order , for particular scrip for particular logic.

    Thanks
    Regards
  • kailashbisht
    Thank you trade_then. I was also thinking of "keep modifying my open order" till it get squarred off. Thank you for telling me about "Tag" functionality. I will definetly explore more on it.
Sign In or Register to comment.