Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

HMA Colour Change Indicator

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

    HMA Colour Change Indicator

    Need help to add the following changes to Ninja Trader default indicator. "HMA Colour Change" as below:-

    (1) Show arrow, when change of colour.
    (2) Audio alert, When change of colour.

    Thank you,

    Sham

    #2
    shams, welcome to our forums here.

    You would want to work with the DrawArrowUp / Dn and Alert NinjaScript method here.




    A sample snippet implementing those techniques could be for example -

    Code:
    if (Value[0] > Value[1] && Value[1] < Value[2])
    {
    	DrawArrowUp("up" + CurrentBar, 0, Low[0] - TickSize, Color.Blue);
    	Alert("up", NinjaTrader.Cbi.Priority.High, "HMA DirChange Up", "Alert1.wav", 10, Color.Black, Color.Yellow);
    }

    Comment


      #3
      HMA Colour Change Indicator

      Hi, Bertrand,
      Thank you for your replyl.
      In fact I am looking for the help to add draw Arrow Up / Dn and alert in HMA Colour Change Indicator.
      Any help would be greatly appreciated.
      Thank you,
      Sham

      Comment


        #4
        shams, right that's what my reply geared at - those items would need to be added into the custom code to make those changes. Do you have perhaps a link to the custom indicator you want to use as base here? It would not be a NT default one.

        Thanks

        Comment


          #5
          shams.

          Attached is an indicator that draws an arrow and can play a sound file when an HMA changes direction. The code in it can perhaps be used by you to customize your own indicator.

          sandman
          Attached Files

          Comment

          Latest Posts

          Collapse

          Topics Statistics Last Post
          Started by Geovanny Suaza, 02-11-2026, 06:32 PM
          0 responses
          566 views
          0 likes
          Last Post Geovanny Suaza  
          Started by Geovanny Suaza, 02-11-2026, 05:51 PM
          0 responses
          330 views
          1 like
          Last Post Geovanny Suaza  
          Started by Mindset, 02-09-2026, 11:44 AM
          0 responses
          101 views
          0 likes
          Last Post Mindset
          by Mindset
           
          Started by Geovanny Suaza, 02-02-2026, 12:30 PM
          0 responses
          547 views
          1 like
          Last Post Geovanny Suaza  
          Started by RFrosty, 01-28-2026, 06:49 PM
          0 responses
          548 views
          1 like
          Last Post RFrosty
          by RFrosty
           
          Working...
          X