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

Straregy Analyzer Order Quantity

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

    Straregy Analyzer Order Quantity

    If the Order Quantity is left to 'strategy' what quantity will the Analyzer automatically assume? And is there any way to set the stop level and position size to risk a predetermined percentage of account size. I ask this all in reference to the Builder.

    #2
    Hello demo166130,

    Thanks for the note.

    When Order Quantity is set to "Strategy', the quantity that you define in your strategy will be used, for example, EnterLong(2). If you set Order Quantity to Default Quantity, you can specify a quantity to use through the Strategy Analyzer instead of the quantity in the code.

    You could not set a dynamic stop based on the account size through the strategy builder. The code would need to be unlocked to set this up. Below is a brief example of setting a stop loss of 0.01% of the active account:

    Code:
    EnterLong(1);
    SetStopLoss(CalculationMode.Price, Close[0]-(Account.Get(AccountItem.CashValue, Currency.UsDollar)*0.0001));
    Below is a public reference sample strategy that utilizes SetStopLoss and also modifies the price of a StopLoss. It could prove useful just to see the structure of a strategy that uses stops and targets.



    Please let me know if I can assist further.
    Chris L.NinjaTrader Customer Service

    Comment


      #3
      As always, thankyou and perhaps some further questions will follow.

      Regards,

      Alex

      Comment

      Latest Posts

      Collapse

      Topics Statistics Last Post
      Started by Stanfillirenfro, Yesterday, 09:19 AM
      7 responses
      51 views
      0 likes
      Last Post NinjaTrader_Gaby  
      Started by TraderCro, 04-12-2024, 11:36 AM
      4 responses
      70 views
      0 likes
      Last Post Mindset
      by Mindset
       
      Started by Mindset, Yesterday, 02:04 AM
      1 response
      15 views
      0 likes
      Last Post Mindset
      by Mindset
       
      Started by agclub, 04-21-2024, 08:57 PM
      4 responses
      18 views
      0 likes
      Last Post NinjaTrader_Gaby  
      Started by Irukandji, Today, 04:58 AM
      0 responses
      6 views
      0 likes
      Last Post Irukandji  
      Working...
      X