Skip to content

Commit 1a7fbe8

Browse files
committed
prev commit fix
1 parent 25e621a commit 1a7fbe8

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

Algo/Indicators/AdaptivePriceZone.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,7 @@ public override void Load(SettingsStorage storage)
149149
}
150150

151151
/// <inheritdoc />
152-
protected override IAdaptivePriceZoneValue CreateValue(DateTimeOffset time)
152+
protected override IAdaptivePriceZoneValue CreateValue(DateTime time)
153153
=> new AdaptivePriceZoneValue(this, time);
154154
}
155155

@@ -216,7 +216,7 @@ public interface IAdaptivePriceZoneValue : IComplexIndicatorValue
216216
/// </remarks>
217217
/// <param name="indicator">The parent AdaptivePriceZone indicator.</param>
218218
/// <param name="time">Time associated with this indicator value.</param>
219-
public class AdaptivePriceZoneValue(AdaptivePriceZone indicator, DateTimeOffset time) : ComplexIndicatorValue<AdaptivePriceZone>(indicator, time), IAdaptivePriceZoneValue
219+
public class AdaptivePriceZoneValue(AdaptivePriceZone indicator, DateTime time) : ComplexIndicatorValue<AdaptivePriceZone>(indicator, time), IAdaptivePriceZoneValue
220220
{
221221
/// <inheritdoc />
222222
public IIndicatorValue MovingAverageValue => this[TypedIndicator.MovingAverage];

0 commit comments

Comments
 (0)