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

Calling Entry and Exit Trade Logic

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

    Calling Entry and Exit Trade Logic

    My multi-timeframe trading strategy has over 250 lines of entry logic and 220 lines of exit logic. What's the typical code structure to organize the logic code so as to isolate entry and exit trade logic? ... so that...

    - entry logic is only calculated when flat, and
    - exit logic is calculated when long.

    Any examples? Do all the calculations need to be performed within the same Ninjatrader.strategy namespace or be limited to class "strategy"?

    #2
    Hello borland,

    Thank you for writing in.

    If you wish for specific logic to run only if your strategy is flat or long, you would want to check the Positions' MarketPosition property, where x would be the Bars index of the instrument:

    Code:
    // if the strategy is currently in a long position, execute this logic
    if (Positions[x].MarketPosition == MarketPosition.Long)
         // do stuff
    
    // if the strategy is currently in a flat, execute this logic
    if (Position[x].MarketPosition == MarketPosition.Flat)
         // do stuff


    You would want to keep these calculations within your strategy's class.
    Zachary G.NinjaTrader Customer Service

    Comment

    Latest Posts

    Collapse

    Topics Statistics Last Post
    Started by DJ888, 04-16-2024, 06:09 PM
    4 responses
    12 views
    0 likes
    Last Post DJ888
    by DJ888
     
    Started by terofs, Today, 04:18 PM
    0 responses
    7 views
    0 likes
    Last Post terofs
    by terofs
     
    Started by nandhumca, Today, 03:41 PM
    0 responses
    6 views
    0 likes
    Last Post nandhumca  
    Started by The_Sec, Today, 03:37 PM
    0 responses
    3 views
    0 likes
    Last Post The_Sec
    by The_Sec
     
    Started by GwFutures1988, Today, 02:48 PM
    1 response
    9 views
    0 likes
    Last Post NinjaTrader_Clayton  
    Working...
    X