NexusFi: Find Your Edge


Home Menu

 





How to Export DataSeries from NT to Excel?


Discussion in NinjaTrader

Updated
      Top Posters
    1. looks_one MXASJ with 13 posts (28 thanks)
    2. looks_two Fat Tails with 9 posts (6 thanks)
    3. looks_3 Big Mike with 5 posts (0 thanks)
    4. looks_4 Stem1 with 4 posts (0 thanks)
      Best Posters
    1. looks_one MXASJ with 2.2 thanks per post
    2. looks_two baruchs with 1 thanks per post
    3. looks_3 DaveTrading with 1 thanks per post
    4. looks_4 Fat Tails with 0.7 thanks per post
    1. trending_up 41,858 views
    2. thumb_up 43 thanks given
    3. group 27 followers
    1. forum 65 posts
    2. attach_file 20 attachments




 
Search this Thread

How to Export DataSeries from NT to Excel?

  #41 (permalink)
 syxforex 
British Columbia
 
Experience: Advanced
Platform: NINJA
Broker: ZEN
Trading: Crude
Posts: 1,091 since May 2010

Hello Traders,

I'm not a programmer and I don't really have the time to learn all this stuff right now. I simply want to put live options prices into excel 2010. Does anybody know of a developer who will provide the tools to do this at a reasonable cost?

thanks

Visit my NexusFi Trade Journal Reply With Quote

Can you help answer these questions
from other members on NexusFi?
Pivot Indicator like the old SwingTemp by Big Mike
NinjaTrader
Trade idea based off three indicators.
Traders Hideout
Exit Strategy
NinjaTrader
ZombieSqueeze
Platforms and Indicators
NT7 Indicator Script Troubleshooting - Camarilla Pivots
NinjaTrader
 
Best Threads (Most Thanked)
in the last 7 days on NexusFi
Spoo-nalysis ES e-mini futures S&P 500
29 thanks
Just another trading journal: PA, Wyckoff & Trends
25 thanks
Tao te Trade: way of the WLD
24 thanks
Bigger Wins or Fewer Losses?
23 thanks
GFIs1 1 DAX trade per day journal
17 thanks
  #42 (permalink)
 
forrestang's Avatar
 forrestang 
Chicago IL
 
Experience: None
Platform: Ninja, MT4, Matlab
Broker: CQG, AMP, MB, DTN
Trading: E/U, G/U
Posts: 1,329 since Jun 2010
Thanks Given: 354
Thanks Received: 1,047

Has anyone used a manipulated spreadhseet formatting through NT/C# successfully? I can't figure out how to change specific cells properties.

Writing to a sheet is easy. I'm trying to figure out how to format specific cells based on various conditions.

To post to a cell I am using:
 
Code
excelSheet.Cells[row,column] = xlodCol;
Also, to change the values of a static group of cells, you can use:
 
Code
				excelRange = excelSheet.get_Range("B1","B201");
				excelRange.Interior.Color = System.Drawing.ColorTranslator.ToOle(System.Drawing.Color.Cornsilk);
				excelRange.Font.Bold = true;
				excelRange.ClearContents();
The above code will color and bolden font for Cells B1 to B201 . My problem is that I want to change individual cells based on a stored Row/Column number, instead of having to reference a cell with Letters "B1" for example.

Does anyone have the snippet for doing that?


Example Reference

Reply With Quote
  #43 (permalink)
 nickdsc 
Toronto, Canada
 
Experience: Beginner
Platform: NinjaTrader, MultiCharts
Trading: Forex, oil, stocks, options
Posts: 15 since Mar 2012
Thanks Given: 23
Thanks Received: 3


Hi guys,

Do you know how to do a similar export for chart indicator data/plots?

For example, I have a number of third party locked indicators and want to programatically access and export data they plot on the chart alongside the data series.

I tried writing a strategy and referencing the indicators in code but the code does not compile when referencing locked indicators (works for open ones...).

Is there a way through reflection using the Ninja chart objects or something like that?

Please assist as I banged my head and read through the forum until blue.

Thanks
Nick

Reply With Quote
  #44 (permalink)
 
Big Mike's Avatar
 Big Mike 
Manta, Ecuador
Site Administrator
Developer
Swing Trader
 
Experience: Advanced
Platform: Custom solution
Broker: IBKR
Trading: Stocks & Futures
Frequency: Every few days
Duration: Weeks
Posts: 50,443 since Jun 2009
Thanks Given: 33,217
Thanks Received: 101,603


nickdsc View Post
Hi guys,

Do you know how to do a similar export for chart indicator data/plots?

For example, I have a number of third party locked indicators and want to programatically access and export data they plot on the chart alongside the data series.

I tried writing a strategy and referencing the indicators in code but the code does not compile when referencing locked indicators (works for open ones...).

