Indicator result decimal? or double? #1244
KlekotOliwa
started this conversation in
Dev notes
Replies: 1 comment
-
Yes, intentional. Over time we’ve reduced the use of |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I have a question, most result type returns double? values, however AtrStopResult returns decimal? values
public sealed class AtrStopResult : ResultBase
{
public AtrStopResult(DateTime date)
{
Date = date;
}
public decimal? AtrStop { get; set; }
public decimal? BuyStop { get; set; }
public decimal? SellStop { get; set; }
}
Is this intentional or a mistake?
Beta Was this translation helpful? Give feedback.
All reactions