Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Need to store Position.MarketPosition

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

    Need to store Position.MarketPosition

    Hello,

    I wanted to store Position.MarketPosition type when it has Long or Short into a variable with string defined but I get an error in programming. Is there a way to store a type into a variable?
    ...
    private string previousPosition;
    ...
    previousPosition = Position.MarketPosition;

    Thanks for your reply!
    -traderjh
    Last edited by traderjh; 05-07-2013, 01:10 PM. Reason: clarification

    #2
    Hello traderjh,

    Thanks for your note.

    To save the market position to a string try:
    Code:
    private string previousPosition;
    previousPosition = Position.MarketPosition.ToString();
    To save the market position as the market position object try:
    Code:
    private MarketPosition previousPosition;
    previousPosition = Position.MarketPosition;

    Please let me know if this does not resolve your inquiry.
    Chelsea B.NinjaTrader Customer Service

    Comment

    Latest Posts

    Collapse

    Topics Statistics Last Post
    Started by Geovanny Suaza, 02-11-2026, 06:32 PM
    0 responses
    563 views
    0 likes
    Last Post Geovanny Suaza  
    Started by Geovanny Suaza, 02-11-2026, 05:51 PM
    0 responses
    329 views
    1 like
    Last Post Geovanny Suaza  
    Started by Mindset, 02-09-2026, 11:44 AM
    0 responses
    101 views
    0 likes
    Last Post Mindset
    by Mindset
     
    Started by Geovanny Suaza, 02-02-2026, 12:30 PM
    0 responses
    547 views
    1 like
    Last Post Geovanny Suaza  
    Started by RFrosty, 01-28-2026, 06:49 PM
    0 responses
    548 views
    1 like
    Last Post RFrosty
    by RFrosty
     
    Working...
    X