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 SalmaTrader, 07-07-2026, 10:26 PM
|
0 responses
27 views
0 likes
|
Last Post
by SalmaTrader
07-07-2026, 10:26 PM
|
||
|
Started by CarlTrading, 07-05-2026, 01:16 PM
|
0 responses
17 views
0 likes
|
Last Post
by CarlTrading
07-05-2026, 01:16 PM
|
||
|
Started by CaptainJack, 06-17-2026, 10:32 AM
|
0 responses
9 views
0 likes
|
Last Post
by CaptainJack
06-17-2026, 10:32 AM
|
||
|
Started by kinfxhk, 06-17-2026, 04:15 AM
|
0 responses
10 views
0 likes
|
Last Post
by kinfxhk
06-17-2026, 04:15 AM
|
||
|
Started by kinfxhk, 06-17-2026, 04:06 AM
|
0 responses
17 views
0 likes
|
Last Post
by kinfxhk
06-17-2026, 04:06 AM
|

Comment