Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

how to manage a portfolio

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

    how to manage a portfolio

    I will be loading into the "strategies" tab of the control panel.several strategies, each trading different instruments
    Question 1:
    Can these use the same ATM Strategy template
    Question 2
    Although there might be 10 instances of the strategy loaded, at any given moment I don't want more than 4 active positions even though some of the instances might have unfilled limit orders. What is a way to communicate to those instances having unfilled limit orders that those orders should be cancelled because my maximum number of orders has been reached.

    #2
    Hello roland_nt,

    Thank you for writing in.

    Yes, the strategies can all use the same Atm Strategy using AtmStrategyMethods.

    There is not a supported way for instances of strategies to communicate with each other.

    It is not supported to do so, but you can query the orders and positions with an account. Below is an unsupported tip to point you in the right direction.

    Code:
    foreach (Account acct in Cbi.Globals.Accounts)
    {
    if (acct.Positions != null)
    {
    // print information about each position
    PositionCollection positions = acct.Positions;
    foreach (Position pos in positions)
    {
    Print(pos.Account.Name + " " + pos.Instrument + " " + pos.MarketPosition + " " + pos.Quantity + " " + pos.AvgPrice);
    }
    // print information about each order
    OrderCollection orders = acct.Orders;
    foreach (Order ord in orders)
    {
    Print(ord.ToString());
    }
    }
    Last edited by NinjaTrader_ChelseaB; 06-28-2016, 07:08 AM.
    Chelsea B.NinjaTrader Customer Service

    Comment


      #3
      how to manage a portfolio

      Chelsea.
      Thanks ever so much for this tip.
      It is stuff I wasn't aware that was possible and you have indeed given me a great direction to follow.
      Thanks again.
      Roland

      Comment

      Latest Posts

      Collapse

      Topics Statistics Last Post
      Started by Geovanny Suaza, 02-11-2026, 06:32 PM
      0 responses
      650 views
      0 likes
      Last Post Geovanny Suaza  
      Started by Geovanny Suaza, 02-11-2026, 05:51 PM
      0 responses
      370 views
      1 like
      Last Post Geovanny Suaza  
      Started by Mindset, 02-09-2026, 11:44 AM
      0 responses
      109 views
      0 likes
      Last Post Mindset
      by Mindset
       
      Started by Geovanny Suaza, 02-02-2026, 12:30 PM
      0 responses
      574 views
      1 like
      Last Post Geovanny Suaza  
      Started by RFrosty, 01-28-2026, 06:49 PM
      0 responses
      577 views
      1 like
      Last Post RFrosty
      by RFrosty
       
      Working...
      X