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 inanazsocial, Today, 01:15 AM
    1 response
    6 views
    0 likes
    Last Post NinjaTrader_Jason  
    Started by rocketman7, Today, 02:12 AM
    0 responses
    10 views
    0 likes
    Last Post rocketman7  
    Started by dustydbayer, Today, 01:59 AM
    0 responses
    2 views
    0 likes
    Last Post dustydbayer  
    Started by trilliantrader, 04-18-2024, 08:16 AM
    5 responses
    23 views
    0 likes
    Last Post trilliantrader  
    Started by Davidtowleii, Today, 12:15 AM
    0 responses
    3 views
    0 likes
    Last Post Davidtowleii  
    Working...
    X