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

How to install the "Force Index"

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

    How to install the "Force Index"

    Josh, I tried to install your "Force Index". I have unpacked the file to desktop. The folder is called "ForceIndex". Double clicking this folder shows five files in it, one being forceindex.cs. When I go to the Import strategy and go to choose the folder in it, choosing "Forceindex" brings up "indicator" in the subfolder but there are no files in that subfolder. Please explain. Thanks.

    #2
    To import, select from within NT, File > Utilities > Import NinjaScript, then select the actual ZIP file, NT takes care of the rest.
    RayNinjaTrader Customer Service

    Comment


      #3
      Hi NinjaTrader

      I've installed the Force index no problem, but don't know how to add it so that it would be visible on the charts in Strategy Analyzer.

      Code:
      protected override void Initialize()    
              {
      Add(Forceindex());
              }
      doesn't work

      Please advise

      Comment


        #4
        Hello ionaz,

        Thank you for your post.

        You will need to use the correct and full syntax here to add the ForceIndex to the chart.
        The full syntax is as follows:
        ForceIndex(string fastMAtype, int, fastPeriod, stringslowMAtype, int slowPeriod)
        You must familiarize yourself with the parameters of the indicator's you are referencing to ensure you pull the correct information.
        I used the following code to place the ForceIndex on my charts in real-time or backtesting:
        Code:
        Add(ForceIndex("SMA", 3, "SMA", 6));
        Please let me know if you have any questions.

        Comment

        Latest Posts

        Collapse

        Topics Statistics Last Post
        Started by Segwin, 05-07-2018, 02:15 PM
        14 responses
        1,789 views
        0 likes
        Last Post aligator  
        Started by Jimmyk, 01-26-2018, 05:19 AM
        6 responses
        837 views
        0 likes
        Last Post emuns
        by emuns
         
        Started by jxs_xrj, 01-12-2020, 09:49 AM
        6 responses
        3,294 views
        1 like
        Last Post jgualdronc  
        Started by Touch-Ups, Today, 10:36 AM
        0 responses
        13 views
        0 likes
        Last Post Touch-Ups  
        Started by geddyisodin, 04-25-2024, 05:20 AM
        11 responses
        63 views
        0 likes
        Last Post halgo_boulder  
        Working...
        X