present
新規登録で初回購入時に$50オフ
Trading product for CRT Indcator インジケーター Signal Indices, image 1
CRT Indcator
インジケーター
275 ダウンロード数
バージョン 1.0、Oct 2025
Windows、Mac
Trading product for CRT Indcator インジケーター Signal Indices, image 2
28.5M
取引数量
51.52K
獲得pips
76
販売
13.6K
無料インストール

説明

CRTIndicatorを使用してストップロスとテイクプロフィットのレベルを設定するcBotを作成しました。
アイデアは、前のローソク足(CandleIndexで指定)のCRTレベル(高値、中間、安値)を使用して、新しい取引のストップロスとテイクプロフィットを設定することです。

手順:

  1. ある条件(テスト用のパラメータとして定義する)に基づいて取引(買いまたは売り)を開くcBotを作成します。
  2. CRTIndicatorを使用して、前のローソク足(ユーザーが設定するローソク足インデックス)からレベルを取得します。
  3. 買い取引の場合、ストップロスを参照ローソク足のCRT低値に、テイクプロフィットをCRT高値に設定します。
  4. 売り取引の場合、ストップロスを参照ローソク足のCRT高値に、テイクプロフィットをCRT低値に設定します。

ただし、私たちが持っているCRTIndicatorは各ローソク足のレベルを計算してプロットするだけです。
cBotからインジケーターにアクセスして、関心のある特定のローソク足の値を取得する必要があります。

cBotの設計をしましょう:

パラメータ:

  • CandleIndex:どの前のローソク足を使うか(0 = 現在、1 = 前の足、など)
  • TradeType:テスト用に買いと売りを選択するパラメータを設定するか、移動平均クロスオーバーのようなシグナルを使って決定します。
    簡単にするために、取引タイプを選択するパラメータを作りましょう。

ただし注意:ライブ取引では、エントリーのためのいくつかの条件を使用します。既存のポジションがなければ現在のローソク足で取引を開く単純なcBotを作ります。

チャートの時間枠で取引していると仮定します。

cBotの手順:

  1. ポジションが開いているか確認し、なければ開くことを検討します。
  2. 指定されたCandleIndex(現在に対して過去のローソク足)についてCRTIndicatorの値を取得します。
  3. 買い取引の場合:
    ストップロス = 参照ローソク足のCRT低値
    テイクプロフィット = 参照ローソク足のCRT高値
  4. 売り取引の場合:
    ストップロス = 参照ローソク足のCRT高値
    テイクプロフィット = 参照ローソク足のCRT低値

ただし、インジケーターは各インデックスごとに計算しています。固定のCandleIndexオフセットを使っているため、すべてのインデックスで同じ値をプロットしています。
しかしcBotでは、指定されたCandleIndexのために現在の時間(最新の完了したローソク足)でインジケーターからレベルを取得したいのです。

重要:インジケーターのCalculateメソッドは各インデックスで呼ばれ、現在のインデックスで参照ローソク足(インデックス - CandleIndex)の値を保存します。
したがって、特定の過去のローソク足のCRTレベルを取得したい場合は、そのローソク足のインデックスでインジケーターの出力シリーズを読み取ればよいのですか?
ただし注意:インジケーターの出力は現在のインデックスに合わせられています。実際、インジケーターは以下のように設定しているため、すべてのバーで同じ値をプロットしています:
CRTHigh[index] = crtHigh; // crtHighは(index - CandleIndex)ローソク足の高値

つまり、インデックス100でCandleIndex=1の場合、インデックス99の高値を取得してインデックス100にプロットしています。

これは、CandleIndex本前のローソク足のCRTレベルを取得したい場合、現在のバー(インデックス)でインジケーターの出力を取得すれば、そのCandleIndex本前のレベルが得られることを意味します。

しかし、cBotではOnBarまたはOnTickを実行します。最も最近完了したバー(インデックス = MarketSeries.Close.Count - 2)に関心があり、欲しいローソク足は(現在のインデックス - CandleIndex)です。

