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

Addon Positions Orders and lock

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

    Addon Positions Orders and lock

    Hello,
    In my application/Addon I am checking on Positions for the Account and the orders on the account too. In the Help pages the example of iterating over Positions :
    it uses the lock statement

    lock (Account.Positions)
    {

    }

    whereas the example of the Orders in help does not

    I am iterating over these with the foreach and wondered if it was recommended to use the lock if i am just 'read only' of these values to get a current snapshot? In what instance would the lock be recommended ie if attempt to update Position information during a read.

    Will this cause any issue (not using lock or using lock) as my strategy/addon runs which will then update position / order information?

    thanks

    #2
    Hello, soulfx.

    Thanks for the post.

    The locks are used to prevent access violation exceptions/in-flight changes to the property. It is recommended to use locks wherever possible to prevent these violations since you might have other strategies that access the Accounts class. The issues that could arise from not using locks would be the inability to read the data. So using a lock on Account's properties being read would be the best way to prevent errors, even though some examples do not use locks.

    More information about these multithreading considerations can be found here:


    Please let us know if we may be of any further assistance.
    Chris L.NinjaTrader Customer Service

    Comment

    Latest Posts

    Collapse

    Topics Statistics Last Post
    Started by cre8able, Today, 01:01 PM
    1 response
    4 views
    0 likes
    Last Post NinjaTrader_ChelseaB  
    Started by manitshah915, Today, 12:59 PM
    1 response
    3 views
    0 likes
    Last Post NinjaTrader_Erick  
    Started by ursavent, Today, 12:54 PM
    1 response
    4 views
    0 likes
    Last Post NinjaTrader_Jesse  
    Started by Mizzouman1, Today, 07:35 AM
    3 responses
    17 views
    0 likes
    Last Post NinjaTrader_Gaby  
    Started by RubenCazorla, Today, 09:07 AM
    2 responses
    13 views
    0 likes
    Last Post NinjaTrader_ChelseaB  
    Working...
    X