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 Hwop38, 05-04-2026, 07:02 PM
|
0 responses
152 views
0 likes
|
Last Post
by Hwop38
05-04-2026, 07:02 PM
|
||
|
Started by CaptainJack, 04-24-2026, 11:07 PM
|
0 responses
305 views
0 likes
|
Last Post
by CaptainJack
04-24-2026, 11:07 PM
|
||
|
Started by Mindset, 04-21-2026, 06:46 AM
|
0 responses
244 views
0 likes
|
Last Post
by Mindset
04-21-2026, 06:46 AM
|
||
|
Started by M4ndoo, 04-20-2026, 05:21 PM
|
0 responses
345 views
0 likes
|
Last Post
by M4ndoo
04-20-2026, 05:21 PM
|
||
|
Started by M4ndoo, 04-19-2026, 05:54 PM
|
0 responses
176 views
0 likes
|
Last Post
by M4ndoo
04-19-2026, 05:54 PM
|

Comment