または、インジケーターを変更して参照ローソク足と同じインデックスでレベルを出力することもできますが、その場合はプロットをCandleIndex分シフトする必要があります。

しかし現在のインジケーターは、前のバーから現在のバーにレベルをプロットするように設計されています。したがって、CandleIndex=1の場合、各バーで前のバーのレベルをプロットしています。

cBotでの使い方:

cBotにインジケーターを追加し、最も最近のバー(インデックス = MarketSeries.Close.Count - 1)の値を取得します。これによりCandleIndex本前のバーのレベルが得られます。

例:
現在のバーのインデックス = 最終バー(インデックス = MarketSeries.Close.Count - 1)
このインデックスでのインジケーター出力(CRTHigh[MarketSeries.Close.Count-1])は、(現在のインデックス - CandleIndex)バーの高値です。

ただし、インジケーターのCalculateメソッドは各過去バーおよび新しいバーごとに呼ばれます。したがって、最終バーの出力シリーズには欲しい値が含まれています。

cBotのコードを書きましょう:

パラメータを用意します:
[Parameter("Candle Index", DefaultValue = 1, MinValue = 0)]
public int CandleIndex { get; set; }

[Parameter("Trade Type", DefaultValue = TradeType.Buy)]
public TradeType SelectedTradeType { get; set; }

[Parameter("Volume (Lots)", DefaultValue = 1, MinValue = 0.01, Step = 0.01)]
public double Volume { get; set; }

CRTIndicatorのインスタンスも作成します。

OnBarの手順:
ポジションがなければ、現在のバーのインジケーター出力(CandleIndex本前のレベルに対応)からストップロスとテイクプロフィットを設定して新規ポジションを開きます。

ただし注意:インジケーターの現在のバー(最終バー)に対する出力は(現在のバーのインデックス - CandleIndex)のレベルに設定されています。しかし最初の方では十分なバー数があることを確認する必要があります。

概要

AIによる概要
The CRT Indicator product includes a cBot that utilizes the CRTIndicator to set stop loss and take profit levels based on specific candle data. It operates by referencing the high, mid, and low CRT levels of a previous candle, determined by a user-defined CandleIndex parameter. The cBot can open buy or sell trades according to a selectable trade type parameter. For buy trades, the stop loss is set at the CRT low and take profit at the CRT high of the referenced candle; for sell trades, these levels are reversed. The indicator calculates and plots CRT levels for each candle, with the cBot accessing these values at the current bar index to retrieve levels from the specified past candle. The cBot checks for existing positions and opens new trades on the current candle if none are open, using the CRT levels for trade management. Parameters include CandleIndex (to select the reference candle), trade type (buy or sell), and trade volume in lots. The product supports various markets including Forex, indices, commodities, and cryptocurrencies, and integrates with common trading symbols such as EURUSD, GBPUSD, XAUUSD, BTCUSD, and NAS100. It is designed to work on the chart’s timeframe and can be used for strategies involving signals or manual trade type selection.
インジケーターのプロフィール

カスタマーレビュー

0.0
レビュー: 0
カスタマーレビュー
この商品にはまだレビューがありません。お使いになったことがある方は、ぜひレビューをお願いします。

ディスカッション

よくあるご質問

Signal
Indices
Commodities
GBPUSD
RSI
Bollinger
Fibonacci
Scalping
AI
XAUUSD
NAS100
MACD
BTCUSD
Forex
Breakout
EURUSD
NZDUSD
Martingale
Prop
ZigZag
Supertrend
Fair Value Gap
SMC
Crypto
Grid
Stocks
ATR
USDJPY
VWAP
cTrader Storeで入手可能な取引ボット、インジケーター、プラグインなどの商品は、第三者の開発者が提供するものであり、情報と技術の取得のみを目的としてご利用いただけます。cTrader Storeはブローカーではなく、投資助言や個人的な推奨を行うことも、将来のパフォーマンスを保証することもありません。

この作成者の他の商品

