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 judysamnt7, 03-13-2023, 09:11 AM
          4 responses
          57 views
          0 likes
          Last Post DynamicTest  
          Started by ScottWalsh, Today, 06:52 PM
          4 responses
          36 views
          0 likes
          Last Post ScottWalsh  
          Started by olisav57, Today, 07:39 PM
          0 responses
          7 views
          0 likes
          Last Post olisav57  
          Started by trilliantrader, Today, 03:01 PM
          2 responses
          19 views
          0 likes
          Last Post helpwanted  
          Started by cre8able, Today, 07:24 PM
          0 responses
          9 views
          0 likes
          Last Post cre8able  
          Working...
          X