Heikin-Ashi
Created by Munehisa Homma, Heikin-Ashi is a modified candlestick pattern that transforms prices based on prior period prices for smoothing. [Discuss] 💬
// C# usage syntax
IReadOnlyList<HeikinAshiResult> results =
bars.ToHeikinAshi();Historical price bars requirements
You must have at least two periods of bars to cover the warmup periods; however, more is typically provided since this is a chartable candlestick pattern.
bars is a collection of generic TBar historical price bars. It should have a consistent frequency (day, hour, minute, etc). See the Guide for more information.
Response
IReadOnlyList<HeikinAshiResult>- This method returns a time series of all available indicator values for the
barsprovided. - It always returns the same number of elements as there are in the historical price bars.
- It does not return a single incremental indicator value.
HeikinAshiResultis based onIBar, so it can be used as a direct replacement forbars.
HeikinAshiResult
| property | type | description |
|---|---|---|
Timestamp | DateTime | Date from evaluated TBar |
Open | decimal | Modified open price |
High | decimal | Modified high price |
Low | decimal | Modified low price |
Close | decimal | Modified close price |
Volume | decimal | Volume (same as bars) |
Utilities
.ToBars() to convert to a
Barcollection. Example:csharpIReadOnlyList<Bar> results = bars .ToHeikinAshi() .ToBars();
See Utilities and helpers for more information.
Chaining
Results are based in IBar and can be further used in any indicator.
// example
var results = bars
.ToHeikinAshi(..)
.ToRsi(..);This indicator must be generated from bars and cannot be generated from results of another chain-enabled indicator or method.
See Chaining indicators for more.
Streaming
Use the buffer-style List<T> when you need incremental calculations without a hub:
HeikinAshiList heikinAshiList = new();
foreach (IBar bar in bars) // simulating stream
{
heikinAshiList.Add(bar);
}
// based on `ICollection<HeikinAshiResult>`
IReadOnlyList<HeikinAshiResult> results = heikinAshiList;Subscribe to a BarHub for advanced streaming scenarios:
BarHub barHub = new();
HeikinAshiHub observer = barHub.ToHeikinAshiHub();
foreach (IBar bar in bars) // simulating stream
{
barHub.Add(bar);
}
IReadOnlyList<HeikinAshiResult> results = observer.Results;See Buffer lists and Stream hubs for full usage guides.