Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
Ichimoku indicator
Collapse
X
-
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:
Please let me know if I can be of further assistance.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); } (…) }Last edited by NinjaTrader_JC; 06-07-2012, 01:43 PM.JCNinjaTrader Customer Service
-
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 charlesugo_1, 05-26-2026, 05:03 PM
|
0 responses
61 views
0 likes
|
Last Post
by charlesugo_1
05-26-2026, 05:03 PM
|
||
|
Started by DannyP96, 05-18-2026, 02:38 PM
|
1 response
149 views
0 likes
|
Last Post
|
||
|
Started by CarlTrading, 05-11-2026, 05:56 AM
|
0 responses
162 views
0 likes
|
Last Post
by CarlTrading
05-11-2026, 05:56 AM
|
||
|
Started by CarlTrading, 05-10-2026, 08:12 PM
|
0 responses
99 views
0 likes
|
Last Post
by CarlTrading
05-10-2026, 08:12 PM
|
||
|
Started by Hwop38, 05-04-2026, 07:02 PM
|
0 responses
286 views
0 likes
|
Last Post
by Hwop38
05-04-2026, 07:02 PM
|

Comment