Initial Commit

This commit is contained in:
2025-03-25 21:42:32 -04:00
parent c266eecfeb
commit 30c33d3cfd
247 changed files with 60107 additions and 0 deletions

View 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;}
}
}