Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Is it possible to set PlotBrushes in hosted indicator?

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

    Is it possible to set PlotBrushes in hosted indicator?

    Hello.
    I made a strategy. And I want to set PlotBrushes propertie of hosted indicator:
    PHP Code:
    
    MACD Macd = MACD( 10, 20, 30);
    
    AddChartIndicator( Macd );
    
    
    OnBarUpdate{}
    {
       Macd.PlotBrushes[0][0] = Brushes.Green;
    
       TriggerCustomEvent( (o) => {Macd.PlotBrushes[0][0] = Brushes.Green;}, null );
    
       Macd.TriggerCustomEvent( (o) => {Macd.PlotBrushes[0][0] = Brushes.Green;}, null );
    } 
    
    Any of these ways not work.
    Is it possible?
    fx.practic
    NinjaTrader Ecosystem Vendor - fx.practic

    #2
    Hello,

    I show that this syntax would work, is there a need for TriggerCustomEvent in this case?

    Also, have you correctly stored the instance of the macd as a variable?

    Code:
    private MACD Macd;
    protected override void OnStateChange()
    {
    	if (State == State.DataLoaded)
        {
    		Macd = MACD( 10, 20, 30); 
            AddChartIndicator( Macd ); 
    	
        }
    }
    
    protected override void OnBarUpdate()
    {
    	Macd.PlotBrushes[0][0] = Brushes.Pink;
    }

    I look forward to being of further assistance.

    Comment


      #3
      I am sorry, my fault.
      Just, return triggered before color setting.

      Thank You, and sorry again.
      fx.practic
      NinjaTrader Ecosystem Vendor - fx.practic

      Comment

      Latest Posts

      Collapse

      Topics Statistics Last Post
      Started by CarlTrading, 03-31-2026, 09:41 PM
      1 response
      72 views
      0 likes
      Last Post NinjaTrader_ChelseaB  
      Started by CarlTrading, 04-01-2026, 02:41 AM
      0 responses
      39 views
      0 likes
      Last Post CarlTrading  
      Started by CaptainJack, 03-31-2026, 11:44 PM
      0 responses
      63 views
      2 likes
      Last Post CaptainJack  
      Started by CarlTrading, 03-30-2026, 11:51 AM
      0 responses
      63 views
      0 likes
      Last Post CarlTrading  
      Started by CarlTrading, 03-30-2026, 11:48 AM
      0 responses
      53 views
      0 likes
      Last Post CarlTrading  
      Working...
      X