Skip to content

Commit

Permalink
Remove index resolution limitations (#8519)
Browse files Browse the repository at this point in the history
- Remove index resolution limitations being imposed
  • Loading branch information
Martin-Molinero authored Jan 10, 2025
1 parent 8937995 commit 8ad1016
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Common/Data/BaseData.cs
Original file line number Diff line number Diff line change
Expand Up @@ -250,7 +250,7 @@ public virtual Resolution DefaultResolution()
/// custom data types can override it</remarks>
public virtual List<Resolution> SupportedResolutions()
{
if (Symbol.SecurityType.IsOption() || Symbol.SecurityType == SecurityType.Index)
if (Symbol.SecurityType.IsOption())
{
return OptionResolutions;
}
Expand Down

0 comments on commit 8ad1016

Please sign in to comment.