Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
fuzzy candles
Collapse
X
-
if(sInstrumentName == "" || sInstrumentName == null )
{
nDataSeriesIndex =0;
}
else
{
AddDataSeries(sInstrumentName, Data.BarsPeriodType.Minute, nTimeFrame, Data.MarketDataType.Last);
nDataSeriesIndex = 1;
}
when the instrument name is activated and when it reads the market data the candles can get fuzzy if the timeframes are different
Comment
-
Hello ballboy11,
Thank you for your response.
Would you be willing to let us test out the full code for this on our end? If so, please send the exported file (instructions belows) to platformsupport[at]ninjatrader[dot]com with 'ATTN: Patrick H' in the subject line and a reference to this thread in the body of the email.
You can export your indicator by going to Tools > Export > NinjaScript Add On > Add > select your indicator > OK > Export > name the file 'NTsupport' > Save. The file will be located under Documents\NinjaTrader 8\bin\Custom\ExportNinjaScript.
I look forward to your response.
Comment
-
Hello ballboy11,
During the indicator development cycle, I have also encountered many of the "fuzzy candles" issues. Each time, it is a result of accessing data that is out of the valid range. After this event, NT8 will continue to display the chart but without completing other additional activities. The appearance of the chart looks "fuzzy". I was able to find the delinquent code by using the Visual Studio debugger, which would stop at the code and provide a description of the error. The data values can then be viewed to find the culprit.
Comment
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by Mindset, 04-21-2026, 06:46 AM
|
0 responses
64 views
0 likes
|
Last Post
by Mindset
04-21-2026, 06:46 AM
|
||
|
Started by M4ndoo, 04-20-2026, 05:21 PM
|
0 responses
93 views
0 likes
|
Last Post
by M4ndoo
04-20-2026, 05:21 PM
|
||
|
Started by M4ndoo, 04-19-2026, 05:54 PM
|
0 responses
48 views
0 likes
|
Last Post
by M4ndoo
04-19-2026, 05:54 PM
|
||
|
Started by cmoran13, 04-16-2026, 01:02 PM
|
0 responses
106 views
0 likes
|
Last Post
by cmoran13
04-16-2026, 01:02 PM
|
||
|
Started by PaulMohn, 04-10-2026, 11:11 AM
|
0 responses
63 views
0 likes
|
Last Post
by PaulMohn
04-10-2026, 11:11 AM
|

Comment