"Doji Engulf" 标识
指标
3 下载
版本 1.0, Jul 2025
Windows 版、Mac 版
3
免费安装

using cAlgo.API;

using cAlgo.API.Indicators;

using cAlgo.API.Internals;

using System;


namespace cAlgo.Indicators

{

[Indicator(TimeZone = TimeZones.UTC, AccessRights = AccessRights.None)]

public class DojiStrategyIndicator : Indicator

{

[Parameter("Doji size", DefaultValue = 0.05, MinValue = 0.01, Step = 0.01)]

public double DojiSize { get; set; }


[Parameter("Long Candle Ratio", DefaultValue = 0.7, MaxValue = 1, Step = 0.1)]

public double LongCandleRatio { get; set; }


[Parameter("Use Volume Filter?", DefaultValue = false)]

public bool UseVolumeFilter { get; set; }


[Parameter("Volume Moving Average Period", DefaultValue = 24)]

public int VolumeMA { get; set; }


[Parameter("RSI Period", DefaultValue = 14)]

public int RSIPeriod { get; set; }


[Parameter("Wick-to-Body Ratio", DefaultValue = 2.5, MinValue = 1.0, Step = 0.1)]

public double WickToBodyRatio { get; set; }


private MovingAverage volumeMA;

private RelativeStrengthIndex rsi;


[Output("Doji Signal", Color = Colors.Orange, PlotType = PlotType.Points, Thickness = 2)]

public IndicatorDataSeries DojiSignal { get; set; }


protected override void Initialize()

{

if (UseVolumeFilter)

volumeMA = Indicators.MovingAverage(MarketSeries.TickVolume, VolumeMA, MovingAverageType.Simple);


rsi = Indicators.RelativeStrengthIndex(MarketSeries.Close, RSIPeriod);

}


public override void Calculate(int index)

{

double body = MarketSeries.Close[index] - MarketSeries.Open[index];

double range = MarketSeries.High[index] - MarketSeries.Low[index];

double abody = Math.Abs(body);

double ratio = abody / range;


bool isDoji = abody <= range * DojiSize;

bool goStar = isDoji && (!UseVolumeFilter || MarketSeries.TickVolume[index] > volumeMA.Result[index]);


if (goStar && IsHigherTimeFrame(out int timeFrameNumber, out string label))

{

DojiSignal[index] = MarketSeries.Close[index]; // 在图表上标记十字星

Chart.DrawIcon("Doji" + TimeFrame.ToString() + index, ChartIconType.Diamond, index, MarketSeries.Close[index], Color.Orange);


// 用实线突出显示十字星蜡烛的高点和低点,延伸至接下来的3根蜡烛

HighlightDojiHighLow(index, timeFrameNumber, label);

}


// SMT背离检测现在应用于所有时间框架

DetectSMTDivergence(index);

}


private bool IsHigherTimeFrame(out int timeFrameNumber, out string label)

{

timeFrameNumber = 0;

label = string.Empty;


if (TimeFrame == TimeFrame.Minute15)

{

timeFrameNumber = 15;

label = "0.25";

return true;

}

else if (TimeFrame == TimeFrame.Minute30)

{

timeFrameNumber = 30;

label = "0.5";

return true;

}

else if (TimeFrame == TimeFrame.Minute45)

{

timeFrameNumber = 45;

label = "0.75";

return true;

}

else if (TimeFrame == TimeFrame.Hour)

{

timeFrameNumber = 1;

label = "1";

return true;

}

else if (TimeFrame == TimeFrame.Hour2)

{

timeFrameNumber = 2;

label = "48";

return true;

}

else if (TimeFrame == TimeFrame.Hour4)

{

timeFrameNumber = 4;

label = "4";

return true;

}

else if (TimeFrame == TimeFrame.Daily)

{

timeFrameNumber = 24;

label = "24";

return true;

}

else if (TimeFrame == TimeFrame.Weekly)

{

timeFrameNumber = 168;

label = "W";

return true;

}

else if (TimeFrame == TimeFrame.Monthly)

{

timeFrameNumber = 720;

label = "M";

return true;

}


return false;

}


private void HighlightDojiHighLow(int dojiIndex, int timeFrameNumber, string label)

{

double dojiHigh = MarketSeries.High[dojiIndex];

double dojiLow = MarketSeries.Low[dojiIndex];


// 在十字星蜡烛的高点和低点绘制实线水平线,延伸至接下来的3根蜡烛

Chart.DrawTrendLine("DojiHighLine" + TimeFrame.ToString() + dojiIndex, dojiIndex, dojiHigh, dojiIndex + 3, dojiHigh, Color.Blue, 2, LineStyle.Solid).IsInteractive = true;

Chart.DrawTrendLine("DojiLowLine" + TimeFrame.ToString() + dojiIndex, dojiIndex, dojiLow, dojiIndex + 3, dojiLow, Color.Red, 2, LineStyle.Solid).IsInteractive = true;


// 在蓝线旁边添加时间框架编号或标签文本

Chart.DrawText("TimeFrameHigh" + TimeFrame.ToString() + dojiIndex, label, dojiIndex + 3, dojiHigh, Color.Green).IsInteractive = true;

}


private void DetectSMTDivergence(int index)

{

// 检查当前高点或低点是否与RSI形成背离

double currentHigh = MarketSeries.High[index];

double currentLow = MarketSeries.Low[index];


double prevHigh = MarketSeries.High[index - 1];

double prevLow = MarketSeries.Low[index - 1];


double currentRSI = rsi.Result[index];

double prevRSI = rsi.Result[index - 1];


bool isWickDivergence = IsWickDivergence(index, currentHigh, currentLow, prevHigh, prevLow);


if (isWickDivergence)

{

// 看跌背离:价格创出更高高点,RSI创出更低高点

if (currentHigh > prevHigh && currentRSI < prevRSI)

{

// 在图表上用该时间框架的唯一标识符标记背离

Chart.DrawIcon("BearishDivergence" + TimeFrame.ToString() + index, ChartIconType.DownArrow, index, currentHigh, Color.Red);

}


// 看涨背离:价格创出更低低点,RSI创出更高低点

if (currentLow < prevLow && currentRSI > prevRSI)

{

// 在图表上用该时间框架的唯一标识符标记背离

Chart.DrawIcon("BullishDivergence" + TimeFrame.ToString() + index, ChartIconType.UpArrow, index, currentLow, Color.Green);

}

}

}


private bool IsWickDivergence(int index, double currentHigh, double currentLow, double prevHigh, double prevLow)

{

double currentBody = Math.Abs(MarketSeries.Close[index] - MarketSeries.Open[index]);

double currentRange = currentHigh - currentLow;


double prevBody = Math.Abs(MarketSeries.Close[index - 1] - MarketSeries.Open[index - 1]);

double prevRange = prevHigh - prevLow;


// 判断当前蜡烛是否具有小实体和长影线

bool currentHasLongWicks = (currentHigh - MarketSeries.Close[index]) > currentBody * WickToBodyRatio &&

(MarketSeries.Open[index] - currentLow) > currentBody * WickToBodyRatio;


// 判断前一个蜡烛是否具有小实体和长影线

bool prevHasLongWicks = (prevHigh - MarketSeries.Close[index - 1]) > prevBody * WickToBodyRatio &&

(MarketSeries.Open[index - 1] - prevLow) > prevBody * WickToBodyRatio;


return currentHasLongWicks || prevHasLongWicks;

}

}

}

