all i need is concept of how it can be done. i can program it out.. if its already there, let me know so i dont need to reinvest the wheel
Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
how to use the Daily OHLC indicator as candle
Collapse
X
-
how to use the Daily OHLC indicator as candle
i use intraday charts and would like to see how to plot daily OHLC as cancle to see how the candle is evolving at the hourly snapshot. Can this be done? I use the daily OHLC as a line plot overlay on the hourly bars but really i would like to see the hourly snapshot of the daily bar
all i need is concept of how it can be done. i can program it out.. if its already there, let me know so i dont need to reinvest the wheelTags: None
-
Hi junkone, thanks for posting. The Spread indicator has a candle stick version. You can use this as an example of how to do this:
This is a conversion of the Spread Indicator with Candlesticks. Please contact the original author for any questions or comments.
Kind regards,
-ChrisL
The NinjaTrader Ecosystem website is for educational and informational purposes only and should not be considered a solicitation to buy or sell a futures contract or make any other type of investment decision. The add-ons listed on this website are not to be considered a recommendation and it is the reader's responsibility to evaluate any product, service, or company. NinjaTrader Ecosystem LLC is not responsible for the accuracy or content of any product, service or company linked to on this website.
-
Comment
-
[ATTACH]n1205429[/ATTACH] i think we are discussing varied points.
CurrentDayOHL uses a double to show the properties.
public Series<double> CurrentOpen
{
get { return Values[0]; }
}
As you can see from screenshot, the format displayed is 5 decimal places
I am assigning the same value to DailyBarsIntraday indicator.
DailyOpen[0] = CurrentDayOHL().CurrentOpen[0]; // line number 93
the properties is as follows
[Browsable(false)]
[XmlIgnore]
public Series<double> DailyOpen
{
get { return Values[3]; }
}
However the values shown is truncated to 3 decimal places.
This does not make sense. how do i fix it?
Comment
-
the code you attached made the difference. Now i could really use the candle stick option for the indicators plots. hopefully it can handle the scaling which is really off here.
public override string FormatPriceMarker(double price)
{
//Print(price);
return price.ToString("N5");
}
Comment
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by Geovanny Suaza, 02-11-2026, 06:32 PM
|
0 responses
647 views
0 likes
|
Last Post
|
||
|
Started by Geovanny Suaza, 02-11-2026, 05:51 PM
|
0 responses
369 views
1 like
|
Last Post
|
||
|
Started by Mindset, 02-09-2026, 11:44 AM
|
0 responses
108 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
572 views
1 like
|
Last Post
|
||
|
Started by RFrosty, 01-28-2026, 06:49 PM
|
0 responses
573 views
1 like
|
Last Post
by RFrosty
01-28-2026, 06:49 PM
|

Comment