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 CarlTrading, 03-31-2026, 09:41 PM
|
1 response
156 views
1 like
|
Last Post
|
||
|
Started by CarlTrading, 04-01-2026, 02:41 AM
|
0 responses
90 views
1 like
|
Last Post
by CarlTrading
04-01-2026, 02:41 AM
|
||
|
Started by CaptainJack, 03-31-2026, 11:44 PM
|
0 responses
140 views
2 likes
|
Last Post
by CaptainJack
03-31-2026, 11:44 PM
|
||
|
Started by CarlTrading, 03-30-2026, 11:51 AM
|
0 responses
130 views
1 like
|
Last Post
by CarlTrading
03-30-2026, 11:51 AM
|
||
|
Started by CarlTrading, 03-30-2026, 11:48 AM
|
0 responses
107 views
0 likes
|
Last Post
by CarlTrading
03-30-2026, 11:48 AM
|

Comment