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 funk10101, Today, 09:43 PM
          0 responses
          3 views
          0 likes
          Last Post funk10101  
          Started by pkefal, 04-11-2024, 07:39 AM
          11 responses
          36 views
          0 likes
          Last Post jeronymite  
          Started by bill2023, Yesterday, 08:51 AM
          8 responses
          44 views
          0 likes
          Last Post bill2023  
          Started by yertle, Today, 08:38 AM
          6 responses
          26 views
          0 likes
          Last Post ryjoga
          by ryjoga
           
          Started by algospoke, Yesterday, 06:40 PM
          2 responses
          24 views
          0 likes
          Last Post algospoke  
          Working...
          X