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 TheMarlin801, 10-13-2020, 01:40 AM
        20 responses
        3,913 views
        0 likes
        Last Post Bidder
        by Bidder
         
        Started by timmbbo, 07-05-2023, 10:21 PM
        3 responses
        150 views
        0 likes
        Last Post grayfrog  
        Started by Lumbeezl, 01-11-2022, 06:50 PM
        30 responses
        804 views
        1 like
        Last Post grayfrog  
        Started by xiinteractive, 04-09-2024, 08:08 AM
        3 responses
        11 views
        0 likes
        Last Post NinjaTrader_Erick  
        Started by Johnny Santiago, 10-11-2019, 09:21 AM
        95 responses
        6,194 views
        0 likes
        Last Post xiinteractive  
        Working...
        X