Announcement

Collapse

Looking for a User App or Add-On built by the NinjaTrader community?

Visit NinjaTrader EcoSystem and our free User App Share!

Have a question for the NinjaScript developer community? Open a new thread in our NinjaScript File Sharing Discussion Forum!
See more
See less

Partner 728x90

Collapse

Can you bool a drawing?

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    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?

    #2
    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

    Comment


      #3
      Originally posted by NinjaTrader_JoshG View Post
      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.
      That's what I meant, maybe I worded it wrong/weird. I will give this a try and see if it works. Thank you!

      Comment

      Latest Posts

      Collapse

      Topics Statistics Last Post
      Started by cre8able, 02-11-2023, 05:43 PM
      3 responses
      236 views
      0 likes
      Last Post rhubear
      by rhubear
       
      Started by frslvr, 04-11-2024, 07:26 AM
      8 responses
      113 views
      1 like
      Last Post NinjaTrader_BrandonH  
      Started by stafe, 04-15-2024, 08:34 PM
      10 responses
      46 views
      0 likes
      Last Post stafe
      by stafe
       
      Started by rocketman7, Today, 09:41 AM
      3 responses
      11 views
      0 likes
      Last Post NinjaTrader_Jesse  
      Started by traderqz, Today, 09:44 AM
      2 responses
      10 views
      0 likes
      Last Post NinjaTrader_Gaby  
      Working...
      X