Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Private Function - Where do I put it?

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

    Private Function - Where do I put it?

    Hi,

    I am trying to insert a custom function into my script but I don't know where to put it.

    private bool fctSomething ()
    {
    if (....) return true
    }



    Where should I put this? I tried outside public class ScriptName: Indicator but I get errors.

    Thanks

    #2
    Hello marcusplexus,

    You want to place this within the scope of the indicator class. Here is an example of where it would fit:

    Code:
        public class example: Indicator
        {
      
    	private bool fctSomething ()
    	{
    		return true;
    	}
    		
            protected override void Initialize()
            {
            
            }
    Ryan M.NinjaTrader Customer Service

    Comment


      #3
      Great!

      Thanks!

      Comment

      Latest Posts

      Collapse

      Topics Statistics Last Post
      Started by CaptainJack, 05-29-2026, 05:09 AM
      0 responses
      240 views
      0 likes
      Last Post CaptainJack  
      Started by CaptainJack, 05-29-2026, 12:02 AM
      0 responses
      156 views
      0 likes
      Last Post CaptainJack  
      Started by charlesugo_1, 05-26-2026, 05:03 PM
      0 responses
      165 views
      1 like
      Last Post charlesugo_1  
      Started by DannyP96, 05-18-2026, 02:38 PM
      1 response
      247 views
      0 likes
      Last Post NinjaTrader_ChelseaB  
      Started by CarlTrading, 05-11-2026, 05:56 AM
      0 responses
      199 views
      0 likes
      Last Post CarlTrading  
      Working...
      X