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 bmartz, 03-12-2024, 06:12 AM
        5 responses
        33 views
        0 likes
        Last Post NinjaTrader_Zachary  
        Started by Aviram Y, Today, 05:29 AM
        4 responses
        13 views
        0 likes
        Last Post Aviram Y  
        Started by algospoke, 04-17-2024, 06:40 PM
        3 responses
        28 views
        0 likes
        Last Post NinjaTrader_Jesse  
        Started by gentlebenthebear, Today, 01:30 AM
        1 response
        8 views
        0 likes
        Last Post NinjaTrader_Jesse  
        Started by cls71, Today, 04:45 AM
        1 response
        8 views
        0 likes
        Last Post NinjaTrader_ChelseaB  
        Working...
        X