Thx.
Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
Putting the 1 minute 200 SMA on a 3 minute chart
Collapse
X
-
-
Here's one way you can do it (perhaps not optimal though):Originally posted by kmpc1 View PostI would like to have a 3 minute chart, but would like to have the 200SMA (one minute on there). No other items are one minute) ... just the 200SMA. Thx.
1. Go to Big Mike Trading dot com
2. Make a donation to become an "elite member"
3. Download the indicator called "Visual SMA Multi-Timeframe"
This indicator will allow you to do exactly what you're asking about. You can even plot minute based SMAs on range and renko charts (or vice versa) if you want.
Sorry this suggestion isn't free, but it's the only one I know of. Also, I'm not trying to promote the above website, it just happens to be where this indicator resides.
Comment
-
kmpc1,
In Initialize() add the minute bars:
Add(PeriodType.Minute, 1);
In OnBarUpdate() put:
if (BarsInProgress != 0) return; //Makes sure that the primary bars are the ones being updated
Plot0.Set(SMA(BarsArray[1], 200)[0]); //Set the SMA plot using the 1 min bars.
VT
Comment
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by argusthome, 03-08-2026, 10:06 AM
|
0 responses
110 views
0 likes
|
Last Post
by argusthome
03-08-2026, 10:06 AM
|
||
|
Started by NabilKhattabi, 03-06-2026, 11:18 AM
|
0 responses
59 views
0 likes
|
Last Post
|
||
|
Started by Deep42, 03-06-2026, 12:28 AM
|
0 responses
37 views
0 likes
|
Last Post
by Deep42
03-06-2026, 12:28 AM
|
||
|
Started by TheRealMorford, 03-05-2026, 06:15 PM
|
0 responses
41 views
0 likes
|
Last Post
|
||
|
Started by Mindset, 02-28-2026, 06:16 AM
|
0 responses
78 views
0 likes
|
Last Post
by Mindset
02-28-2026, 06:16 AM
|

Comment