Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Prevent trading into support or resistance

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

    Prevent trading into support or resistance

    I actually only want to filter out trades that would cross the support or resistance lines. Cant I use CrossAbove or CrossBelow for that?
    Last edited by rafe0304; 06-30-2016, 07:23 AM.

    #2
    Hello rafe0304, and thank you for your question.

    To prevent the managing order from SetProfitTarget from being submitted if its profit target would cross a price point, you could use code such as the following :

    Code:
    [FONT=Courier New]
    int profitTargetTicks = 5; // example
    double myResistanceLine = SMA(14); // example
    
    // this example assumes we enter on the long side of the market
    if(Close[0] + profitTargetTicks * TickSize > myResistanceLine)
    {
      return;
    }[/FONT]
    Please let us know if there are any other ways we can help.
    Jessica P.NinjaTrader Customer Service

    Comment


      #3
      Thanks, but that doesnt cover the cases were Close[0] is already below a resistance line. Cant I use CrossBelow for that ?

      Comment


        #4
        Hello rafe0304,

        Since CrossAbove and CrossBelow both have an overload in this form :

        CrossAbove(IDataSeries series1, double value, int lookBackPeriod)

        Provided you pass the price point that the profit target would be at as the value parameter, you can certainly use CrossAbove and CrossBelow to compare your price point to a data series. You will want to use your resistance line as the data series in this example.
        Jessica P.NinjaTrader Customer Service

        Comment

        Latest Posts

        Collapse

        Topics Statistics Last Post
        Started by Tim-c, Today, 03:54 AM
        0 responses
        3 views
        0 likes
        Last Post Tim-c
        by Tim-c
         
        Started by FrancisMorro, Today, 03:24 AM
        0 responses
        2 views
        0 likes
        Last Post FrancisMorro  
        Started by Segwin, 05-07-2018, 02:15 PM
        10 responses
        1,770 views
        0 likes
        Last Post Leafcutter  
        Started by Rapine Heihei, 04-23-2024, 07:51 PM
        2 responses
        31 views
        0 likes
        Last Post Max238
        by Max238
         
        Started by Shansen, 08-30-2019, 10:18 PM
        24 responses
        945 views
        0 likes
        Last Post spwizard  
        Working...
        X