I cannot get the indicator to plot. Any assistance you could provide would be appreciated.
Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
Need Help with KST Indicator code
Collapse
X
-
Need Help with KST Indicator code
I am trying to create code for the KST indicator developed by Martin Pring. The KST indicator is a weighted sum of four SMA smoothed ROC indicators. The periods used are those recommended for use with weekly bars.
I cannot get the indicator to plot. Any assistance you could provide would be appreciated.Tags: None
-
Replacing
DataSeries roc1 = new DataSeries (this);
DataSeries roc2 = new DataSeries (this);
DataSeries roc3 = new DataSeries (this);
DataSeries roc4 = new DataSeries (this);
with
roc1 = new DataSeries (this);
roc2 = new DataSeries (this);
roc3 = new DataSeries (this);
roc4 = new DataSeries (this);
worked for me. Thanks for posting this indicator!
Comment
-
-
Hello keromebrantley,
Welcome to the NinjaTrader forums!
DataSeries are now Series<T> in NinjaTrader 8.
private Series<double> roc1;
roc1 = new Series<double>(this);
Below is a link to a forum post on porting scripts from 7 to 8.
And a link to a forum post with helpful resources on getting started with C# and NinjaScript.
Chelsea B.NinjaTrader Customer Service
Comment
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by Geovanny Suaza, 02-11-2026, 06:32 PM
|
0 responses
574 views
0 likes
|
Last Post
|
||
|
Started by Geovanny Suaza, 02-11-2026, 05:51 PM
|
0 responses
333 views
1 like
|
Last Post
|
||
|
Started by Mindset, 02-09-2026, 11:44 AM
|
0 responses
101 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
553 views
1 like
|
Last Post
|
||
|
Started by RFrosty, 01-28-2026, 06:49 PM
|
0 responses
551 views
1 like
|
Last Post
by RFrosty
01-28-2026, 06:49 PM
|

Comment