NexusFi: Find Your Edge


Home Menu

 





jteconnews stopped working


Discussion in NinjaTrader

Updated
      Top Posters
    1. looks_one Fat Tails with 25 posts (40 thanks)
    2. looks_two Silvester17 with 11 posts (14 thanks)
    3. looks_3 j0hnth0m with 11 posts (6 thanks)
    4. looks_4 steve2222 with 10 posts (10 thanks)
      Best Posters
    1. looks_one MWinfrey with 4 thanks per post
    2. looks_two Fat Tails with 1.6 thanks per post
    3. looks_3 Silvester17 with 1.3 thanks per post
    4. looks_4 steve2222 with 1 thanks per post
    1. trending_up 64,167 views
    2. thumb_up 116 thanks given
    3. group 38 followers
    1. forum 156 posts
    2. attach_file 41 attachments




 
Search this Thread

jteconnews stopped working

  #61 (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,103

Short addendum to post #44:

Just to avoid future freezes, it is best to modify the jtEconNews indicator as follows:

Class Variables: only declare the variable

 
Code
 private string ffNewsUrl = "";
Also delete LoadNews() in the Initialize Section, and shift it to OnStartUp():

 
Code
protected override void OnStartUp()
		{
			try
			{
				ffNewsUrl = @"http://www.forexfactory.com/ffcal_week_this.xml"; 
			}
			catch (Exception ex)
			{
				Print("Caught exception in OnStartUp: " + ex.ToString());
			}
			LoadNews();
		}
Works well like this, and it eliminates the threat of another NinjaTrader freeze.

Reply With Quote
Thanked by:

Can you help answer these questions
from other members on NexusFi?
REcommedations for programming help
Sierra Chart
Trade idea based off three indicators.
Traders Hideout
Better Renko Gaps
The Elite Circle
NexusFi Journal Challenge - May 2024
Feedback and Announcements
ZombieSqueeze
Platforms and Indicators
 
  #62 (permalink)
 
PandaWarrior's Avatar
 PandaWarrior 
In the heat
 
Experience: None
Posts: 3,165 since Mar 2010
Thanks Given: 6,329
Thanks Received: 13,405


Silvester17 View Post
I don't know about the add in version, but for JtEconNews2 and TSEcoNews those are cs files that need to be changed. didn't even have to restart nt7.

Cant find the TSEcoNews indie...any idea where I can get it?

Simplicity is the ultimate sophistication, Leonardo da Vinci


Most people chose unhappiness over uncertainty, Tim Ferris
Reply With Quote
  #63 (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



aztrader9 View Post
Cant find the TSEcoNews indie...any idea where I can get it?

sure. here's the link:

TradingStudies - Economic News

(you still need to make the changes in the EcoNewsControl file)

Attached Files
Elite Membership required to download: TSEcoNews.zip
Reply With Quote
Thanked by:
  #64 (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,103


aztrader9 View Post
Cant find the TSEcoNews indie...any idea where I can get it?

It is also available on the NinjaTrader Forum.

Links and Downloads Manager - [AUTOLINK]NinjaTrader[/AUTOLINK] Support Forum

Reply With Quote
Thanked by:
  #65 (permalink)
 steve2222 
Auckland, New Zealand
 
Experience: Beginner
Platform: Sierra Chart
Broker: AMP/CQG
Trading: Whatever moves in my timezone
Posts: 1,896 since Sep 2009
Thanks Given: 3,379
Thanks Received: 1,540


aztrader9 View Post
I use the add in that rests at the bottom of the screen. It has not worked since the 18th. Screen shot attached.

I tried MWinfry's solution and it compiled the indie but this is still not working....

I think this is just an add in for the indie referenced in this thread but I like this version so much better.

Any ideas......and by the way, I think this is an xml file and not a cs file.....see second attachment...

Sure would appreciate any help you guys could give...

Thanks

Hi @aztrader9

What is the ADR indi you are using shown in top left corner of image 1 on post #57 in this thread?

Is it avaialble somewhere?

Sorry to all for being slightly off topic.

Reply With Quote
  #66 (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,103


