if(File.Exists(filename)== false)
{
using (StreamWriter sw = new StreamWriter(File.Create(filename)));
{
for(int i =0; i < mfeTempLoserList.Count -1; i++)
{
sw.WriteLine("test");
}
}
}
Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
StreamWriter problem
Collapse
X
-
StreamWriter problem
I am trying to use streamwriter to record data to file but my syntax must be off, this is what I have and it wont compile:-
Code: -
-
Hi Again,
I getting a null ref error on my code using streamwriter now, not sure why.
I get the null error on second instance of sw, sw.WriteLine(mfeTempWinnerList[i]); when I look at it in Visual Studio it has sw as null?
Code:if(File.Exists(filename) == false) { using (StreamWriter sw = new StreamWriter(File.Create(filename))); { for(int i =0; i < mfeTempLoserList.Count -1; i++) { sw.WriteLine(mfeTempLoserList[i]); } } } filename = @"C:\Users\gkonh_000\Documents\NinjaTrader 7\StrategyFiles\PivOscDiv\" + Instrument.FullName + "MinBars(" + minBars+ ")PivAvgPeriod(" +iPivotAverage+ ")" + @"Winner.txt"; Print(filename); if(File.Exists(filename) == false) { using (StreamWriter sw = new StreamWriter(File.Create(filename))); { for(int i =0; i < mfeTempWinnerList.Count -1; i++) { sw.WriteLine(mfeTempWinnerList[i]); } } }
Comment
-
why would the object be null when I instantiate it just before its called, am I calling it incorrectly?
Comment
-
I'm not exactly sure, but the fact that its null will create an issue calling it this way. I would think the issue is in using two local sw's with the using statement that would take care of the dispose process for you. If you continue to use it for another writing operation, I would just create and use one instance of it.
Comment
-
I fixed the Null problem by removing StreamWriter:-
so from this:-
to this:-Code:using (StreamWriter sw = new StreamWriter(File.Create(filename)));
Code:using (sw = new StreamWriter(File.Create(filename)));
But now i am getting error "Cannot write to a closed TextWriter." will google and see what comes up
Comment
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by Hwop38, 05-04-2026, 07:02 PM
|
0 responses
163 views
0 likes
|
Last Post
by Hwop38
05-04-2026, 07:02 PM
|
||
|
Started by CaptainJack, 04-24-2026, 11:07 PM
|
0 responses
313 views
0 likes
|
Last Post
by CaptainJack
04-24-2026, 11:07 PM
|
||
|
Started by Mindset, 04-21-2026, 06:46 AM
|
0 responses
245 views
0 likes
|
Last Post
by Mindset
04-21-2026, 06:46 AM
|
||
|
Started by M4ndoo, 04-20-2026, 05:21 PM
|
0 responses
350 views
0 likes
|
Last Post
by M4ndoo
04-20-2026, 05:21 PM
|
||
|
Started by M4ndoo, 04-19-2026, 05:54 PM
|
0 responses
179 views
0 likes
|
Last Post
by M4ndoo
04-19-2026, 05:54 PM
|

Comment