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

Plots and Dash Style

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

    Plots and Dash Style

    Hi there.The standard "channel indicators" are usually one colored, for the upper and lower lines as well as the region in between. I have worked my way through using the Plot method creating a color painted band between Upper and Lower with differently colored upper and lower boundary lines depending on whether these are rising or falling.

    I have for example
    if (Rising(Lower)) PlotColors[2][0] = lineup;
    if (Falling(Lower)) PlotColors[2][0] = linedown;
    if (Rising(Upper)) PlotColors[1][0] = Color.Transparent;
    if (Falling(Upper)) PlotColors[1][0] = Color.Transparent;

    I'd like to individually set the Dash Style depending on certain conditions.

    I have tried adding e.g.

    if (Rising(Upper)) PlotColors[1][0] = Color.Transparent;
    if (Rising(Upper)) Plots[1].Pen.DashStyle = DashStyle.Dash;
    but it then uses this DashStyle for ALL Plots[1].

    Plots[1][0].Pen.DashStyle = DashStyle.Dash; doesn't work either.

    Is there a way to limit this to only apply to this condition, here Rising Upper but not apply it to Falling Upper?

    sandman

    PS: What is the practical difference between using either
    PlotColors[0][0] = Color.Blue;
    or
    Plots[0].Pen.Color = Color.Blue;
    Last edited by sandman; 08-27-2018, 02:18 AM.

    #2
    Hello sandman,

    Thanks for your post.

    The DashStyle (and PlotStyle) can only apply to the entire plot.

    PlotColors allows you to change the pen color on a specific bar.

    The difference between PlotColors and Pen.Color is that PlotColors would apply to a specific bar while changing the Pen color would apply to the entire plot.
    Paul H.NinjaTrader Customer Service

    Comment

    Latest Posts

    Collapse

    Topics Statistics Last Post
    Started by Mestor, 03-10-2023, 01:50 AM
    16 responses
    388 views
    0 likes
    Last Post z.franck  
    Started by rtwave, 04-12-2024, 09:30 AM
    4 responses
    31 views
    0 likes
    Last Post rtwave
    by rtwave
     
    Started by yertle, Yesterday, 08:38 AM
    7 responses
    29 views
    0 likes
    Last Post yertle
    by yertle
     
    Started by bmartz, 03-12-2024, 06:12 AM
    2 responses
    22 views
    0 likes
    Last Post bmartz
    by bmartz
     
    Started by funk10101, Today, 12:02 AM
    0 responses
    7 views
    0 likes
    Last Post funk10101  
    Working...
    X