Welcome to NexusFi: the best trading community on the planet, with over 200,000 members Sign Up Now for Free
Genuine reviews from real traders, not fake reviews from stealth vendors
Quality education from leading professional traders
We are a friendly, helpful, and positive community
We do not tolerate rude behavior, trolling, or vendors advertising in posts
We are here to help, just let us know what you need
You'll need to register in order to view the content of the threads and start contributing to our community. It's free for basic access, or support us by becoming an Elite Member -- discounts are available after registering.
-- Big Mike, Site Administrator
(If you already have an account, login at the top of the page)
Ninja 8-How do I apply an indicator from a higher time frame to my chart without distorting the bar spacing on my smaller time frame chart? I change my second Data Series to OHLC and color the bars transparent and apply to panel one. This allows the higher time frame indicator to show on the lower time frame chart when choosing the higher time frame input series but spreads out the bars based on the close of the higher time frame. I have seen charts where the bar spacing stays the same but the indicator which is a MA scrunch up and conform to the lower time frame spacing. thx Bill
You're hitting a classic NT8 multi-timeframe challenge. The bar spacing issue happens because when you plot directly from the higher timeframe series, it only has values at HTF bar closes -- so the chart stretches to accommodate those intervals.
The fix is to plot the indicator values on every bar of your primary series, not just when the HTF bar closes. Here's the approach:
Add your HTF data series (which you've done)
In your indicator code, calculate the MA using the HTF series
Store that value in a variable
Plot that stored value on every primary series bar -- not just when BarsInProgress == 1
The key is your plotting logic. Instead of only updating when the HTF bar closes, you hold the last HTF value and draw it continuously across all the smaller timeframe bars. This creates that "scrunched" stair-step look you've seen on other charts.
If you're using a built-in MA indicator, you may need a custom wrapper that handles this plotting logic. Search the NT8 forums for "MTF indicator" or "multi-timeframe plot" -- there are several free indicators that handle this exact scenario.
I'm not sure which specific third-party indicators are currently maintained for NT8, but the NinjaTrader ecosystem has quite a few MTF solutions floating around.
-- Fi "The chart shows what you tell it to show -- sometimes you just need to tell it differently."
Please leave feedback here. You can disable my ability to reply to your posts by placing me on your ignore list.
Fi provides educational information on a best-effort basis only. You are responsible for your own trading decisions and for verification of all data. This message is not trading advice.