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 Geovanny Suaza, 02-11-2026, 06:32 PM
|
0 responses
574 views
0 likes
|
Last Post
|
||
|
Started by Geovanny Suaza, 02-11-2026, 05:51 PM
|
0 responses
333 views
1 like
|
Last Post
|
||
|
Started by Mindset, 02-09-2026, 11:44 AM
|
0 responses
101 views
0 likes
|
Last Post
by Mindset
02-09-2026, 11:44 AM
|
||
|
Started by Geovanny Suaza, 02-02-2026, 12:30 PM
|
0 responses
553 views
1 like
|
Last Post
|
||
|
Started by RFrosty, 01-28-2026, 06:49 PM
|
0 responses
551 views
1 like
|
Last Post
by RFrosty
01-28-2026, 06:49 PM
|

Comment