NexusFi: Find Your Edge


Home Menu

 





NT indicator disappearing issues?


Discussion in NinjaTrader

Updated
      Top Posters
    1. looks_one mojord with 3 posts (2 thanks)
    2. looks_two Fat Tails with 2 posts (4 thanks)
    3. looks_3 LearnToCode with 1 posts (0 thanks)
    4. looks_4 giogio with 1 posts (0 thanks)
      Best Posters
    1. looks_one Silvester17 with 3 thanks per post
    2. looks_two Fat Tails with 2 thanks per post
    3. looks_3 ratfink with 1 thanks per post
    4. looks_4 mojord with 0.7 thanks per post
    1. trending_up 2,393 views
    2. thumb_up 10 thanks given
    3. group 3 followers
    1. forum 8 posts
    2. attach_file 0 attachments




 
Search this Thread

NT indicator disappearing issues?

  #1 (permalink)
 mojord 
Kansas City, MO
 
Experience: Intermediate
Platform: Tradovate
Trading: ES
Posts: 240 since Jan 2014
Thanks Given: 2,472
Thanks Received: 327

Has anyone experienced an issue with NinjaTrade where some of the indicators you have on your charts do not show up until you scroll the chart backwards? As soon as you move back to the hard right edge they disappear again. It also happens on each day....as I scroll back the indicators will only show up as I make it to that days range.

This is something that has just happened as I didn't have this problem before this week.

Thanks!!
MO

Started this thread Reply With Quote

Can you help answer these questions
from other members on NexusFi?
NT7 Indicator Script Troubleshooting - Camarilla Pivots
NinjaTrader
ZombieSqueeze
Platforms and Indicators
How to apply profiles
Traders Hideout
Trade idea based off three indicators.
Traders Hideout
Pivot Indicator like the old SwingTemp by Big Mike
NinjaTrader
 
Best Threads (Most Thanked)
in the last 7 days on NexusFi
Just another trading journal: PA, Wyckoff & Trends
33 thanks
Tao te Trade: way of the WLD
24 thanks
My NQ Trading Journal
14 thanks
GFIs1 1 DAX trade per day journal
11 thanks
HumbleTraders next chapter
11 thanks
  #2 (permalink)
 mojord 
Kansas City, MO
 
Experience: Intermediate
Platform: Tradovate
Trading: ES
Posts: 240 since Jan 2014
Thanks Given: 2,472
Thanks Received: 327

I have tried to reload historic data and to reset instruments. Same thing.

Started this thread Reply With Quote
  #3 (permalink)
 
Fat Tails's Avatar
 Fat Tails 
Berlin, Europe
Market Wizard
 
Experience: Advanced
Platform: NinjaTrader, MultiCharts
Broker: Interactive Brokers
Trading: Keyboard
Posts: 9,888 since Mar 2010
Thanks Given: 4,242
Thanks Received: 27,102


@mojord: The behaviour can be caused by a custom plot or by multiple bar series loaded with market replay.

Please let us know, which indicators show this behaviour, and whether it was in market replay or on a regular chart.

Reply With Quote
  #4 (permalink)
 
Silvester17's Avatar
 Silvester17 
Columbus, OH
Market Wizard
 
Experience: None
Platform: NT 8, TOS
Trading: ES
Posts: 3,603 since Aug 2009
Thanks Given: 5,139
Thanks Received: 11,527

and also you might get an error message in your log

Reply With Quote
Thanked by:
  #5 (permalink)
 mojord 
Kansas City, MO
 
Experience: Intermediate
Platform: Tradovate
Trading: ES
Posts: 240 since Jan 2014
Thanks Given: 2,472
Thanks Received: 327

After working with Fat Tails it turned out I had an older version of an indicator. As soon as I upgraded it fixed the issues I was having.

Thanks for all your help!!!!

Started this thread Reply With Quote
Thanked by:
  #6 (permalink)
LearnToCode
Danang, VN
 
Posts: 6 since Nov 2013
Thanks Given: 9
Thanks Received: 0

I see NT platform itself very stable.

So, the weird problem can only come from third-party tools, and in your case, the outdated indicator

Reply With Quote
  #7 (permalink)
 
ratfink's Avatar
 ratfink 
Birmingham UK
Market Wizard
 
Experience: Intermediate
Platform: NinjaTrader
Broker: TST/Rithmic
Trading: YM/Gold
Posts: 3,633 since Dec 2012
Thanks Given: 17,423
Thanks Received: 8,425


LearnToCode View Post
I see NT platform itself very stable.

So, the weird problem can only come from third-party tools, and in your case, the outdated indicator

I agree, it is, and nearly all do. Apart from the world famous missing rectangles when scrolling bug.

Travel Well
Visit my NexusFi Trade Journal Reply With Quote
Thanked by:
  #8 (permalink)
 giogio 
Berkeley
 
Experience: Intermediate
Platform: tradestation, ninjatrader
Trading: es
Posts: 4 since Mar 2018
Thanks Given: 1
Thanks Received: 1


mojord View Post
Has anyone experienced an issue with NinjaTrade where some of the indicators you have on your charts do not show up until you scroll the chart backwards?
MO

I found the reason for it after a some debugging of an indicator that I am writing with NT7. This is just to save time to other programmers.

I am writing an indicator that calculates and plots the lowest of the day using:

this.MyLow.Set(myLow);

where myLow is a variable initialized to "double.MinValue". Also I plot it starting at CurrentBar zero, the first bar of the chart.
So I resolved the the problem by changing the initialization value to -0e-99 or by writing:

if (100<CurrentBar) this.MyLow.Set(myLow);

I did not debug it deeper than that as I am fixing it other ways but I also noticed that the problem remains even if I wait for two bars only:

if (2<CurrentBar)

and that's also strange since the code needs one bar only to be evaluated.

Best
G

Reply With Quote
  #9 (permalink)
 
Fat Tails's Avatar
 Fat Tails 
Berlin, Europe
Market Wizard
 
Experience: Advanced
Platform: NinjaTrader, MultiCharts
Broker: Interactive Brokers
Trading: Keyboard
Posts: 9,888 since Mar 2010
Thanks Given: 4,242
Thanks Received: 27,102


giogio View Post
I found the reason for it after a some debugging of an indicator that I am writing with NT7. This is just to save time to other programmers.

I am writing an indicator that calculates and plots the lowest of the day using:

this.MyLow.Set(myLow);

where myLow is a variable initialized to "double.MinValue". Also I plot it starting at CurrentBar zero, the first bar of the chart.
So I resolved the the problem by changing the initialization value to -0e-99 or by writing:

if (100<CurrentBar) this.MyLow.Set(myLow);

I did not debug it deeper than that as I am fixing it other ways but I also noticed that the problem remains even if I wait for two bars only:

if (2<CurrentBar)

and that's also strange since the code needs one bar only to be evaluated.

Best
G


I would possibly disagree with what you have written. Why not post the code of the indicator here and we can easily check it and find the reason why it does not display.

NinjaTrader already comes with an OHL indicator which plots the low of the day. What is your intention when writing a new one?

Reply With Quote




Last Updated on August 2, 2018


© 2024 NexusFi™, s.a., All Rights Reserved.
Av Ricardo J. Alfaro, Century Tower, Panama City, Panama, Ph: +507 833-9432 (Panama and Intl), +1 888-312-3001 (USA and Canada)
All information is for educational use only and is not investment advice. There is a substantial risk of loss in trading commodity futures, stocks, options and foreign exchange products. Past performance is not indicative of future results.
About Us - Contact Us - Site Rules, Acceptable Use, and Terms and Conditions - Privacy Policy - Downloads - Top
no new posts