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 charlesugo_1, 05-26-2026, 05:03 PM
|
0 responses
73 views
0 likes
|
Last Post
by charlesugo_1
05-26-2026, 05:03 PM
|
||
|
Started by DannyP96, 05-18-2026, 02:38 PM
|
1 response
152 views
0 likes
|
Last Post
|
||
|
Started by CarlTrading, 05-11-2026, 05:56 AM
|
0 responses
162 views
0 likes
|
Last Post
by CarlTrading
05-11-2026, 05:56 AM
|
||
|
Started by CarlTrading, 05-10-2026, 08:12 PM
|
0 responses
100 views
0 likes
|
Last Post
by CarlTrading
05-10-2026, 08:12 PM
|
||
|
Started by Hwop38, 05-04-2026, 07:02 PM
|
0 responses
288 views
0 likes
|
Last Post
by Hwop38
05-04-2026, 07:02 PM
|

Comment