指标配置
0.0
评价:0
客户评价
该产品尚无评价。已经试过了?抢先告诉其他人!
cTrader Store 提供的所有产品,包括交易机器人、指标和插件,均由第三方开发者提供,仅供信息参考和技术访问之用。cTrader Store 并非经纪商,不提供投资建议、个人推荐或任何未来业绩保证。

该作者的其他作品

指标
The Session Golden Hours indicator is designed for serious traders looking to visualize high-probability

猜您喜欢

指标
ATR
MACD
+5
The Follow Line Indicator is a versatile tool designed to identify market trends and provide accurate buy/sell signals.
指标
AI
SMC
+5
Chart control panel — zoom presets, timeframe selector, favorite chart buttons, chart type switcher, and bid/ask lines.
指标
ADX
ATR
+5
Signal Quality Score - 0-100 filter combining RSI, Volume, ATR, Trend Strength & Alignment. Works on ANY chart type.
指标
RSI
VegaXLR's cTrader StochRSI identifies overbought/oversold RSI levels for precise trade entries.
指标
Liquidity Grab
Liquidity Sweep
+1
CRT Sweep Tracker is an advanced panel for Candle Range Theory (CRT) traders to track HTF sweeps and manage live trades.
"ZigZag" 标识
评分最高
4.3
(6)
免费
指标
ATR
RSI
+7
ZigZag filters noise, spots trends, patterns, pivots, aiding analysis, trade management, and confirmations. 📉📈
指标
SMC
Forex
+5
Pure Price Action ICT Tools
指标
Key Levels
Professional Market Profile
指标
AI
ATR
+25
On-chart draggable panel to show/hide Positions & Pending Orders with fixed warning banner and inline alerts per symbol.
指标
Forex
NZDUSD
+2
RCS: 8 majors! AUD,USD,EUR,JPY,GBP,CAD,CHF,NZD. Find how strong each currency is relatively and trade smarter!
指标
EMA
SMA
+3
MACD indicator modeled after TradingView, featuring a 4-color momentum histogram, sound/pop-up crossover alerts.
指标
Signal
This Fair Value Gap (FVG) indicator is a technical analysis on multi-timeframe.
指标
Forex
EURUSD
+4
Check the correlations between dozens of assets in one elegant display.
指标
Forex
Signal
+1
Great signal indicator, works with bollinger bands and heikin ashi candles! one of our latest innovations!
指标
Forex
Crypto
+2
HTF Candle
"VA Footprint" 标识
评分最高
4.5
(4)
$50
/
$75
指标
SMC
Prop
+4
VA Footprint is HFT resistant, order flow chart that measures the true intent by every price level.
指标
RSI
SMC
+3
High Low Divergence is a clean, overlay indicator that automatically identifies swing highs and swing lows
指标
Signal
Trades Opening Range Breakouts Indicator with dynamic stops/targets adapting to market volatility.
3
免费安装