Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Problem with "OR"

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

    Problem with "OR"

    Hello,

    when I add a condtion with "OR" (= "||") I get many entries in the script strategies. Everything works fine but when I add like herein this example some condtions with OR (in red color) then I have not 2 entries (limited with tradecounter) but 2011 entries. I do not understand what is wrong.

    if (tradecounterLP8 < maxtradesLP8
    && Position.MarketPosition == MarketPosition.Flat
    &&Rising(MACD(BarsArray[2],5, 20, 30).Avg) == true
    && Rising(Stochastics(BarsArray[5],7,14,3).D) == true|| Rising(Stochastics(BarsArray[4],7,14,3).D) == true|| Rising(Stochastics(BarsArray[3],7,14,3).D) == true
    && Close[1] < Open[1]
    && Close[0] > Open[0])


    Thank you
    Tony

    #2
    Hello tonynt,
    You should consolidate the OR logics as shown below.

    if (tradecounterLP8 < maxtradesLP8 && Position.MarketPosition == MarketPosition.Flat
    &&Rising(MACD(BarsArray[2],5, 20, 30).Avg) == true && (Rising(Stochastics(BarsArray[5],7,14,3).D) == true|| Rising(Stochastics(BarsArray[4],7,14,3).D) == true|| Rising(Stochastics(BarsArray[3],7,14,3).D) == true)
    && Close[1] < Open[1]
    && Close[0] > Open[0])

    Please let me know if I can assist you any further.
    JoydeepNinjaTrader Customer Service

    Comment


      #3
      Thank you!

      Originally posted by NinjaTrader_Joydeep View Post
      Hello tonynt,
      You should consolidate the OR logics as shown below.

      if (tradecounterLP8 < maxtradesLP8 && Position.MarketPosition == MarketPosition.Flat
      &&Rising(MACD(BarsArray[2],5, 20, 30).Avg) == true && (Rising(Stochastics(BarsArray[5],7,14,3).D) == true|| Rising(Stochastics(BarsArray[4],7,14,3).D) == true|| Rising(Stochastics(BarsArray[3],7,14,3).D) == true)
      && Close[1] < Open[1]
      && Close[0] > Open[0])

      Please let me know if I can assist you any further.

      Comment


        #4
        Hello tonynt,
        Glad you could solve the issue.
        Please let me know if I can assist you any further.
        JoydeepNinjaTrader Customer Service

        Comment

        Latest Posts

        Collapse

        Topics Statistics Last Post
        Started by benmarkal, Yesterday, 12:52 PM
        3 responses
        22 views
        0 likes
        Last Post NinjaTrader_Gaby  
        Started by helpwanted, Today, 03:06 AM
        1 response
        16 views
        0 likes
        Last Post sarafuenonly123  
        Started by Brevo, Today, 01:45 AM
        0 responses
        11 views
        0 likes
        Last Post Brevo
        by Brevo
         
        Started by aussugardefender, Today, 01:07 AM
        0 responses
        6 views
        0 likes
        Last Post aussugardefender  
        Started by pvincent, 06-23-2022, 12:53 PM
        14 responses
        244 views
        0 likes
        Last Post Nyman
        by Nyman
         
        Working...
        X