Remove BigCharts pricing feed. Add Robinhood price feed

This commit is contained in:
2025-10-17 18:04:13 -04:00
parent a864a49cb3
commit 20cdbfa942
7 changed files with 678 additions and 965 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,BarChart=5}; // !!IMPORTANT only add to this list.
public enum PriceSource{Other=0,BigCharts=1,Yahoo=2,Fidelity=3,Google=4,BarChart=5,Robinhood=6}; // !!IMPORTANT only add to this list.
private String symbol;
private DateTime date;
private double open;
@@ -379,7 +379,9 @@ namespace MarketData.MarketDataModel
return "Google";
case PriceSource.BarChart :
return "BarChart";
default :
case PriceSource.Robinhood :
return "Robinhood";
default:
return Constants.CONST_QUESTION;
}
}