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 cmtjoancolmenero, Yesterday, 03:58 PM
    11 responses
    41 views
    0 likes
    Last Post cmtjoancolmenero  
    Started by FrazMann, Today, 11:21 AM
    0 responses
    5 views
    0 likes
    Last Post FrazMann  
    Started by geddyisodin, Yesterday, 05:20 AM
    8 responses
    52 views
    0 likes
    Last Post NinjaTrader_Gaby  
    Started by DayTradingDEMON, Today, 09:28 AM
    4 responses
    27 views
    0 likes
    Last Post DayTradingDEMON  
    Started by George21, Today, 10:07 AM
    1 response
    22 views
    0 likes
    Last Post NinjaTrader_ChristopherJ  
    Working...
    X