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 wzgy0920, 04-20-2024, 06:09 PM
    2 responses
    27 views
    0 likes
    Last Post wzgy0920  
    Started by wzgy0920, 02-22-2024, 01:11 AM
    5 responses
    32 views
    0 likes
    Last Post wzgy0920  
    Started by wzgy0920, 04-23-2024, 09:53 PM
    2 responses
    74 views
    0 likes
    Last Post wzgy0920  
    Started by Kensonprib, 04-28-2021, 10:11 AM
    5 responses
    193 views
    0 likes
    Last Post Hasadafa  
    Started by GussJ, 03-04-2020, 03:11 PM
    11 responses
    3,235 views
    0 likes
    Last Post xiinteractive  
    Working...
    X