cBot
ATR
RSI
+3
GoldScalperPro is a high-speed automated trading bot designed for precision scalping on gold (XAUUSD).
cBot
AI
RSI
+8
ORB cBot: Comprehensive Opening Range Breakout Strategy for XAU/USD
cBot
AI
Prop
+5
Golden Trap Model - cTrader cBot
cBot
AI
ATR
+5
Ai_ScalperPro Max is a sophisticated automated trading robot designed specifically for gold (XAUUSD) trading
100%
ROI
2.44
プロフィットファクター
インジケーター
SMC
Forex
+9
Automatically identify and visualize Fair Value Gaps (FVGs) with entry zones, fill tracking, and customizable alerts.
cBot
AI
ADX
+5
Gold Scalper Pro XAU M15 – Release Notes Version 2.0 – ATR‑Based Scalping Robot for XAU/USD
2.34
プロフィットファクター
インジケーター
AI
ATR
+15
Engulfing Candle Indicator Pro
cBot
AI
ATR
+8
ORB Smart Money Bot for XAUUSD is a sophisticated algorithmic trading system specifically optimized for Gold (XAUUSD).
cBot
Forex
NAS100
+5
Session-based trading bot with intelligent trailing stops. Captures Asia range, trades London/NY breakouts
8.86
プロフィットファクター
インジケーター
ATR
SMC
+2
HTF POWER 3 ICT Power of 3 · M1 Precision · H4 Intelligence Auto-detect Accumulation → Manipulation → Distribution
cBot
ATR
XAUUSD
+1
XAUUSD Engulfing Master - Professional Trading Bot
41.3%
ROI
1.85
プロフィットファクター
cBot
MACD
Forex
+5
CRT Trading_bot
100%
ROI
2.13
プロフィットファクター

これも好きかも

インジケーター
Forex
BTCUSD
+10
6-stage IIR filter trend indicator with colored line segments, reversal signals, alerts, and entry arrows.
インジケーター
BOS
CHOCH
+4
Dual-track market structure detection with BVC order flow confirmation and two-stage liquidity sweep validation.
インジケーター
Key Levels
Order Block
+2
It monitors trend lines on price charts and fires multi-channel alerts and optionally places trades when price crosses..
「Stochastic RSI PRO」ロゴ
トップ評価
4.6
(6)
$28
/
$40
インジケーター
RSI
Prop
+14
Unlock Stochastic RSI PRO in cTrader! Overlay RSI, highlight zones, and identify divergences with customizable settings.
インジケーター
Prop
Forex
+5
Pivot Point with base zone daily Asia-London-New york Session.
インジケーター
Area of Interest with the power of AI to detect the market interest.
インジケーター
Forex
BTCUSD
+5
Simple ICT Concepts
インジケーター
ATR
RSI
+7
Three ZigZag lines
インジケーター
This code is a custom scalping indicator for the cTrader platform.
インジケーター
Forex
EURUSD
+5
With this Fibonacci retracement indicator, traders have full control over the retracement levels displayed on the chart.
インジケーター
BOS
CHOCH
+3
Identifies HH, HL, LH, and LL swing points using fractals. Essential for Smart Money Concepts and price action.
インジケーター
ATR
Volume
+5
Order blocks with measured hold-rate stats and confidence scoring — not just zones on a chart.
インジケーター
ATR
RSI
+7
📊 Shows volume by price levels, highlights POC, and key zones. Identifies dynamic support/resistance and imbalances.
インジケーター
Breakout
Allow trader to visualize Support & Resistance across different timeframes,give trader an overview of the current market
インジケーター
Forex
BTCUSD
+4
This indicator is designed to perform multiple non-linear regression analysis using four independent variables.
インジケーター
The Advanced Volume Profile Indicator calculates POC, Median, and Mode, revealing key price levels for smarter trading.
インジケーター
Key Levels
Liquidity Sweep
Professional Opening Range Breakout, Initial Balance, False breakout Detection
インジケーター
ATR
RSI
+5
Advanced Anchored VWAP for cTrader: volatility bands, real‑time alerts & customizable session resets.

価格

28.5M
取引数量
51.52K
獲得pips
76
販売
13.6K
無料インストール