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 RubenCazorla, Today, 09:07 AM
    2 responses
    13 views
    0 likes
    Last Post NinjaTrader_ChelseaB  
    Started by i019945nj, 12-14-2023, 06:41 AM
    7 responses
    82 views
    0 likes
    Last Post NinjaTrader_ChelseaB  
    Started by timmbbo, 07-05-2023, 10:21 PM
    4 responses
    158 views
    0 likes
    Last Post NinjaTrader_Gaby  
    Started by tkaboris, Today, 08:01 AM
    1 response
    7 views
    0 likes
    Last Post NinjaTrader_Gaby  
    Started by Lumbeezl, 01-11-2022, 06:50 PM
    31 responses
    820 views
    1 like
    Last Post NinjaTrader_Adrian  
    Working...
    X