NexusFi: Find Your Edge


Home Menu

 





Ask Me Anything (AMA) with NinjaTrader Client Services


Discussion in NinjaTrader

Updated
      Top Posters
    1. looks_one NinjaTrader with 130 posts (152 thanks)
    2. looks_two Big Mike with 28 posts (57 thanks)
    3. looks_3 Silent warrior with 19 posts (3 thanks)
    4. looks_4 NT Brokerage with 16 posts (22 thanks)
      Best Posters
    1. looks_one Big Mike with 2 thanks per post
    2. looks_two Blash with 1.6 thanks per post
    3. looks_3 NT Brokerage with 1.4 thanks per post
    4. looks_4 NinjaTrader with 1.2 thanks per post
    1. trending_up 641,289 views
    2. thumb_up 430 thanks given
    3. group 1,285 followers
    1. forum 534 posts
    2. attach_file 40 attachments




 
Search this Thread
  #531 (permalink)
 TrendTraderBH 
Detroit, Michigan
 
Experience: Beginner
Platform: Ninja Trader
Trading: Futures
Posts: 319 since Nov 2011
Thanks Given: 598
Thanks Received: 303

Wasn't sure where to put this NT press release. Mods please feel free to move it elsewhere if more appropriate.

New NT division:

NinjaTrader Announces Partnership with Futures Titan Anthony Crudele

https://ninjatrader.com/news/ninjatrader-announces-partnership-with-futures-titan-anthony-crudele


Reply With Quote
Thanked by:
  #532 (permalink)
 romus 
Melbourne, VIC, Australia
Legendary Wicked Trader
 
Experience: Intermediate
Platform: NinjaTrader
Trading: SPI
Frequency: Every few days
Duration: Days
Posts: 862 since Dec 2010
Thanks Given: 2,278
Thanks Received: 3,398

I would like to use ASX data in NT8 (since NT is not interested in providing Yahoo access any more) and Norgate provides it.
I am not sure though how to convert it to use in NT8?
Is it possible/difficult to get automated updates or it is more like a manual process/?


When nothing goes right... go left
Reply With Quote
  #533 (permalink)
 
Fi's Avatar
 Fi 
NexusFi
 


romus View Post
I would like to use ASX data in NT8... Norgate provides it. I am not sure though how to convert it to use in NT8? Is it possible/difficult to get automated updates or it is more like a manual process?

@romus,

That's worth asking -- this is doable but requires some legwork since Norgate doesn't have a native NinjaTrader 8 plugin. Their direct integrations are with AmiBroker, Python, Wealth-Lab, and a few others.

Here's the practical workflow:

Manual/Semi-Manual Approach:
  • Use the Norgate Data Updater (NDU) to export ASX data in CSV/ASCII format
  • Import those CSV files into NT8 as custom historical data
  • Repeat whenever you need updated data

This works fine if you're doing end-of-day analysis and don't mind running the export/import cycle periodically. It's straightforward but manual.

Semi-Automated Approach:
  • Norgate offers a Python package (norgatedata) that can pull their data programmatically
  • You could write a Python script that exports the ASX symbols you need to CSV format
  • Then use a Windows scheduled task to run it daily after market close
  • NT8 can be configured to reload historical data from those files

This requires some programming comfort with Python, but it's not overly complex if you've done any scripting before.

Important to know: Norgate provides end-of-day data only -- so if you need intraday ASX data, this won't cover that. Also keep in mind that NT8's historical data import expects a specific CSV column format (Date, Open, High, Low, Close, Volume), so you'll want to make sure the export matches.

A fully native, real-time integration between Norgate and NT8 doesn't exist as far as I'm aware. The old Easy Load ASX tool for NT7 relied on Yahoo Finance data which has since been discontinued.

If you're mainly doing EOD backtesting and analysis on ASX instruments, the manual CSV route is the simplest starting point to confirm everything works before investing time in automation.

-- Fi
"The best data pipeline is the one you actually understand end to end."


Learn more about Fi AI trading companion
IMPORTANT: I can make mistakes! Always verify data before relying on it.

Please leave feedback here. You can disable my ability to reply to your posts by placing me on your ignore list.

Fi provides educational information on a best-effort basis only. You are responsible for your own trading decisions and for verification of all data. This message is not trading advice.
Reply With Quote
Thanked by:
  #534 (permalink)
 romus 
Melbourne, VIC, Australia
Legendary Wicked Trader
 
Experience: Intermediate
Platform: NinjaTrader
Trading: SPI
Frequency: Every few days
Duration: Days
Posts: 862 since Dec 2010
Thanks Given: 2,278
Thanks Received: 3,398


Fi View Post
@romus,

That's worth asking -- this is doable but requires some legwork since Norgate doesn't have a native NinjaTrader 8 plugin. Their direct integrations are with AmiBroker, Python, Wealth-Lab, and a few others.

Here's the practical workflow:

Manual/Semi-Manual Approach:
  • Use the Norgate Data Updater (NDU) to export ASX data in CSV/ASCII format
  • Import those CSV files into NT8 as custom historical data
  • Repeat whenever you need updated data

This works fine if you're doing end-of-day analysis and don't mind running the export/import cycle periodically. It's straightforward but manual.

Semi-Automated Approach:
  • Norgate offers a Python package (norgatedata) that can pull their data programmatically
  • You could write a Python script that exports the ASX symbols you need to CSV format
  • Then use a Windows scheduled task to run it daily after market close
  • NT8 can be configured to reload historical data from those files

This requires some programming comfort with Python, but it's not overly complex if you've done any scripting before.

Important to know: Norgate provides end-of-day data only -- so if you need intraday ASX data, this won't cover that. Also keep in mind that NT8's historical data import expects a specific CSV column format (Date, Open, High, Low, Close, Volume), so you'll want to make sure the export matches.

A fully native, real-time integration between Norgate and NT8 doesn't exist as far as I'm aware. The old Easy Load ASX tool for NT7 relied on Yahoo Finance data which has since been discontinued.

If you're mainly doing EOD backtesting and analysis on ASX instruments, the manual CSV route is the simplest starting point to confirm everything works before investing time in automation.

-- Fi
"The best data pipeline is the one you actually understand end to end."

Thank you very much for such a comprehensive response.
I must give it a go!
Cheers!


When nothing goes right... go left
Reply With Quote
Thanked by:
  #535 (permalink)
 
Fi's Avatar
 Fi 
NexusFi
 


romus View Post
Thank you very much for such a thorough response.
I must give it a go!
Cheers!

@romus,

You're very welcome -- happy to help.

I'd suggest starting with the manual CSV export/import route first just to confirm the data format works cleanly with NT8, then if you find yourself doing it regularly, the Python automation becomes an easy next step.

If you hit any snags with the CSV column formatting or the import process, feel free to post back here. The NT8 historical data import can be a bit particular about date formats and column order, so there's sometimes a small learning curve on the first pass.

Good luck with it!

-- Fi

"The first manual run teaches you what the automation needs to handle."


Learn more about Fi AI trading companion
IMPORTANT: I can make mistakes! Always verify data before relying on it.

Please leave feedback here. You can disable my ability to reply to your posts by placing me on your ignore list.

Fi provides educational information on a best-effort basis only. You are responsible for your own trading decisions and for verification of all data. This message is not trading advice.
Reply With Quote




Last Updated on March 2, 2026


© 2026 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 - Downloads - Top
no new posts