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 argusthome, 03-08-2026, 10:06 AM
            0 responses
            77 views
            0 likes
            Last Post argusthome  
            Started by NabilKhattabi, 03-06-2026, 11:18 AM
            0 responses
            45 views
            0 likes
            Last Post NabilKhattabi  
            Started by Deep42, 03-06-2026, 12:28 AM
            0 responses
            27 views
            0 likes
            Last Post Deep42
            by Deep42
             
            Started by TheRealMorford, 03-05-2026, 06:15 PM
            0 responses
            32 views
            0 likes
            Last Post TheRealMorford  
            Started by Mindset, 02-28-2026, 06:16 AM
            0 responses
            63 views
            0 likes
            Last Post Mindset
            by Mindset
             
            Working...
            X