string filename = @"C:\StrategyFiles\PivOscDiv\" + Instrument.FullName + "MinBars(" + minBars+ ")PivAvgPeriod(" +iPivotAverage+ ")" + @"Loser.txt";
if(File.Exists(filename) == false)
{
using (sw = new StreamWriter(File.Create(filename)));
{
for(int i =0; i < mfeTempLoserList.Count -1; i++)
{
sw.WriteLine("mfeTempLoserList[i]");
}
}
}
Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
Using StreamWriter in OnTermination
Collapse
X
-
Using StreamWriter in OnTermination
When I use the code below in OnTermination I get the error "Cannot write to a closed TextWriter." on the first attempt to write to the file that has just been created. I looked on Google and its saying that it could be down to a disposed resource, could this have something to do with it being called in OnTermination. If not any idea why this is happening?,
Code:Tags: None
-
No its the first time its called here , the only other time sw is mentioned is under Variables;
Code:private StreamWriter sw;
Comment
-
Its pretty long can I email it to you?
Here is the relevant code, I can email to whole thing if you need it,
Code:protected override void OnTermination() { Directory.CreateDirectory(@"C:\StrategyFiles\PivOscDiv\"); string filename = @"C:\StrategyFiles\PivOscDiv\" + Instrument.FullName + "MinBars(" + minBars+ ")PivAvgPeriod(" +iPivotAverage+ ")" + @"Loser.txt"; if(File.Exists(filename) == false) { using (sw = new StreamWriter(File.Create(filename))); { for(int i =0; i < mfeTempLoserList.Count -1; i++) { sw.WriteLine("test"); } } } }Last edited by GKonheiser; 10-02-2014, 07:06 AM.
Comment
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by Hwop38, 05-04-2026, 07:02 PM
|
0 responses
154 views
0 likes
|
Last Post
by Hwop38
05-04-2026, 07:02 PM
|
||
|
Started by CaptainJack, 04-24-2026, 11:07 PM
|
0 responses
307 views
0 likes
|
Last Post
by CaptainJack
04-24-2026, 11:07 PM
|
||
|
Started by Mindset, 04-21-2026, 06:46 AM
|
0 responses
244 views
0 likes
|
Last Post
by Mindset
04-21-2026, 06:46 AM
|
||
|
Started by M4ndoo, 04-20-2026, 05:21 PM
|
0 responses
345 views
0 likes
|
Last Post
by M4ndoo
04-20-2026, 05:21 PM
|
||
|
Started by M4ndoo, 04-19-2026, 05:54 PM
|
0 responses
176 views
0 likes
|
Last Post
by M4ndoo
04-19-2026, 05:54 PM
|

Comment