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 sjsj2732, 03-23-2026, 04:31 AM
        0 responses
        78 views
        0 likes
        Last Post sjsj2732  
        Started by NullPointStrategies, 03-13-2026, 05:17 AM
        0 responses
        313 views
        0 likes
        Last Post NullPointStrategies  
        Started by argusthome, 03-08-2026, 10:06 AM
        0 responses
        315 views
        0 likes
        Last Post argusthome  
        Started by NabilKhattabi, 03-06-2026, 11:18 AM
        0 responses
        149 views
        1 like
        Last Post NabilKhattabi  
        Started by Deep42, 03-06-2026, 12:28 AM
        0 responses
        115 views
        0 likes
        Last Post Deep42
        by Deep42
         
        Working...
        X