Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
Range Chart minute bars
Collapse
X
-
gg80108,
Please see this article on creating multi-time frame strategies: http://www.ninjatrader-support.com/H...ameInstrumentsJosh P.NinjaTrader Customer Service
-
there is a sampleMultitimeframe strategy, I was looking at.. More then one way to skin a cat so the two examples look vaguely familiar..
Here is what I'm doing .. looking for a 30m bar of :BBS(2,1.5,5).BarValues.Get(CurrentBar).. Any hints? Tried several mutantations but cant get it to complie
thought it might look something like this
ADD(BBS(2,1.5,5).BarValues.Get(CurrentBar),PeriodT ype.Minute,30);
Comment
-
I'm using the current chart futures symbol., with my index[0] (current chart interval) I get the correct values ie: My DrawText shows the correct values.. The index set to [1],, the values are always 0. I can plot the BBS on a 30 minute and it isnt 0.
Here is my code.
Initialize
Add(PeriodType.Minute, 30)
OnBarUpdate()
if (BarsInProgress != 0)
return;
if (BBS(BarsArray[1],2,1.5,20). BarValues.Get(CurrentBar)> 0)
BullLTT = true;
DrawText("TI"+ CurrentBar, "TI "+ BBS(BarsArray[1],2,1.5,20). BarValues.Get(CurrentBar).ToString("0.00") , 0,High[0]+ TickSize *25, Color.Black);
- Show quoted text -
Comment
-
gg80108,
We do not know how your custom indicator is programmed. Please just use the SMA() indicator to see how it is suppose to work. Also, you need to be sure you have enough 30 minute bars to run your strategy. By default you need at least 20 bars on all of your bar series.Josh P.NinjaTrader Customer Service
Comment
-
Started with SMA works good, course its a straight forward indicator with the return value straight forward,,,
Does it mean anything that it works on [0] but doesn't [1].. seems like its almost there or maybe this doesn't work on other time frames if the indicator doesn't have a straightforward return..
Loading 10 days of range bar 10 on the chart.
Comment
-
Please use the SMA to see how it works. Ensure it works on BarsArray[1]. Then you do the same thing on BBS. If it works on SMA and not on BBS then it is an issue with your custom indicator. Unfortunately we are not qualified to make any statements on your custom indicator since we have no idea what it does or how it is programmed.Josh P.NinjaTrader Customer Service
Comment
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by charlesugo_1, 05-26-2026, 05:03 PM
|
0 responses
60 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
147 views
0 likes
|
Last Post
|
||
|
Started by CarlTrading, 05-11-2026, 05:56 AM
|
0 responses
161 views
0 likes
|
Last Post
by CarlTrading
05-11-2026, 05:56 AM
|
||
|
Started by CarlTrading, 05-10-2026, 08:12 PM
|
0 responses
97 views
0 likes
|
Last Post
by CarlTrading
05-10-2026, 08:12 PM
|
||
|
Started by Hwop38, 05-04-2026, 07:02 PM
|
0 responses
284 views
0 likes
|
Last Post
by Hwop38
05-04-2026, 07:02 PM
|

Comment