Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
exporting OHLC data with time stamp
Collapse
X
-
exporting OHLC data with time stamp
Is there any way to export historical daily OHLC data with time stamp, so that we know at exactly what time High and low happened, Please let me know if you can extract that from ES or CL historical data file from ninja or Gomi data. Thanks for your helpTags: None
-
Export facility in the Historical Data Manager?
-
Hello edassery,
Yes, you may use the Historical Data Manager to be able to Export Data from you computer including Daily Data, but the only time stamp it will have is going to be the Date. The Daily Data is going to be reported directly from your Data Provider so there is no time stamps besides the date for the daily data.
Let us know if you have any questions.JCNinjaTrader Customer Service
Comment
-
-
Hi.... a newbie here....
How can i export Tick data charts to a csv file?
Am focusing on the 1500 tick chart of the mini russell 2000.
So my objective is to export 1500 tick data chart, capture timestamps, OHLC values of the 1500 tick chart.
Any help on how to do this will be highy appreciated.
Cheers... TonyLii
Comment
-
Hello TonyLii,
Welcome to the NinjaTrader Support Forums!
For something like that you may use a custom indicator to be able to Print() out the value to the Output window.
For example:
Then the values will be placed in the Output windows were you may right click inside of this window and select Save As to save it as a text file and convert it over to a "csv" file if you wish.Code:protected override void OnBarUpdate() { Print("Time: "+Time[0]+" Open: "+Open[0]+" High: "+High[0]+" Low: "+Low[0]+" Close: "+Close[0]); }
Happy to be of further assistance.JCNinjaTrader Customer Service
Comment
-
Look at the picture that I posted in my post of 01-05-2014 07:21 PM. Export the Tick data instead of the minute data.Originally posted by TonyLii View PostHi.... a newbie here....
How can i export Tick data charts to a csv file?
Am focusing on the 1500 tick chart of the mini russell 2000.
So my objective is to export 1500 tick data chart, capture timestamps, OHLC values of the 1500 tick chart.
Any help on how to do this will be highy appreciated.
Cheers... TonyLii
Comment
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by Geovanny Suaza, 02-11-2026, 06:32 PM
|
0 responses
600 views
0 likes
|
Last Post
|
||
|
Started by Geovanny Suaza, 02-11-2026, 05:51 PM
|
0 responses
347 views
1 like
|
Last Post
|
||
|
Started by Mindset, 02-09-2026, 11:44 AM
|
0 responses
103 views
0 likes
|
Last Post
by Mindset
02-09-2026, 11:44 AM
|
||
|
Started by Geovanny Suaza, 02-02-2026, 12:30 PM
|
0 responses
558 views
1 like
|
Last Post
|
||
|
Started by RFrosty, 01-28-2026, 06:49 PM
|
0 responses
558 views
1 like
|
Last Post
by RFrosty
01-28-2026, 06:49 PM
|

Comment