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 Brevo, Today, 01:45 AM
            0 responses
            6 views
            0 likes
            Last Post Brevo
            by Brevo
             
            Started by aussugardefender, Today, 01:07 AM
            0 responses
            3 views
            0 likes
            Last Post aussugardefender  
            Started by pvincent, 06-23-2022, 12:53 PM
            14 responses
            242 views
            0 likes
            Last Post Nyman
            by Nyman
             
            Started by TraderG23, 12-08-2023, 07:56 AM
            9 responses
            384 views
            1 like
            Last Post Gavini
            by Gavini
             
            Started by oviejo, Today, 12:28 AM
            0 responses
            6 views
            0 likes
            Last Post oviejo
            by oviejo
             
            Working...
            X