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

Ichimoku indicator

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

    Ichimoku indicator

    Does anyone know of an alert for Ichimoku. I am looking for an alert that we tell me when the Tenken and Kijun cross. Any suggestions?

    #2
    Hello TTC2010,

    The following link has an attached indicator pack that includes the “IchiLine3” indicator which will give you an alert when the Tenkan, and the Kijun either cross above or below 1 bar ago.


    If you wanted an alert for when they meet you would have to do some custom coding for that. For example inside the IchiLines3 indicator you could add:

    Code:
    protected override void OnBarUpdate()
    {
    (…)
    
    if (CrossBelow(TenkanSen, Kijunsen,1))
    	{Alert("Ichidown",NinjaTrader.Cbi.Priority.High,"IchiDown",soundbear,6,Color.Black,Color.Yellow);	}
    if(TenkanSen[0]==Kijunsen[0])
    {Alert("Ichiequal",NinjaTrader.Cbi.Priority.High,"IchiEqual","Alert1.wav",5,Color.Black,Color.Yellow);	}
    
    (…)
    }
    Please let me know if I can be of further assistance.
    Last edited by NinjaTrader_JC; 06-07-2012, 01:43 PM.
    JCNinjaTrader Customer Service

    Comment


      #3
      Is there information on how to interpret this indicator? It looks different from the other ichimoku charts I have used in the past.

      Comment


        #4
        Hello TTC2010,

        Since this is a custom indicator there would be no documentation on it. If you have experience coding or know NinjaScript you can view the source code by going to the Control Center -> Edit NinjaScript -> Indicators, and double left click on the indicator that you want to view like the IchiLine3.

        There are a number of other Indicators you can download on our Support Forums but if you want an alert when Tenkan and the Kijun are equal to each other that would require some custom code. If you do have experience coding I could give you some references if you like. Also here are a few other Ichimoku Indicators that you can download as well.


        http://www.ninjatrader.com/support/f...php?&linkid=84

        http://www.ninjatrader.com/support/f...hp?&linkid=455

        http://www.ninjatrader.com/support/f...php?&linkid=83

        http://www.ninjatrader.com/support/f...hp?&linkid=108

        Please let me know if I can be of further assistance.
        JCNinjaTrader Customer Service

        Comment

        Latest Posts

        Collapse

        Topics Statistics Last Post
        Started by Mindset, 05-06-2023, 09:03 PM
        10 responses
        262 views
        0 likes
        Last Post NinjaTrader_BrandonH  
        Started by michi08, 10-05-2018, 09:31 AM
        5 responses
        741 views
        0 likes
        Last Post NinjaTrader_ChelseaB  
        Started by The_Sec, Today, 02:29 PM
        0 responses
        2 views
        0 likes
        Last Post The_Sec
        by The_Sec
         
        Started by tsantospinto, 04-12-2024, 07:04 PM
        4 responses
        62 views
        0 likes
        Last Post aligator  
        Started by sightcareclickhere, Today, 01:55 PM
        0 responses
        1 view
        0 likes
        Last Post sightcareclickhere  
        Working...
        X