Is there a way through reflection using the Ninja chart objects or something like that?

Please assist as I banged my head and read through the forum until blue.

Thanks
Nick

If the vendor did not make the plots accessible, there is nothing you can do except complain to the vendor and ask for your money back. Maybe they will comply, or give you a version that is not so restricted.

Mike

We're here to help: just ask the community or contact our Help Desk

Quick Links: Change your Username or Register as a Vendor
Searching for trading reviews? Review this list
Lifetime Elite Membership: Sign-up for only $149 USD
Exclusive money saving offers from our Site Sponsors: Browse Offers
Report problems with the site: Using the NexusFi changelog thread
Follow me on Twitter Visit my NexusFi Trade Journal Reply With Quote
  #45 (permalink)
 nickdsc 
Toronto, Canada
 
Experience: Beginner
Platform: NinjaTrader, MultiCharts
Trading: Forex, oil, stocks, options
Posts: 15 since Mar 2012
Thanks Given: 23
Thanks Received: 3


Big Mike View Post
If the vendor did not make the plots accessible, there is nothing you can do except complain to the vendor and ask for your money back. Maybe they will comply, or give you a version that is not so restricted.

Mike

I get the compile error when referencing the indicator (variable declaration) and not when trying to get the plots.
So there is a chance I am doing something wrong referencing it.
Being locked unsure how to check the name...

BTW: is there a way for an indicator to restrict its plots (only)?

My basic idea is that if an indicator is on the chart I should be able to get to it and at least call some methods by reflection.
Would appreciate some insights to correct my thinking if not right.

Cheers
Nick

Reply With Quote
  #46 (permalink)
 
GridKing's Avatar
 GridKing 
San Diego, CA USA
 
Experience: Intermediate
Platform: NinjaTrader
Trading: ES
Posts: 3,630 since May 2011
Thanks Given: 584
Thanks Received: 881

Hi @Fat Tails or anyone, I found this thread and was wondering if this is the route I should take or is there a different thread which goes further into your search for a solution... Is this what you still use or have things changed, Thanks for help and time

I would like not live data to be able to pull historical to excel automatically and use the data from there ...

(or did this end up being the christmas present thread )

"Successful trading is one long journey, not a destination" Peter Borish Former Head of Research for Paul Tudor Jones speaking on conversations with John F. Carter
Visit my NexusFi Trade Journal Reply With Quote
  #47 (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


GridKing View Post
Hi @Fat Tails or anyone, I found this thread and was wondering if this is the route I should take or is there a different thread which goes further into your search for a solution... Is this what you still use or have things changed, Thanks for help and time

I would like not live data to be able to pull historical to excel automatically and use the data from there ...

(or did this end up being the christmas present thread )

Have not exported data recently, will come back when I use it again.

Started this thread Reply With Quote
Thanked by:
  #48 (permalink)
 
GridKing's Avatar
 GridKing 
San Diego, CA USA
 
Experience: Intermediate
Platform: NinjaTrader
Trading: ES
Posts: 3,630 since May 2011
Thanks Given: 584
Thanks Received: 881


Fat Tails View Post
Have not exported data recently, will come back when I use it again.

Thank You, I was able to get the BigMikesExcel Indicator to work but would still like to know what methods you prefer when you get around to it, Thanks for all you do

"Successful trading is one long journey, not a destination" Peter Borish Former Head of Research for Paul Tudor Jones speaking on conversations with John F. Carter
Visit my NexusFi Trade Journal Reply With Quote
  #49 (permalink)
 blueground 
Boulder CO
 
Experience: Advanced
Platform: NT, TS
Trading: EC
Posts: 7 since Jan 2011
Thanks Given: 3
Thanks Received: 4

Trying to run ExportData strat on most recent 7....12 v of NT. It seems to install but I have nothing showing under strategies. Am I doing something wrong, or are there additional instructions on how to use this indicator?

Thanks in advance for any advice.

Reply With Quote
  #50 (permalink)
 snusnufreak 
Moscow Russia
 
Experience: Intermediate
Platform: NinjaTrader
Trading: futures
Posts: 127 since Apr 2012
Thanks Given: 44
Thanks Received: 53



blueground View Post
Trying to run ExportData strat on most recent 7....12 v of NT. It seems to install but I have nothing showing under strategies. Am I doing something wrong, or are there additional instructions on how to use this indicator?

Thanks in advance for any advice.

Have the same issue on NT7, I also was wondering if ExportData supports an export of an indicator data? In particular I'm interested in Gomi's Delta Volume - I want to export not only volume per bar but also bid/ask volume and their delta. Anyone knows how to do it?

Regards,
snu.

Reply With Quote




Last Updated on April 28, 2014


© 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