C# Класс Encog.App.Quant.Ninja.NinjaStreamWriter

Показать файл Открыть проект Примеры использования класса

Открытые методы

Метод Описание
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.

Приватные методы

Метод Описание
WriteHeaders ( ) : void

Write the headers.

Описание методов

BeginBar() публичный Метод

Begin a bar, for the specified date/time.
public BeginBar ( System.DateTime dt ) : void
dt System.DateTime The date/time where the bar begins.
Результат void

Close() публичный Метод

Close the file.
public Close ( ) : void
Результат void

EndBar() публичный Метод

End the current bar.
public EndBar ( ) : void
Результат void

NinjaStreamWriter() публичный Метод

Construct the object, and set the defaults.
public NinjaStreamWriter ( ) : System
Результат System

Open() публичный Метод

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.
Результат void

StoreColumn() публичный Метод

Store a column.
public StoreColumn ( String name, double d ) : void
name String The name of the column.
d double The value to store.
Результат void