Announcement

Collapse

Looking for a User App or Add-On built by the NinjaTrader community?

Visit NinjaTrader EcoSystem and our free User App Share!

Have a question for the NinjaScript developer community? Open a new thread in our NinjaScript File Sharing Discussion Forum!
See more
See less

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

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

        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 benmarkal, Yesterday, 12:52 PM
          3 responses
          23 views
          0 likes
          Last Post NinjaTrader_Gaby  
          Started by helpwanted, Today, 03:06 AM
          1 response
          18 views
          0 likes
          Last Post sarafuenonly123  
          Started by Brevo, Today, 01:45 AM
          0 responses
          11 views
          0 likes
          Last Post Brevo
          by Brevo
           
          Started by aussugardefender, Today, 01:07 AM
          0 responses
          7 views
          0 likes
          Last Post aussugardefender  
          Started by pvincent, 06-23-2022, 12:53 PM
          14 responses
          244 views
          0 likes
          Last Post Nyman
          by Nyman
           
          Working...
          X