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 sjsj2732, Yesterday, 04:31 AM
|
0 responses
33 views
0 likes
|
Last Post
by sjsj2732
Yesterday, 04:31 AM
|
||
|
Started by NullPointStrategies, 03-13-2026, 05:17 AM
|
0 responses
286 views
0 likes
|
Last Post
|
||
|
Started by argusthome, 03-08-2026, 10:06 AM
|
0 responses
286 views
0 likes
|
Last Post
by argusthome
03-08-2026, 10:06 AM
|
||
|
Started by NabilKhattabi, 03-06-2026, 11:18 AM
|
0 responses
133 views
1 like
|
Last Post
|
||
|
Started by Deep42, 03-06-2026, 12:28 AM
|
0 responses
91 views
0 likes
|
Last Post
by Deep42
03-06-2026, 12:28 AM
|

Comment