I am trying to add the option to display arrows when triggered. Keyword "option" (I.e. Bool). When compiling the code I get the error "CS0029 Cannot implicitly convert type 'NinjaTrader.NinjaScript.DrawingTools.ArrowUp' to 'bool'. I thought I had everything correct, but I guess I am missing something small or it cannot be done. Can someone help clarify?
Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
Can you bool a drawing?
Collapse
X
-
Can you bool a drawing?
Hello,
I am trying to add the option to display arrows when triggered. Keyword "option" (I.e. Bool). When compiling the code I get the error "CS0029 Cannot implicitly convert type 'NinjaTrader.NinjaScript.DrawingTools.ArrowUp' to 'bool'. I thought I had everything correct, but I guess I am missing something small or it cannot be done. Can someone help clarify?Tags: None
-
Hello bigc0220,
Thanks for your post.
No you would not be able to do that and why would you want to? You can create a condition with a public bool that would allow you to switch the arrows on/off.
if(myBool==true)
Draw.ArrowUp(this, "tag1", true, 0, Low[0] - TickSize, Brushes.Red);
I suggest using the NinjaScript Builder to create the input and then copy/paste the public property into your script.Josh G.NinjaTrader Customer Service
-
That's what I meant, maybe I worded it wrong/weird. I will give this a try and see if it works. Thank you!Originally posted by NinjaTrader_JoshG View PostHello bigc0220,
Thanks for your post.
No you would not be able to do that and why would you want to? You can create a condition with a public bool that would allow you to switch the arrows on/off.
if(myBool==true)
Draw.ArrowUp(this, "tag1", true, 0, Low[0] - TickSize, Brushes.Red);
I suggest using the NinjaScript Builder to create the input and then copy/paste the public property into your script.
Comment
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by CaptainJack, 05-29-2026, 05:09 AM
|
0 responses
238 views
0 likes
|
Last Post
by CaptainJack
05-29-2026, 05:09 AM
|
||
|
Started by CaptainJack, 05-29-2026, 12:02 AM
|
0 responses
154 views
0 likes
|
Last Post
by CaptainJack
05-29-2026, 12:02 AM
|
||
|
Started by charlesugo_1, 05-26-2026, 05:03 PM
|
0 responses
163 views
1 like
|
Last Post
by charlesugo_1
05-26-2026, 05:03 PM
|
||
|
Started by DannyP96, 05-18-2026, 02:38 PM
|
1 response
246 views
0 likes
|
Last Post
|
||
|
Started by CarlTrading, 05-11-2026, 05:56 AM
|
0 responses
199 views
0 likes
|
Last Post
by CarlTrading
05-11-2026, 05:56 AM
|

Comment