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

Order Flow Cumalative Delta Color Customization

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

    Order Flow Cumalative Delta Color Customization

    I need some help with the correct syntax for changing the color of bullish bars in the Order Flow Cumulative Delta indicators. I am color blind, so the default colors, red and lime green, look exactly the same to me when they are adjacent. When I add a strategy to a chart I need to be able to adjust the colors in the strategy code.



    Since the source code is unavailable I don't seem to have any ability to extrapolate the syntax for changing the bar colors.

    #2
    Hello liquid150,

    The 'Color for down bars' and 'Color for up bars' can be set in the Indicator parameters by right-clicking the chart and selecting Indicators.

    Below is a public link to the help guide on modifying indicator parameters.



    In a NinjaScript Strategy, the .DownBrush and .UpBrush can be set as properties once you have an instance of the indicator.

    For example:

    Code:
    private OrderFlowCumulativeDelta myDelta;
    
    
    protected override void OnStateChange()
    {
    	if (State == State.SetDefaults)
    	{
    		Name				= "MyIndicatorName";
    	}
    	else if (State == State.Configure)
    	{
    		AddDataSeries(Data.BarsPeriodType.Tick, 1);
    	}
    	else if (State == State.DataLoaded)
    	{
    		myDelta				= OrderFlowCumulativeDelta(BarsArray[0], CumulativeDeltaType.BidAsk, CumulativeDeltaPeriod.Session, 0);
    		myDelta.DownBrush	= Brushes.Pink;
    		myDelta.UpBrush		= Brushes.Blue;
    		
    		AddChartIndicator(myDelta);
    	}
    }
    Chelsea B.NinjaTrader Customer Service

    Comment


      #3
      Thanks Chelsea. This is what I needed since it is hard coded in strategy:


      myDelta.DownBrush = Brushes.Pink; myDelta.UpBrush = Brushes.Blue; AddChartIndicator(myDelta);

      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