Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

open positions

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

    open positions

    if i have a list of symbols i'm trading - ie eur.usd, usd.cad, gbp.usd, etc is it possible to set-up an if statement checking for open positions? ie if i only want to have 3 positions open at one time.

    private int OpenPositions = 3; // Default setting for open positions

    protected override void OnBarUpdate ()
    {
    if (
    Total open positions in the account <= OpenPositions
    && Condition1
    )
    {
    EnterLongLimit(0, GetCurrentAsk(), "LongEnty";
    }}

    #2
    Hi another trader,

    When it comes to positions in NinjaScript, this will depend on how many different symbols you have added to the script.

    The script will have 1 position per symbol. This position will have a quantity.

    To find the position quantity use:
    Position.Quantity

    http://www.ninjatrader.com/support/h...7/quantity.htm

    To find the number of Positions (number of symbols added to the script using the Add() call):
    Positions.Count
    Chelsea B.NinjaTrader Customer Service

    Comment

    Latest Posts

    Collapse

    Topics Statistics Last Post
    Started by argusthome, 03-08-2026, 10:06 AM
    0 responses
    58 views
    0 likes
    Last Post argusthome  
    Started by NabilKhattabi, 03-06-2026, 11:18 AM
    0 responses
    39 views
    0 likes
    Last Post NabilKhattabi  
    Started by Deep42, 03-06-2026, 12:28 AM
    0 responses
    19 views
    0 likes
    Last Post Deep42
    by Deep42
     
    Started by TheRealMorford, 03-05-2026, 06:15 PM
    0 responses
    21 views
    0 likes
    Last Post TheRealMorford  
    Started by Mindset, 02-28-2026, 06:16 AM
    0 responses
    51 views
    0 likes
    Last Post Mindset
    by Mindset
     
    Working...
    X