Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Dynamic Support and Resistance lines using HMA

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

    #16
    Hi Pat,

    Would you mind uploading your code as zip or .cs? I'm getting a syntax error.

    Code:
    if (HMA(period)[0]>HMA(period)[1])
    				int HH = Math.Max(High[0],HH);
    				Resistance.Set(Resistance[1]);
    			
    			if (HMA(period)[0]<HMA(period)[1])
    				int LL=Math.Min(Low[0],LL);
    				Support.Set(Support[1]);
    			
    			if (HMA(period)[0] <HMA(period)[1] && HMA(period)[1]>HMA(period)[2])
    				Resistance.Set(HH);
    				LL=Low[0];
    
    
    			if (HMA(period)[0]>HMA(period)[1] && HMA(period)[1]<HMA(period)[2])
    				Support.Set(LL);
    				HH=High[0];
    thanks

    Q

    Comment


      #17
      Try adding curly braces around the 2 statements after each if condition, like this...

      Code:
      if (condition)
      {
         statement1;
         statement2;
      }

      Comment


        #18
        Attached is what I made and algorithm doesn't seem correct. Hope someone can help.

        Thanks

        Q
        Attached Files

        Comment


          #19
          Missed two statements
          changed CurrentBar<3 to period
          Added Average Plot

          Hope this helps

          Pat
          Attached Files

          Comment

          Latest Posts

          Collapse

          Topics Statistics Last Post
          Started by CarlTrading, 03-31-2026, 09:41 PM
          1 response
          42 views
          0 likes
          Last Post NinjaTrader_ChelseaB  
          Started by CarlTrading, 04-01-2026, 02:41 AM
          0 responses
          20 views
          0 likes
          Last Post CarlTrading  
          Started by CaptainJack, 03-31-2026, 11:44 PM
          0 responses
          29 views
          1 like
          Last Post CaptainJack  
          Started by CarlTrading, 03-30-2026, 11:51 AM
          0 responses
          46 views
          0 likes
          Last Post CarlTrading  
          Started by CarlTrading, 03-30-2026, 11:48 AM
          0 responses
          38 views
          0 likes
          Last Post CarlTrading  
          Working...
          X