Marubozu

Marubozu is a single-bar candlestick pattern that has no wicks, representing consistent directional movement. [Discuss] 💬

chart for Marubozu

// C# usage syntax
IEnumerable<CandleResult> results =
  quotes.GetMarubozu(minBodyPercent);

Parameters

minBodyPercent double - Optional. Minimum body size as a percent of total candle size. Example: 85% would be entered as 85 (not 0.85). Must be between 80 and 100, if specified. Default is 95 (95%).

Historical quotes requirements

You must have at least one historical quote; however, more is typically provided since this is a chartable candlestick pattern.

quotes is a collection of generic TQuote historical price quotes. It should have a consistent frequency (day, hour, minute, etc). See the Guide for more information.

Response

IEnumerable<CandleResult>

CandleResult

Date DateTime - Date

Price decimal - Price of the most relevant OHLC candle element when a signal is present

Match Match - Indicates a matching signal type for this candlestick pattern

Candle CandleProperties - Details of the candle properties

Utilities

See Utilities and helpers for more information.