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 pmachiraju, 11-01-2023, 04:46 AM
      8 responses
      148 views
      0 likes
      Last Post rehmans
      by rehmans
       
      Started by mattbsea, Today, 05:44 PM
      0 responses
      5 views
      0 likes
      Last Post mattbsea  
      Started by RideMe, 04-07-2024, 04:54 PM
      6 responses
      33 views
      0 likes
      Last Post RideMe
      by RideMe
       
      Started by tkaboris, Today, 05:13 PM
      0 responses
      5 views
      0 likes
      Last Post tkaboris  
      Started by GussJ, 03-04-2020, 03:11 PM
      16 responses
      3,282 views
      0 likes
      Last Post Leafcutter  
      Working...
      X