Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Previous price on "On Price Change" strategy

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

    Previous price on "On Price Change" strategy

    A buy order will be executed when the following is met

    The current price (Close[0]) is 1 tick higher than the previous closed bar's high (High[1])
    +
    the previous price (Close[??]) was equal to the previous bar's high (High[1]).

    How do I point to the previous price change since Close[1] would point to the previous bar, not the previous price change?

    Thanks!

    #2
    Hello Ousher, thanks for writing in.

    You can keep track of the last changed price by saving the last price at the end of OnBarUpdate e.g:

    Code:
    private double lastPrice = -1;
    protected override void OnBarUpdate()
    {
    Print("lastPrice " + lastPrice);
    Print("Close[0] " + Close[0]);
    Print("");
    
    if(Close[0] != lastPrice)
    lastPrice = Close[0];
    }
    Best regards,
    -ChrisL

    Comment

    Latest Posts

    Collapse

    Topics Statistics Last Post
    Started by CarlTrading, 03-31-2026, 09:41 PM
    1 response
    45 views
    0 likes
    Last Post NinjaTrader_ChelseaB  
    Started by CarlTrading, 04-01-2026, 02:41 AM
    0 responses
    21 views
    0 likes
    Last Post CarlTrading  
    Started by CaptainJack, 03-31-2026, 11:44 PM
    0 responses
    31 views
    1 like
    Last Post CaptainJack  
    Started by CarlTrading, 03-30-2026, 11:51 AM
    0 responses
    50 views
    0 likes
    Last Post CarlTrading  
    Started by CarlTrading, 03-30-2026, 11:48 AM
    0 responses
    42 views
    0 likes
    Last Post CarlTrading  
    Working...
    X