C# Class Encog.App.Quant.Ninja.NinjaStreamWriter

Mostrar archivo Open project: encog/encog-silverlight-core Class Usage Examples

Public Methods

Method Description
BeginBar ( System.DateTime dt ) : void

Begin a bar, for the specified date/time.

Close ( ) : void

Close the file.

EndBar ( ) : void

End the current bar.

NinjaStreamWriter ( ) : System

Construct the object, and set the defaults.

Open ( String filename, bool headers, CSVFormat format ) : void

Open the file for output.

StoreColumn ( String name, double d ) : void

Store a column.

Private Methods

Method Description
WriteHeaders ( ) : void

Write the headers.

Method Details

BeginBar() public method

Begin a bar, for the specified date/time.
public BeginBar ( System.DateTime dt ) : void
dt System.DateTime The date/time where the bar begins.
return void

Close() public method

Close the file.
public Close ( ) : void
return void

EndBar() public method

End the current bar.
public EndBar ( ) : void
return void

NinjaStreamWriter() public method

Construct the object, and set the defaults.
public NinjaStreamWriter ( ) : System
return System

Open() public method

Open the file for output.
public Open ( String filename, bool headers, CSVFormat format ) : void
filename String The filename.
headers bool True, if headers are present.
format Encog.Util.CSV.CSVFormat The CSV format.
return void

StoreColumn() public method

Store a column.
public StoreColumn ( String name, double d ) : void
name String The name of the column.
d double The value to store.
return void