Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Query. Support request.

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

    Query. Support request.

    Hi,

    How do I use a "condition set" in a formula? (See below.) Lets say I want the Plot0.Set to give me a numeric "1" when the ChaikinMoneyFlow(21)[0] > 0 and to give me a numeric "0" when ChaikinMoneyFlow(21)[0] < 0 .
    Thanks...

    // Condition set 1

    if (ChaikinMoneyFlow(21)[0] > 0)
    {
    Variable0 = 1;
    }

    // Use this method for calculating your indicator values. Assign a value to each
    // plot below by replacing 'Close[0]' with your own formula.

    double pc = HMA ( Close , LongTerm ) [0];
    double pr = SMA ( Close , ShortTerm ) [0];
    Plot0.Set(pc - pr);

    #2
    Shawn, you could do somthing like this to assing the plotted binary values then -

    Code:
     
    if (ChaikinMoneyFlow(Close, 10)[0] > 0)
    Plot0.Set(1);
    
    if (ChaikinMoneyFlow(Close, 10)[0] < 0)
    Plot0.Set(0);

    Comment


      #3
      reply

      Thanks. I'll try it out...

      Comment


        #4
        How do i use multiple indicators?

        How do i use multiple indicators? Is this the right formula?

        if (ATR (Close, 10)[0] > 5)
        if (MFI (Close, 10)[0] > 12)
        if (ChaikinMoneyFlow(Close, 10)[0] > 0)
        Plot0.Set(1);

        Thanks Bertrand...

        Comment


          #5
          No, please work with -

          Code:
          if (ATR (Close, 10)[0] > 5 && MFI (Close, 10)[0] > 12 && ChaikinMoneyFlow(Close, 10)[0] > 0)
          Plot0.Set(1);

          Comment


            #6
            Thanks Again

            Thanks again...

            Comment

            Latest Posts

            Collapse

            Topics Statistics Last Post
            Started by CarlTrading, 03-31-2026, 09:41 PM
            1 response
            66 views
            0 likes
            Last Post NinjaTrader_ChelseaB  
            Started by CarlTrading, 04-01-2026, 02:41 AM
            0 responses
            36 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
            52 views
            0 likes
            Last Post CarlTrading  
            Working...
            X