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 StockTrader88, 03-06-2021, 08:58 AM
    45 responses
    3,992 views
    3 likes
    Last Post johntraderuser2  
    Started by TAJTrades, Today, 09:46 AM
    0 responses
    7 views
    0 likes
    Last Post TAJTrades  
    Started by rhyminkevin, Yesterday, 04:58 PM
    5 responses
    62 views
    0 likes
    Last Post dp8282
    by dp8282
     
    Started by realblubb, Today, 09:28 AM
    0 responses
    8 views
    0 likes
    Last Post realblubb  
    Started by AaronKoRn, Yesterday, 09:49 PM
    1 response
    19 views
    0 likes
    Last Post Rikazkhan007  
    Working...
    X