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 trilliantrader, 04-10-2024, 09:33 PM
    6 responses
    23 views
    0 likes
    Last Post trilliantrader  
    Started by traderqz, Today, 12:06 AM
    5 responses
    10 views
    0 likes
    Last Post NinjaTrader_Gaby  
    Started by Mongo, Today, 11:05 AM
    2 responses
    9 views
    0 likes
    Last Post Mongo
    by Mongo
     
    Started by guillembm, Today, 11:25 AM
    0 responses
    3 views
    0 likes
    Last Post guillembm  
    Started by Tim-c, Today, 10:58 AM
    1 response
    3 views
    0 likes
    Last Post NinjaTrader_Jesse  
    Working...
    X