Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
Color band
Collapse
X
-
Color band
Hi, I want to create a colored band using an EMA ... basically, take 5 ticks on both sides of the EMA and color is red when falling and green when rising. Got the 'falling' and 'rising' down, but now sure how to fill in the band with a color. Can you direct me to a resource that can help. thanks!Tags: None
-
OK ... I'm doing something wrong but cannot see it. Maybe you canhelp me. when compiling, I'm getting a CS1502 error message. This error can occur when you pass in incorrect parameter object types into a method such as an indicator.
DrawRegion("tag1", CurrentBar , 0, EMA(160)[0], (EMA(160)[0] + (6* TickSize)) , Color.Transparent, Color.LightGreen, 3);
Comment
-
Hello pman777,
The best overload for a draw region is- 2 IDataSeries
- I IDataSereis and 1 double
You have assigned 2 double and thus you are getting the error. Please modify your code as below and see if you can get it work.
Code:DrawRegion("tag1", CurrentBar , 0,[B] EMA(160)[/B], (EMA(160)[0] + (6* TickSize)) , Color.Transparent, Color.LightGreen, 3);JoydeepNinjaTrader Customer Service
Comment
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by SalmaTrader, 07-07-2026, 10:26 PM
|
0 responses
29 views
0 likes
|
Last Post
by SalmaTrader
07-07-2026, 10:26 PM
|
||
|
Started by CarlTrading, 07-05-2026, 01:16 PM
|
0 responses
17 views
0 likes
|
Last Post
by CarlTrading
07-05-2026, 01:16 PM
|
||
|
Started by CaptainJack, 06-17-2026, 10:32 AM
|
0 responses
9 views
0 likes
|
Last Post
by CaptainJack
06-17-2026, 10:32 AM
|
||
|
Started by kinfxhk, 06-17-2026, 04:15 AM
|
0 responses
15 views
0 likes
|
Last Post
by kinfxhk
06-17-2026, 04:15 AM
|
||
|
Started by kinfxhk, 06-17-2026, 04:06 AM
|
0 responses
18 views
0 likes
|
Last Post
by kinfxhk
06-17-2026, 04:06 AM
|

Comment