Add BarChart

This commit is contained in:
2025-06-30 13:17:13 -04:00
parent 99fa821f79
commit 332ed89e5a
3 changed files with 125 additions and 48 deletions

View File

@@ -316,7 +316,7 @@ namespace MarketData.MarketDataModel
// ***************************************************************************************************************************************************************************
public class Price
{
public enum PriceSource{Other=0,BigCharts=1,Yahoo=2,Fidelity=3,Google=4};
public enum PriceSource{Other=0,BigCharts=1,Yahoo=2,Fidelity=3,Google=4,BarChart=5};
private String symbol;
private DateTime date;
private double open;
@@ -377,6 +377,8 @@ namespace MarketData.MarketDataModel
return "Fidelity";
case PriceSource.Google :
return "Google";
case PriceSource.BarChart :
return "BarChart";
default :
return Constants.CONST_QUESTION;
}