I use a 20 tick range candle for intraday trading. Is there an indicator that counts and places a number above or below every 3rd candle from the market open until close? I am blind when it comes to programming so your guidance will be very appreciated. Thx.
Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
number every 3rd range candles
Collapse
X
-
number every 3rd range candles
Hello,
I use a 20 tick range candle for intraday trading. Is there an indicator that counts and places a number above or below every 3rd candle from the market open until close? I am blind when it comes to programming so your guidance will be very appreciated. Thx.Last edited by JamesBond; 08-20-2021, 11:38 PM.Tags: None
-
Hi James, are you German ? I cannot help you with your question, but maybe you can give me an advice: I do have a number of Individual ndicators for NT7. I am looking for help to get them migrated to Nt8... Do you know somebody who can help me ?
Thanks
Alexander
-
i think you are looking for this : https://ninjatraderecosystem.com/use...unter-colored/Originally posted by JamesBond View PostHello,
I use a 20 tick range candle for intraday trading. Is there an indicator that counts and places a number above or below every 3rd candle from the market open until close? I am blind when it comes to programming so your guidance will be very appreciated. Thx.
It does not place the number below the 'third' candle, but you can choose it to place the number below all or alternate candles.Last edited by zoheb; 08-21-2021, 05:54 PM.
Comment
-
Chelsea B.NinjaTrader Customer Service
Comment
-
Hello JamesBond,
Below is a link to a forum post with helpful information about getting started with C# and NinjaScript.
This is a condition that will be true on every 3rd bar. This would go wherever you are trying to trigger an action on every 3rd bar.
For example:
if (CurrentBar % 3 == 0)
{
Print(Time[0]);
}
This would print the time of every 3rd bar.Chelsea B.NinjaTrader Customer Service
Comment
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by charlesugo_1, 05-26-2026, 05:03 PM
|
0 responses
70 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
152 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
100 views
0 likes
|
Last Post
by CarlTrading
05-10-2026, 08:12 PM
|
||
|
Started by Hwop38, 05-04-2026, 07:02 PM
|
0 responses
288 views
0 likes
|
Last Post
by Hwop38
05-04-2026, 07:02 PM
|

Comment