Announcement

Collapse

Looking for a User App or Add-On built by the NinjaTrader community?

Visit NinjaTrader EcoSystem and our free User App Share!

Have a question for the NinjaScript developer community? Open a new thread in our NinjaScript File Sharing Discussion Forum!
See more
See less

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 cls71, Today, 04:45 AM
    2 responses
    10 views
    0 likes
    Last Post eDanny
    by eDanny
     
    Started by proptrade13, Today, 11:06 AM
    0 responses
    2 views
    0 likes
    Last Post proptrade13  
    Started by kulwinder73, Today, 10:31 AM
    1 response
    10 views
    0 likes
    Last Post NinjaTrader_Erick  
    Started by RookieTrader, Today, 09:37 AM
    3 responses
    15 views
    0 likes
    Last Post NinjaTrader_ChelseaB  
    Started by terofs, Yesterday, 04:18 PM
    1 response
    24 views
    0 likes
    Last Post terofs
    by terofs
     
    Working...
    X