Announcement

Collapse

Looking for a User App or Add-On built by the NinjaTrader community?

Visit NinjaTrader EcoSystem and our free User App Share!

Have a question for the NinjaScript developer community? Open a new thread in our NinjaScript File Sharing Discussion Forum!
See more
See less

Partner 728x90

Collapse

Indicators Information

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

    Indicators Information

    Hi,

    I am very new to Ninijatrader. I am trying to convert my MT4 indicators to NJ. I need help on the following:

    1) Where can I find source code for Woodies CCI. I need to see how they are programmed?
    2) Where can I find a list of indicators with source code?

    Many thanks and really appreciate of someone could give some guidance.

    Thanks again.

    Shek

    #2
    NT supplied version of Woodie's CCI is proprietary and the code is unavailable from NT, something about custom plotting; you can read more about it at Woodie's forum.
    You can usually find a list of open cs files under ..\My Documents\NinjaTrader 6.5\bin\Custom\Indicator

    Comment


      #3
      Originally posted by thrunner View Post
      NT supplied version of Woodie's CCI is proprietary and the code is unavailable from NT, something about custom plotting; you can read more about it at Woodie's forum.
      You can usually find a list of open cs files under ..\My Documents\NinjaTrader 6.5\bin\Custom\Indicator
      Many thanks for the advice, you have saved me a lot of effort looking for the answer. Since that is the case I have to program it myself.

      BTW, do you know of any other forum that discuss about ninjatrader, I need more examples in order to code indicators. The problem with me is that I am too used to MT4 programming.

      Thanks again for your advice

      Comment


        #4
        Code

        Hi,

        I have a question, in MT4 if I need to use Moving Average in my own indicator program all I need to do is to give the following command:

        e.g Signal1 = iMA(xx, xx, xx);

        iMA will link the function to Moving Average. What about NJ? What should I code if I need to include other function like RSI, MA and ADX for instances.

        Can someone advice me, thanks in advance.

        shek

        Comment


          #5
          For example, to get an SMA of the ADX do this:
          Code:
          double value = SMA(ADX(14), Period)[0];
          You pass it in as the IDataSeries to run the SMA on.
          Josh P.NinjaTrader Customer Service

          Comment

          Latest Posts

          Collapse

          Topics Statistics Last Post
          Started by PaulMohn, Today, 05:00 AM
          0 responses
          6 views
          0 likes
          Last Post PaulMohn  
          Started by ZenCortexAuCost, Today, 04:24 AM
          0 responses
          6 views
          0 likes
          Last Post ZenCortexAuCost  
          Started by ZenCortexAuCost, Today, 04:22 AM
          0 responses
          3 views
          0 likes
          Last Post ZenCortexAuCost  
          Started by SantoshXX, Today, 03:09 AM
          0 responses
          16 views
          0 likes
          Last Post SantoshXX  
          Started by DanielTynera, Today, 01:14 AM
          0 responses
          5 views
          0 likes
          Last Post DanielTynera  
          Working...
          X