Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
ploting values and signals on candlestick chart from volumetric bars data .
Collapse
X
-
I case you mean by candlestick chart a chart that is based on time, you can add a second data series the chart and use it as the input series to indicators on your primary chart. However I don't know if the visualization of the second data series can be suppressed.
A second option is to rewrite the indicators that require a custom input to add the data series you desire.
Code:else if (State == State.Configure) { AddDataSeries(Data.BarsPeriodType.Volume, 2000); } .... protected override void OnBarUpdate() { if(BarsInProgress != 1) { return; }Last edited by MojoJojo; 02-23-2020, 08:56 AM.
- Likes 1
-
Thank you so much i will try the sameOriginally posted by MojoJojo View PostI case you mean by candlestick chart a chart that is based on time, you can add a second data series the chart and use it as the input series to indicators on your primary chart. However I don't know if the visualization of the second data series can be suppressed.
A second option is to rewrite the indicators that require a custom input to add the data series you desire.
Code:else if (State == State.Configure) { AddDataSeries(Data.BarsPeriodType.Volume, 2000); } .... protected override void OnBarUpdate() { if(BarsInProgress != 1) { return; }
- Likes 1
Comment
-
Thank you , actually i want to make an indicator based on Volumetric data and use the signals and values on normal candlestick chart.Originally posted by NinjaTrader_ChelseaB View PostHello avrege,
Are you wanting to call Order Flow Volumetric bars information in an indicator?
Below is a link to the help guide on calling Volumetric bars.
https://ninjatrader.com/support/help...tric_bars2.htm
Comment
-
Hello avrege,
Unfortunately, using continuous contracts (##-##) is not supported by NinjaTrader with Interactive Brokers.
NinjaTrader will automatically merge historical data with the MergeBackAdjusted merge policy.
Chelsea B.NinjaTrader Customer Service
Comment
-
ok if made possible in near future it will be great for many traders using IB data.Thank you.Originally posted by NinjaTrader_ChelseaB View PostHello avrege,
Unfortunately, using continuous contracts (##-##) is not supported by NinjaTrader with Interactive Brokers.
NinjaTrader will automatically merge historical data with the MergeBackAdjusted merge policy.
Comment
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by Geovanny Suaza, 02-11-2026, 06:32 PM
|
0 responses
580 views
0 likes
|
Last Post
|
||
|
Started by Geovanny Suaza, 02-11-2026, 05:51 PM
|
0 responses
336 views
1 like
|
Last Post
|
||
|
Started by Mindset, 02-09-2026, 11:44 AM
|
0 responses
102 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
554 views
1 like
|
Last Post
|
||
|
Started by RFrosty, 01-28-2026, 06:49 PM
|
0 responses
552 views
1 like
|
Last Post
by RFrosty
01-28-2026, 06:49 PM
|

Comment