Add BarChart supplemental feed

This commit is contained in:
2025-06-27 21:38:37 -04:00
parent bd93d7af44
commit 3fb36991ff
4 changed files with 308 additions and 84 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}; // !!IMPORTANT only add to this list.
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;
}