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 CaptainJack, 05-29-2026, 05:09 AM
|
0 responses
51 views
0 likes
|
Last Post
by CaptainJack
05-29-2026, 05:09 AM
|
||
|
Started by CaptainJack, 05-29-2026, 12:02 AM
|
0 responses
31 views
0 likes
|
Last Post
by CaptainJack
05-29-2026, 12:02 AM
|
||
|
Started by charlesugo_1, 05-26-2026, 05:03 PM
|
0 responses
99 views
0 likes
|
Last Post
by charlesugo_1
05-26-2026, 05:03 PM
|
||
|
Started by DannyP96, 05-18-2026, 02:38 PM
|
1 response
177 views
0 likes
|
Last Post
|
||
|
Started by CarlTrading, 05-11-2026, 05:56 AM
|
0 responses
170 views
0 likes
|
Last Post
by CarlTrading
05-11-2026, 05:56 AM
|

Comment