Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

How to adjust Strategy entered targets/stops

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

    How to adjust Strategy entered targets/stops

    I'm creating my first strategy and have targets and stops included. However, I want to be able to modify the targets and stops during real-time trading. When I adjust them, they go back to the settings the strategy initially set them at once the current bar closes. How do I have the strategy enter the target and stop, but then allow me to change them on the DOM?
    Code:
    protected override void Initialize()
            {
                
    			SetProfitTarget("ShortEntry", CalculationMode.Ticks, target);
                SetProfitTarget("LongEntry", CalculationMode.Ticks, target);
    			SetStopLoss(stoploss, false);
    		
    			
                CalculateOnBarClose = true;
    			
    			EntryHandling = EntryHandling.AllEntries; 
            }
    
            /// <summary>
            /// Called on each bar update event (incoming tick)
            /// </summary>
            protected override void OnBarUpdate()
            {
    if (Close[0]==High[0])
    				  	
                	{
                    	EnterLong(1, "LongEntry");
    				
    					
               		}

    #2
    Tdschultz,

    Unfortunately this isn't possible without using the ATM approach.

    For more information, please see the following link : http://www.ninjatrader.com/support/h...strategies.htm

    There is a sample strategy that uses the ATM approach that comes default with NinjaTrader, it is located in Tools > Edit NinjaScript > Strategy > SampleATMStrategy

    Please let me know if I may assist further.
    Adam P.NinjaTrader Customer Service

    Comment

    Latest Posts

    Collapse

    Topics Statistics Last Post
    Started by DJ888, 04-16-2024, 06:09 PM
    6 responses
    18 views
    0 likes
    Last Post DJ888
    by DJ888
     
    Started by Jon17, Today, 04:33 PM
    0 responses
    1 view
    0 likes
    Last Post Jon17
    by Jon17
     
    Started by Javierw.ok, Today, 04:12 PM
    0 responses
    6 views
    0 likes
    Last Post Javierw.ok  
    Started by timmbbo, Today, 08:59 AM
    2 responses
    10 views
    0 likes
    Last Post bltdavid  
    Started by alifarahani, Today, 09:40 AM
    6 responses
    41 views
    0 likes
    Last Post alifarahani  
    Working...
    X