Announcement

Collapse

Looking for a User App or Add-On built by the NinjaTrader community?

Visit NinjaTrader EcoSystem and our free User App Share!

Have a question for the NinjaScript developer community? Open a new thread in our NinjaScript File Sharing Discussion Forum!
See more
See less

Partner 728x90

Collapse

Change or calculate data within strategy builder

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

    Change or calculate data within strategy builder

    In using Strategy builder is it possible without resorting to programming outside of the builder to place an order X number of tics away from the highest bar in n bars based on other conditions ?? If my signal is activated can I place an order 4 tics above from the highest bar in the past 10 bars is what I am trying to say.

    Dean

    #2
    Hello deanidavis475,

    You could save the value of the highest high of x bars ago to a variable on each bar, and pass this price variable to a EnterLongLimit method, however adding the offset to this variable would not be possible in the editor.

    I will add a feature request to be able to add an offset to variables.

    You always could unlock the wizard and add this, which might look like.

    Code:
    	Xvar = HighestBar(Close, 10);
    	EnterLongLimit(Convert.ToInt32(DefaultQuantity), Xvar+[B]3*TickSize[/B], "");
    Please let us know if you need further assistance.
    Alan P.NinjaTrader Customer Service

    Comment


      #3
      Try this.
      2nd and 3rd screenshots show two different ways for same 4 ticks offset.

      On 2nd screenhot 0.04 meant 4 tick for CL: 4 * 0.01 = 0.04
      Attached Files
      Last edited by fx.practic; 08-21-2017, 08:44 AM.
      fx.practic
      NinjaTrader Ecosystem Vendor - fx.practic

      Comment

      Latest Posts

      Collapse

      Topics Statistics Last Post
      Started by Balage0922, Today, 07:38 AM
      0 responses
      1 view
      0 likes
      Last Post Balage0922  
      Started by JoMoon2024, Today, 06:56 AM
      0 responses
      6 views
      0 likes
      Last Post JoMoon2024  
      Started by Haiasi, 04-25-2024, 06:53 PM
      2 responses
      19 views
      0 likes
      Last Post Massinisa  
      Started by Creamers, Today, 05:32 AM
      0 responses
      6 views
      0 likes
      Last Post Creamers  
      Started by Segwin, 05-07-2018, 02:15 PM
      12 responses
      1,786 views
      0 likes
      Last Post Leafcutter  
      Working...
      X