DateTime.parse("20090401 000100");
Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
Exporting Historical Data (Date Format Issue)
Collapse
X
-
Exporting Historical Data (Date Format Issue)
When I export my historical data, the date value is in this format:
C# cannot parse this through:20090401 000100
My question is, is there a way to edit the format in which it outputs the date? If not, do any of you know of a workaround to get the date string into the correct format?Code:Tags: None
-
zwentz,
Maybe there is some misunderstanding here. Exporting historical data exports a text file. Text files contain just numbers. Numbers are not DateTime objects as seen in C#.
If you want to create a DateTime out of those numbers you need to just create the object in a manner acceptable.
DateTime someVar = new DateTime(year, month, day, hour, minute, second)
You will need to parse the string yourself.Josh P.NinjaTrader Customer Service
Comment
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by argusthome, 03-08-2026, 10:06 AM
|
0 responses
111 views
0 likes
|
Last Post
by argusthome
03-08-2026, 10:06 AM
|
||
|
Started by NabilKhattabi, 03-06-2026, 11:18 AM
|
0 responses
59 views
0 likes
|
Last Post
|
||
|
Started by Deep42, 03-06-2026, 12:28 AM
|
0 responses
38 views
0 likes
|
Last Post
by Deep42
03-06-2026, 12:28 AM
|
||
|
Started by TheRealMorford, 03-05-2026, 06:15 PM
|
0 responses
41 views
0 likes
|
Last Post
|
||
|
Started by Mindset, 02-28-2026, 06:16 AM
|
0 responses
78 views
0 likes
|
Last Post
by Mindset
02-28-2026, 06:16 AM
|

Comment