Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Issues with granularity

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

    Issues with granularity

    Hi,

    Once again, I'm having trouble comprehending granularity and Ninja's trade logic. Here's what I'm trying to do:

    1) If today's daily close is greater than yesterday's daily high a signal is generated.
    2) Submit a market order if intraday price trades above the signal bar's daily high.
    3) If filled maintain position until the market closes (daily) lower than the previous daily bars low.
    4) If condition #3 is violated submit market order.

    Here the logic I've written which obviously doesn't work:

    if(Close[0]>High[1] && BarsInProgress==0)
    {
    tradeSignal=true;
    }

    if(tradeSignal==true && BarsInProgress==1)
    {
    if(Closes[1][0]>Highs[0][0]) // trying to compare intraday price to previous day's high
    EnterLong();
    }

    if(Close[0]<Low[1] && BarsInProgress==0 && Position.MarketPosition==MarketPosition.Long)
    {
    ExitLong();
    }

    #2
    d.allen101,

    Austin will respond to you on your other thread posting this question. Thank you for your patience.
    Josh P.NinjaTrader Customer Service

    Comment

    Latest Posts

    Collapse

    Topics Statistics Last Post
    Started by CaptainJack, 05-29-2026, 05:09 AM
    0 responses
    307 views
    0 likes
    Last Post CaptainJack  
    Started by CaptainJack, 05-29-2026, 12:02 AM
    0 responses
    199 views
    0 likes
    Last Post CaptainJack  
    Started by charlesugo_1, 05-26-2026, 05:03 PM
    0 responses
    186 views
    1 like
    Last Post charlesugo_1  
    Started by DannyP96, 05-18-2026, 02:38 PM
    1 response
    275 views
    0 likes
    Last Post NinjaTrader_ChelseaB  
    Started by CarlTrading, 05-11-2026, 05:56 AM
    0 responses
    229 views
    0 likes
    Last Post CarlTrading  
    Working...
    X