Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
Straregy Analyzer Order Quantity
Collapse
X
-
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.Tags: None
-
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:
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.Code:EnterLong(1); SetStopLoss(CalculationMode.Price, Close[0]-(Account.Get(AccountItem.CashValue, Currency.UsDollar)*0.0001));
Please let me know if I can assist further.
-
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by NullPointStrategies, Today, 05:17 AM
|
0 responses
20 views
0 likes
|
Last Post
|
||
|
Started by argusthome, 03-08-2026, 10:06 AM
|
0 responses
119 views
0 likes
|
Last Post
by argusthome
03-08-2026, 10:06 AM
|
||
|
Started by NabilKhattabi, 03-06-2026, 11:18 AM
|
0 responses
63 views
0 likes
|
Last Post
|
||
|
Started by Deep42, 03-06-2026, 12:28 AM
|
0 responses
41 views
0 likes
|
Last Post
by Deep42
03-06-2026, 12:28 AM
|
||
|
Started by TheRealMorford, 03-05-2026, 06:15 PM
|
0 responses
45 views
0 likes
|
Last Post
|

Comment