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 kinfxhk, 07-14-2026, 09:39 AM
      0 responses
      12 views
      0 likes
      Last Post kinfxhk
      by kinfxhk
       
      Started by kinfxhk, 07-13-2026, 10:18 AM
      0 responses
      59 views
      0 likes
      Last Post kinfxhk
      by kinfxhk
       
      Started by kinfxhk, 07-13-2026, 09:50 AM
      0 responses
      41 views
      0 likes
      Last Post kinfxhk
      by kinfxhk
       
      Started by kinfxhk, 07-13-2026, 07:21 AM
      0 responses
      47 views
      0 likes
      Last Post kinfxhk
      by kinfxhk
       
      Started by kinfxhk, 07-11-2026, 02:11 AM
      0 responses
      38 views
      0 likes
      Last Post kinfxhk
      by kinfxhk
       
      Working...
      X