Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
How to install the "Force Index"
Collapse
X
-
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.Tags: None
-
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.
doesn't workCode:protected override void Initialize() { Add(Forceindex()); }
Please advise
Comment
-
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:
You must familiarize yourself with the parameters of the indicator's you are referencing to ensure you pull the correct information.ForceIndex(string fastMAtype, int, fastPeriod, stringslowMAtype, int slowPeriod)
I used the following code to place the ForceIndex on my charts in real-time or backtesting:
Please let me know if you have any questions.Code:Add(ForceIndex("SMA", 3, "SMA", 6));
Comment
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by Geovanny Suaza, 02-11-2026, 06:32 PM
|
0 responses
648 views
0 likes
|
Last Post
|
||
|
Started by Geovanny Suaza, 02-11-2026, 05:51 PM
|
0 responses
369 views
1 like
|
Last Post
|
||
|
Started by Mindset, 02-09-2026, 11:44 AM
|
0 responses
108 views
0 likes
|
Last Post
by Mindset
02-09-2026, 11:44 AM
|
||
|
Started by Geovanny Suaza, 02-02-2026, 12:30 PM
|
0 responses
572 views
1 like
|
Last Post
|
||
|
Started by RFrosty, 01-28-2026, 06:49 PM
|
0 responses
573 views
1 like
|
Last Post
by RFrosty
01-28-2026, 06:49 PM
|

Comment