Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

CrossAbove & Pivot Point levels issue

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

    CrossAbove & Pivot Point levels issue

    I created a simple strategy. Go long when close crosses above(or below) Pivot Point R1 Level.
    But it does not seem to be working.
    I added a debug alert to see what value of R1 is coming up on OnBarUpdate. Everytime it seems to be zero.
    Pls see if this works better for you.
    Any help will be appreciated.

    protected override void OnBarUpdate()
    {
    // Condition set 1
    double R1val=MyPivots(PivotRange.Daily, HLCCalculationMode.CalcFromIntradayData, 0, 0, 0, 20).R1.Get(0);
    if(R1val>0){
    Alert("myBandAlert", NinjaTrader.Cbi.Priority.High, "Nonzero R1"+R1val,
    "Alert2.wav", 10, Color.Black, Color.Red);
    }
    if (CrossAbove(MyPivots(PivotRange.Daily, HLCCalculationMode.CalcFromIntradayData, 0, 0, 0, 20).R1, Close, 1))
    {
    EnterLongStopLimit(DefaultQuantity, 0, 0, "");
    }
    }

    #2
    Try the recommended syntax of:

    Code:
    double R1val=MyPivots(PivotRange.Daily, HLCCalculationMode.CalcFromIntradayData, 0, 0, 0, 20).R1[0];

    Comment

    Latest Posts

    Collapse

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