if(LinRegSlope(BarsArray[1],EMA,(Close,100)[0], 14)[0] > (LinRegSlope(BarsArray[1],EMA,(Close,100)[0], 14)[0]
Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
Having CS1501 error
Collapse
X
-
Having CS1501 error
I am working on a multi time frame strategy and I am getting a CS1501 error. I have added the secondary time frame it is based on volume. I am trying to check the secondary time frame using the LinRegSlope 14 period of the ema 100 period of the close. I appreciate any help.
if(LinRegSlope(BarsArray[1],EMA,(Close,100)[0], 14)[0] > (LinRegSlope(BarsArray[1],EMA,(Close,100)[0], 14)[0]Tags: None
-
Hello kudos,
You can find details about the error code you provided in the following link: https://ninjatrader.com/support/help...ightsub=CS1501
It looks like you have too many parameters in the LinRegSlope, it only takes up to 2 parameters.
Code:LinRegSlope(int period)[int barsAgo] LinRegSlope(ISeries<double> input, int period)[int barsAgo]
A LinRegSlope of 14 period using the secondary would look like this:
I am not certain I understand what you are trying to do with the EMA from the given details, that would need to be removed out of the LinRegSlope parameters to avoid the error.Code:LinRegSlope(BarsArray[1], 14)[0]
I look forward to being of further assistance.
-
Hello kudos,
What you provided in post 1 is not valid so that will produce the mentioned error. The reason why what you provided in post 4 compiles is that is not the same code and is valid.
The answer will still be the same for both NT7 and NT8, the LinRegSlope takes up to 2 total parameters. The first parameter can be a series of data or another indicator, the second parameter is the period for LinRegSlope.
This is taking the EMA for input with a 14 period.Code:LinRegSlope(EMA(100), 14)
You could also pass a series in the same way:
If you are trying to pass the EMA from the secondary you need to pass the BarsArray to the EMA and not the LinRegSlope because LinRegSlope only takes 2 parameters.Code:LinRegSlope(BarsArray[1], 14)
I look forward to being of further assistance.Code:LinRegSlope(EMA(BarsArray[1], 100), 14)
Comment
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by SalmaTrader, 07-07-2026, 10:26 PM
|
0 responses
59 views
0 likes
|
Last Post
by SalmaTrader
07-07-2026, 10:26 PM
|
||
|
Started by CarlTrading, 07-05-2026, 01:16 PM
|
0 responses
27 views
0 likes
|
Last Post
by CarlTrading
07-05-2026, 01:16 PM
|
||
|
Started by CaptainJack, 06-17-2026, 10:32 AM
|
0 responses
17 views
0 likes
|
Last Post
by CaptainJack
06-17-2026, 10:32 AM
|
||
|
Started by kinfxhk, 06-17-2026, 04:15 AM
|
0 responses
24 views
0 likes
|
Last Post
by kinfxhk
06-17-2026, 04:15 AM
|
||
|
Started by kinfxhk, 06-17-2026, 04:06 AM
|
0 responses
24 views
0 likes
|
Last Post
by kinfxhk
06-17-2026, 04:06 AM
|

Comment