Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Custom Event in Indicator does not work?

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

    Custom Event in Indicator does not work?

    Hi,

    i tried to create a custom event in my indicator, that should handle buy or sell trigger. I want to use that event in my custom strategy to enter a trade. so that's what i want to do.

    but the problem is, that the custom event handler is always null (not initialized), and i don't know why. i've read several c# tutorials with event handler examples and i did it 1:1 but it does not work.

    is it not possible to create own events in indicators?

    here my short example code:

    Event Handler:
    Code:
            protected virtual void OnEventMessage(EventArgs e)
            {
    	    Print("OnEventMessage ...");
    	    EventHandler handler = EventMessage;
                if (handler != null)
                {				
                    handler(this, e);
    		Print("Handler sent EventMessage ...");
                }
    	    else
    	    {
    		Print("Handler is null @ EventMessage ...");
    	    }
            }
    	
            public event EventHandler EventMessage;
    And the call:
    Code:
    OnEventMessage(EventArgs.Empty);
    The Handler is always null and i don't know how to get it work ...


    Best Regards,
    Tom

    #2
    Hello Tom,

    Thank you for your post.

    You would use the TriggerCustomEvent(): http://ninjatrader.com/support/helpG...ustomevent.htm

    Comment


      #3
      Thank you Patrick for the link,

      but i don't understand how that should work. how can i register my strategy to the indicators event? the example in the link is working only in the same class i think. or i don't understand the example.

      do you have a short code snippet how to use this TriggerCustomEvent with the use of 2 classes?

      Comment


        #4
        Hello Tom299,

        Attached is an example.
        Attached Files

        Comment

        Latest Posts

        Collapse

        Topics Statistics Last Post
        Started by Geovanny Suaza, 02-11-2026, 06:32 PM
        0 responses
        601 views
        0 likes
        Last Post Geovanny Suaza  
        Started by Geovanny Suaza, 02-11-2026, 05:51 PM
        0 responses
        347 views
        1 like
        Last Post Geovanny Suaza  
        Started by Mindset, 02-09-2026, 11:44 AM
        0 responses
        103 views
        0 likes
        Last Post Mindset
        by Mindset
         
        Started by Geovanny Suaza, 02-02-2026, 12:30 PM
        0 responses
        559 views
        1 like
        Last Post Geovanny Suaza  
        Started by RFrosty, 01-28-2026, 06:49 PM
        0 responses
        558 views
        1 like
        Last Post RFrosty
        by RFrosty
         
        Working...
        X