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 cre8able, Yesterday, 01:16 PM
      3 responses
      11 views
      0 likes
      Last Post cre8able  
      Started by ChartTourist, Today, 08:22 AM
      0 responses
      6 views
      0 likes
      Last Post ChartTourist  
      Started by LiamTwine, Today, 08:10 AM
      0 responses
      2 views
      0 likes
      Last Post LiamTwine  
      Started by Balage0922, Today, 07:38 AM
      0 responses
      5 views
      0 likes
      Last Post Balage0922  
      Started by JoMoon2024, Today, 06:56 AM
      0 responses
      6 views
      0 likes
      Last Post JoMoon2024  
      Working...
      X