Announcement

Collapse
No announcement yet.

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.

    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 NullPointStrategies, Yesterday, 05:17 AM
      0 responses
      56 views
      0 likes
      Last Post NullPointStrategies  
      Started by argusthome, 03-08-2026, 10:06 AM
      0 responses
      132 views
      0 likes
      Last Post argusthome  
      Started by NabilKhattabi, 03-06-2026, 11:18 AM
      0 responses
      73 views
      0 likes
      Last Post NabilKhattabi  
      Started by Deep42, 03-06-2026, 12:28 AM
      0 responses
      45 views
      0 likes
      Last Post Deep42
      by Deep42
       
      Started by TheRealMorford, 03-05-2026, 06:15 PM
      0 responses
      49 views
      0 likes
      Last Post TheRealMorford  
      Working...
      X