steve2222 View Post
Hi @aztrader9

What is the ADR indi you are using shown in top left corner of image 1 on post #57 in this thread?

Is it avaialble somewhere?

Sorry to all for being slightly off topic.


SessionVolatilityBands



You can display the bands, the ranges, or it also has a current day OHL indicator. But you to not need to display everything that is available.

Attached Thumbnails
Click image for larger version

Name:	6E 03-11 (15 Min) 23_02_2011.jpg
Views:	327
Size:	96.2 KB
ID:	31684  
Reply With Quote
Thanked by:
  #67 (permalink)
 steve2222 
Auckland, New Zealand
 
Experience: Beginner
Platform: Sierra Chart
Broker: AMP/CQG
Trading: Whatever moves in my timezone
Posts: 1,896 since Sep 2009
Thanks Given: 3,379
Thanks Received: 1,540


Fat Tails View Post
Short addendum to post #44:

Just to avoid future freezes, it is best to modify the jtEconNews indicator as follows:

Class Variables: only declare the variable

 
Code
 private string ffNewsUrl = "";
Also delete LoadNews() in the Initialize Section, and shift it to OnStartUp():

 
Code
protected override void OnStartUp()
		{
			try
			{
				ffNewsUrl = @"http://www.forexfactory.com/ffcal_week_this.xml"; 
			}
			catch (Exception ex)
			{
				Print("Caught exception in OnStartUp: " + ex.ToString());
			}
			LoadNews();
		}
Works well like this, and it eliminates the threat of another NinjaTrader freeze.

Hi @Fat Tails

Struggling a bit here.
Exactly what rows do I delete to replace with the new code - the 2nd part of your code?

I have done the first bit editing the class variable. But is the 2nd bit somewhere around row 160? If so how many rows do I delete to replace with the new code?

Attached Thumbnails
Click image for larger version

Name:	Fat tails.JPG
Views:	250
Size:	93.2 KB
ID:	31796  
Reply With Quote
  #68 (permalink)
 
bluemele's Avatar
 bluemele 
Honolulu, Hawaii
 
Experience: Intermediate
Platform: NinjaTrader
Broker: ATC/TT, AMP/Zen-Fire, AMP/CQG
Trading: TF
Posts: 2,543 since Jun 2010
Thanks Given: 3,803
Thanks Received: 2,842


aztrader9 View Post
Cant find the TSEcoNews indie...any idea where I can get it?

AZ, I use the same indicator. If you find a fix, please PM me. I like the one that hides out and hits you upside the head. I think that is the DLL version though that I was using. When I upgraded to the new BETA, it wiped me out.

Visit my NexusFi Trade Journal Reply With Quote
  #69 (permalink)
 
Alan's Avatar
 Alan 
Sydney - Australia
 
Experience: Intermediate
Platform: Ninja Trader
Broker: Velocity Futures
Trading: ES, 6E
Posts: 153 since Jun 2009
Thanks Given: 1,442
Thanks Received: 144

I have tried to modify the indi as advised but still can not get it to work properly. Please can somebody post a fixed and updated indi here for NT7.

What is the name of the indicator that needs to be modified?

Thanks - Alan

Reply With Quote
  #70 (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,103



steve2222 View Post
Hi @Fat Tails

Struggling a bit here.
Exactly what rows do I delete to replace with the new code - the 2nd part of your code?

I have done the first bit editing the class variable. But is the 2nd bit somewhere around row 160? If so how many rows do I delete to replace with the new code?

The idea is as follows. There are two little steps that you need to shift to OnStartUp().

First Step: Setting the Variable ffNewsUrl

So you need to modify line 78, just to declare the variable at this stage with an empty string.

Second Step: Calling LoadNews()

This is shifted from Initialize() to OnStartUp(). You just need to delete the one row LoadNews() within the Initialize bracket.

To understand this: You can only load the news, once the variable is set. You only want to set the variable in OnStartUp() to avoid future crashes. So you can only load the news afterwards, that is in OnStartUp() as well.

You do not need to touch private void LoadNews().

Reply With Quote
Thanked by:




Last Updated on June 19, 2021


© 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