You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Most indicator properties are of IndicatorBase<IBaseDataBar> or IndicatorBase<IndicatorDataPoint> type, such as PercentB for BB.
It would be nice if all properties of all indicators would be consistent and constructed in the same manner.
For example, the PeriodsSinceMaximum property of Maximum is an INT and not one of the mentioned data types.
This makes it impossible to access past values of PeriodsSinceMaximum without implementing it myself.
Many other indicator properties are missing the window function.
The text was updated successfully, but these errors were encountered:
Currently the built in window indicator functionality only applies to the Current property. Keeping this issue open so we could potentially expand it generically for all indicator properties
Most indicator properties are of
IndicatorBase<IBaseDataBar>
orIndicatorBase<IndicatorDataPoint>
type, such asPercentB
for BB.It would be nice if all properties of all indicators would be consistent and constructed in the same manner.
For example, the
PeriodsSinceMaximum
property of Maximum is an INT and not one of the mentioned data types.This makes it impossible to access past values of
PeriodsSinceMaximum
without implementing it myself.Many other indicator properties are missing the window function.
The text was updated successfully, but these errors were encountered: