Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Strategy enters trade instantly upon execution

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

    Strategy enters trade instantly upon execution

    When I run my strategy, it immediately enters a trade ("Order Pending"), even before the bars and drawing objects appear. It's clearly making calculations based on something from many bars back, as the conditions specified are not within required ranges at the time the strategy is run.

    Is there a way to code the order entry code so that it only looks forward instead of backwards?

    Code:
    	        if ( (Position.MarketPosition == MarketPosition.Flat)   ) 
    			{	EnterLong(1); 
    				SetProfitTarget(CalculationMode.Ticks, 6); 
                                    SetStopLoss(CalculationMode.Ticks, 8);  
    			}
    Thanks in advance,
    Gary

    #2
    Hello,

    If you would like to "omit" the historical trades or make the strategy realtime only, you could add the following line to the top of the OnBarUpdate override:

    Code:
    if(Historical) return;
    This simply returns if the bar is historical which would prevent any logic before real time.

    I look forward to being of further assistance.
    JesseNinjaTrader Customer Service

    Comment

    Latest Posts

    Collapse

    Topics Statistics Last Post
    Started by usazencort, Today, 01:16 AM
    0 responses
    1 view
    0 likes
    Last Post usazencort  
    Started by kaywai, 09-01-2023, 08:44 PM
    5 responses
    603 views
    0 likes
    Last Post NinjaTrader_Jason  
    Started by xiinteractive, 04-09-2024, 08:08 AM
    6 responses
    22 views
    0 likes
    Last Post xiinteractive  
    Started by Pattontje, Yesterday, 02:10 PM
    2 responses
    21 views
    0 likes
    Last Post Pattontje  
    Started by flybuzz, 04-21-2024, 04:07 PM
    17 responses
    230 views
    0 likes
    Last Post TradingLoss  
    Working...
    X