i have problems i wont at me time frame example: 10 minutes wont see indicator ema34 (time frame 1 hours) can some on tell how i can do it? i have newest NT.
Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
time frame-indicator
Collapse
X
-
Hi volfx,
Thanks for the post and welcome to the NinjaTrader forums. Sorry, it is not clear what you're looking for. Are you working with custom scripts in NinjaTrader and had an issue? Can you please post the code you're using and a description of any issues found? We can take a look.Ryan M.NinjaTrader Customer Service
-
Yes, if you're looking to program multiseries scripts, you can work from the provided sample. Click Tools > Edit NinjaScript > Strategy > SampleMultiTimeFrame.
Documentation for this is available here:
You can also chart multiple series on the same chart, and apply indicators to any of the chart series. The panel does not have to be the same as the indicator input series.
Ryan M.NinjaTrader Customer Service
Comment
-
Hi,
this post is quite old. I have the same queston as volfx (i hope so). The question is: Is there any way, how to display EMA34 from 30minutes timeframe into 2 minutes timeframe?
I tried to follow the instructions, but there is the issue, that EMA indicator uses Input element and this element is connected with Bars[0] only - there is no element like Inputs[0][1].
Example: When I have the default timeframe 2mins (this is identified in code as Bars[0]) and I add 30 mins (identified as Bars[1]), I'm not able to do something like:
if(BarsInProgress == 1)
{
Value.Set(CurrentBar == 0 ? Inputs[1][0] : Inputs[1][0] * (2.0 / (1 + Period)) + (1 - (2.0 / (1 + Period))) * Values[1][1]);
}
Because there is no such element as Inputs,
Do you have any idea?
Thanks, best regards
tom
Comment
-
Keep searching...
Thanks guys, I found the solution in forum. I know, you postet the link into documentation in this thread also, but I didnt understand it correctly.
I understood the solution in this thread: http://www.ninjatrader.com/support/f...&highlight=Ema
Thanks, now it works fine. Best regards
tom
Comment
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by Geovanny Suaza, 02-11-2026, 06:32 PM
|
0 responses
574 views
0 likes
|
Last Post
|
||
|
Started by Geovanny Suaza, 02-11-2026, 05:51 PM
|
0 responses
333 views
1 like
|
Last Post
|
||
|
Started by Mindset, 02-09-2026, 11:44 AM
|
0 responses
101 views
0 likes
|
Last Post
by Mindset
02-09-2026, 11:44 AM
|
||
|
Started by Geovanny Suaza, 02-02-2026, 12:30 PM
|
0 responses
553 views
1 like
|
Last Post
|
||
|
Started by RFrosty, 01-28-2026, 06:49 PM
|
0 responses
551 views
1 like
|
Last Post
by RFrosty
01-28-2026, 06:49 PM
|

Comment