Something like this:
Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
Candle Bar Signal Average and desviation conditions
Collapse
X
-
Candle Bar Signal Average and desviation conditions
There is some indicator where if the candle exceeds the average or standard deviation conditions, and its volume or delta is higher than the average, a vertical signal will be displayed on the chart.?
Something like this:
Tags: None
-
Hello icebergdelphi,
Just to confirm, you are posting in the General Development section of the forums because you are developing this indicator yourself and you are wanting assistance with the code?
(Or were you intending to post in the NinjaScript File Sharing section of the forums to request an completed indicator you can download and import?)
Below I am providing a link to a support article with helpful resources on getting started with C# and NinjaScript development.
"if the candle exceeds the average or standard deviation conditions"
You can check if the Low[0] of the bar is above the StdDev() indicator.
if (Low[0] > StdDev(14)[0])
"and its volume or delta is higher than the average"
You can compare the Volume[0] to an SMA() of the Volume.
if (Volume[0] > SMA(Volume, 14)[0])
If you were trying to get values from the Order Flow Cumulative Delta, this indicator could be called.
"a vertical signal will be displayed on the chart.?"
You can draw a vertical line with Draw.VerticalLine().
Or you can color the chart behind the bars by setting the BackBrush.
Chelsea B.NinjaTrader Customer Service
- Likes 1
-
Wooo Thank you Chelsea , yeah my signal is going to be this: BackBrushAll = new SolidColorBrush(Colors.LimeGreen) {Opacity = 0.25}; BackBrushAll.Freeze(); Thank you for the clue I got it-
Comment
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by Geovanny Suaza, 02-11-2026, 06:32 PM
|
0 responses
647 views
0 likes
|
Last Post
|
||
|
Started by Geovanny Suaza, 02-11-2026, 05:51 PM
|
0 responses
368 views
1 like
|
Last Post
|
||
|
Started by Mindset, 02-09-2026, 11:44 AM
|
0 responses
108 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
571 views
1 like
|
Last Post
|
||
|
Started by RFrosty, 01-28-2026, 06:49 PM
|
0 responses
573 views
1 like
|
Last Post
by RFrosty
01-28-2026, 06:49 PM
|

Comment