Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
DefaultQuantity (what is the default, and where to set it)
Collapse
X
-
Thank you for your question jack1234. According to the documentation,
Originally posted by http://ninjatrader.com/support/helpGuides/nt8/en-us/?defaultquantity.htmAn int value represents the number of contracts or shares to enter a position with. Default value is 1.
The way to enter a lot is going to be provider and account dependent. You will need to contact them to see whether 1 means "one micro lot" or "one unit".
You can not set DefaultQuantity through the strategy wizard. The attached picture shows how to use quantities other than 1.Jessica P.NinjaTrader Customer Service
-
Since different brokerages are going to have different rules as far as how quantities are specified there is no way through the Strategy Builder to create a brokerage independent strategy. If you are willing to unlock your code, this snippet will help you differentiate between connections and will in turn allow you to hard code any brokerage dependent variables.
If you know that 600000 is 6 lots according to your broker you can simply change the value in the rightmost green circle to 600000.Code:[FONT=Courier New] // http://ninjatrader.com/support/helpGuides/nt8/en-us/connection_class.htm lock(Connection.Connections) { foreach(Connection c in Connection.Connections) { Print(c.Options.Provider.ToString()); } }[/FONT]Jessica P.NinjaTrader Customer Service
Comment
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by CarlTrading, 05-11-2026, 05:56 AM
|
0 responses
52 views
0 likes
|
Last Post
by CarlTrading
05-11-2026, 05:56 AM
|
||
|
Started by CarlTrading, 05-10-2026, 08:12 PM
|
0 responses
29 views
0 likes
|
Last Post
by CarlTrading
05-10-2026, 08:12 PM
|
||
|
Started by Hwop38, 05-04-2026, 07:02 PM
|
0 responses
194 views
0 likes
|
Last Post
by Hwop38
05-04-2026, 07:02 PM
|
||
|
Started by CaptainJack, 04-24-2026, 11:07 PM
|
0 responses
355 views
0 likes
|
Last Post
by CaptainJack
04-24-2026, 11:07 PM
|
||
|
Started by Mindset, 04-21-2026, 06:46 AM
|
0 responses
274 views
0 likes
|
Last Post
by Mindset
04-21-2026, 06:46 AM
|

Comment