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);
    BertrandNinjaTrader Customer Service

    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);
          BertrandNinjaTrader Customer Service

          Comment


            #6
            Thanks Again

            Thanks again...

            Comment

            Latest Posts

            Collapse

            Topics Statistics Last Post
            Started by pmachiraju, 11-01-2023, 04:46 AM
            8 responses
            148 views
            0 likes
            Last Post rehmans
            by rehmans
             
            Started by mattbsea, Today, 05:44 PM
            0 responses
            5 views
            0 likes
            Last Post mattbsea  
            Started by RideMe, 04-07-2024, 04:54 PM
            6 responses
            33 views
            0 likes
            Last Post RideMe
            by RideMe
             
            Started by tkaboris, Today, 05:13 PM
            0 responses
            5 views
            0 likes
            Last Post tkaboris  
            Started by GussJ, 03-04-2020, 03:11 PM
            16 responses
            3,283 views
            0 likes
            Last Post Leafcutter  
            Working...
            X