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

Draw Region question in nt7

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

    Draw Region question in nt7

    I am confused with the statement below as I get a compile error "Argument '4' cannot convert from 'double' to 'NinjaTRader.Data.IDataSeries'"


    Code:
    foreach (double i in list)
    {
    DrawRegion("region"+CurrentBar,CurrentBar,0, High[0], i, Color.Empty, Color.red, 2);
    }

    #2
    Hello Nick123,

    Thank you for your post.

    The compile error message you are receiving means that you are passing a double object into argument 4 of the DrawRegion method when a Series object should be used. Instead of using High[0] for argument 4, you would need to use High. For example:

    Code:
    foreach (double i in list)
    {
        DrawRegion("region"+CurrentBar,CurrentBar,0, High, i, Color.Empty, Color.Red, 2);
    }
    See the help guide documentation below for more information.
    DrawRegion - https://ninjatrader.com/support/help...drawregion.htm

    Let us know if we may assist further.
    Brandon H.NinjaTrader Customer Service

    Comment

    Latest Posts

    Collapse

    Topics Statistics Last Post
    Started by Vietanhnguyen2hotmailcom, Yesterday, 10:29 AM
    4 responses
    23 views
    0 likes
    Last Post Vietanhnguyen2hotmailcom  
    Started by PhillT, 04-19-2024, 02:16 PM
    4 responses
    35 views
    0 likes
    Last Post PhillT
    by PhillT
     
    Started by ageeholdings, 05-01-2024, 05:22 AM
    5 responses
    37 views
    0 likes
    Last Post ageeholdings  
    Started by reynoldsn, Today, 02:34 PM
    0 responses
    13 views
    0 likes
    Last Post reynoldsn  
    Started by nightstalker, Today, 02:05 PM
    0 responses
    21 views
    0 likes
    Last Post nightstalker  
    Working...
    X