Initial Commit
This commit is contained in:
19
MarketData/MarketDataLib/Generator/Interface/IPurePosition.cs
Executable file
19
MarketData/MarketDataLib/Generator/Interface/IPurePosition.cs
Executable file
@@ -0,0 +1,19 @@
|
||||
using System;
|
||||
|
||||
namespace MarketData.Generator.Interface
|
||||
{
|
||||
public interface IPurePosition
|
||||
{
|
||||
String Symbol {get; set;}
|
||||
|
||||
DateTime PurchaseDate {get; set;}
|
||||
|
||||
DateTime SellDate {get; set;}
|
||||
|
||||
double CurrentPrice {get; set;}
|
||||
|
||||
double PurchasePrice {get; set;}
|
||||
|
||||
double Shares {get; set;}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user