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

DrawDot() works with primary bars object only?

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

    DrawDot() works with primary bars object only?

    Post withdrawn.
    Last edited by Loki45; 06-16-2016, 02:03 PM.

    #2
    Hello Loki45,

    Thank you for your post.

    The following code will work but keep in mind it's resource intensive and there is really no way to have dots show on a chart where the timestamps of the added bar series in code may not exist on the chart. In my test I ran a 1 Minute chart with an added 1 Tick series in code, only three dots showed as only three ticks occurred on the same timestamp at the 1 Minute chart bars.
    Code:
    			if (CurrentBars[0] <= 20 || CurrentBars[1] <= 20) return;
    			
                if (BarsInProgress == 1)
    			{
    				DrawDot(CurrentBars[1].ToString(), true, 0, Closes[1][0], Color.Blue);
    			}
    If you wanted to show dots on the close price of another bar series you could do that. However, in either case I would recommend custom plotting (graphics) in Plot() versus the draw methods as this will be expensive in regards to PC resources.

    For an example of custom plotting go to Tools > Edit NinjaScript > Indicator > CustomPlotSample.

    Comment

    Latest Posts

    Collapse

    Topics Statistics Last Post
    Started by RubenCazorla, Today, 09:07 AM
    1 response
    5 views
    0 likes
    Last Post RubenCazorla  
    Started by Irukandji, Today, 09:34 AM
    1 response
    3 views
    0 likes
    Last Post NinjaTrader_Clayton  
    Started by TraderBCL, Today, 04:38 AM
    3 responses
    25 views
    0 likes
    Last Post NinjaTrader_Jesse  
    Started by WeyldFalcon, 08-07-2020, 06:13 AM
    11 responses
    1,423 views
    0 likes
    Last Post jculp
    by jculp
     
    Started by BarzTrading, Today, 07:25 AM
    2 responses
    29 views
    1 like
    Last Post BarzTrading  
    Working...
    X