Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Unmanaged Order not working

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    Unmanaged Order not working

    When I add the following line to this code my order doesn't get submitted. Why does this happen?
    Code:
    
    if (CrossAbove(Close,emaFast,1))  ///<---this section here
     {
                    if (longEntry == null)  
                    {                  
                            SubmitOrderUnmanaged(0, OrderAction.Buy, OrderType.Limit, 1, High[0]+2*TickSize,0, oco, "Long limit entry");
                    }
    }​
    If I simply remove it the order does submit fine.

    #2
    Hello r3n3v,

    If you add that condition and the order is not submitted that means the condition didn't become true. You would need to use prints to better understand what values the cross condition is seeing to get an idea of why that wasn't true.

    Comment

    Latest Posts

    Collapse

    Topics Statistics Last Post
    Started by CarlTrading, 05-11-2026, 05:56 AM
    0 responses
    53 views
    0 likes
    Last Post CarlTrading  
    Started by CarlTrading, 05-10-2026, 08:12 PM
    0 responses
    32 views
    0 likes
    Last Post CarlTrading  
    Started by Hwop38, 05-04-2026, 07:02 PM
    0 responses
    195 views
    0 likes
    Last Post Hwop38
    by Hwop38
     
    Started by CaptainJack, 04-24-2026, 11:07 PM
    0 responses
    358 views
    0 likes
    Last Post CaptainJack  
    Started by Mindset, 04-21-2026, 06:46 AM
    0 responses
    278 views
    0 likes
    Last Post Mindset
    by Mindset
     
    Working...
    X