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 CarlTrading, 03-31-2026, 09:41 PM
|
1 response
128 views
1 like
|
Last Post
|
||
|
Started by CarlTrading, 04-01-2026, 02:41 AM
|
0 responses
73 views
1 like
|
Last Post
by CarlTrading
04-01-2026, 02:41 AM
|
||
|
Started by CaptainJack, 03-31-2026, 11:44 PM
|
0 responses
116 views
2 likes
|
Last Post
by CaptainJack
03-31-2026, 11:44 PM
|
||
|
Started by CarlTrading, 03-30-2026, 11:51 AM
|
0 responses
109 views
1 like
|
Last Post
by CarlTrading
03-30-2026, 11:51 AM
|
||
|
Started by CarlTrading, 03-30-2026, 11:48 AM
|
0 responses
88 views
0 likes
|
Last Post
by CarlTrading
03-30-2026, 11:48 AM
|

Comment