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

Get Previous Trade signal Direction

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

    Get Previous Trade signal Direction

    Is there a possibility of knowing the last trade direction to act on subsequent trades? For example, if the last signal from an RSI was a buy, I only want the next initiate trade to be a sell even though there are buy signals until the sell signal presents itself.

    I see that there is Name method and OrderAction noted here: https://ninjatrader.com/support/helpGuides/nt8/en-us/

    but is there a way to keep track of previous OrderAction on initiate?
    Last edited by Boonfly8; 07-03-2018, 01:59 PM.

    #2
    Hello Boonfly8,

    Thanks for your post.

    There is not a direct way of detecting what a previous order's direction was without custom logic. For example, you could create a variable that you control that gets set whenever a new entry order is submitted.

    Code:
    EnterLong(); 
    LastDirection = 1;
    
    -OR-
    EnterShort();
    LastDirection = 2;
    You could also use Position.MarketPosition to determine where your strategies position is.

    Position.MarketPosition - https://ninjatrader.com/support/help...etposition.htm

    Please let us know if we can be of further assistance.
    JimNinjaTrader Customer Service

    Comment


      #3
      Hi Jim,

      thanks for the tip, I'll work on that and see!
      Last edited by Boonfly8; 07-03-2018, 03:04 PM.

      Comment

      Latest Posts

      Collapse

      Topics Statistics Last Post
      Started by fx.practic, 10-15-2013, 12:53 AM
      5 responses
      5,403 views
      0 likes
      Last Post Bidder
      by Bidder
       
      Started by Shai Samuel, 07-02-2022, 02:46 PM
      4 responses
      95 views
      0 likes
      Last Post Bidder
      by Bidder
       
      Started by DJ888, Yesterday, 10:57 PM
      0 responses
      7 views
      0 likes
      Last Post DJ888
      by DJ888
       
      Started by MacDad, 02-25-2024, 11:48 PM
      7 responses
      159 views
      0 likes
      Last Post loganjarosz123  
      Started by Belfortbucks, Yesterday, 09:29 PM
      0 responses
      8 views
      0 likes
      Last Post Belfortbucks  
      Working...
      X