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

説明

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
Crypto
+3
Consecutive Series Moves — Reveal the True Pulse of Price Action
インジケーター
Volume
Channel
+5
Spots volatility squeezes before they fire — the compression phase everyone else misses.
インジケーター
The long awaited new and improved Supply Demand Premium V2 indicator. Unlock greater trading opportunities now!
インジケーター
Prop
Forex
+12
Identify and trade breakouts with Consolidation Zones! Visualize price consolidation areas for trading opportunities.
インジケーター
Prop
Forex
+7
Multi-timeframe moving averages with session lines for structured trend analysis directly on the chart.
インジケーター
Volume
Key Levels
+2
Support and resistance from a rolling volume profile, ranked by strength or recency, updated live.
インジケーター
ADX
ATR
+5
Signal Quality Score - 0-100 filter combining RSI, Volume, ATR, Trend Strength & Alignment. Works on ANY chart type.
インジケーター
ATR
Volume
+3
Fibonacci trend signals on closed bars, with an ATR stop, up to four targets and a break-even ladder.
インジケーター
Prop
Forex
+13
Identifies market compression zones and explosive Breakout moments using mathematical modeling.
インジケーター
MultiTF Pivot and SR Indicator
インジケーター
ATR
BOS
+5
Know how strong each Supertrend flip is: scored BUY/SELL, structure stop + 3 targets, live win-rate dashboard, alerts.
インジケーター
RSI
Breakout
+1
🚀 TrendHeikinMultiMA: Advanced trend detection using Heikin-Ashi smoothing & MAs! Eliminates noise, confirms real trend
インジケーター
ATR
Forex
+4
Advanced MA crossover indicator. All MA types supported. Clear signals with customizable arrows Perfect for all trader
インジケーター
Engulfing
Fibonacci
+4
Six higher-timeframe candle sets on one chart, with liquidity sweep detection and swept levels.
インジケーター
Parabolic SAR Alert - Trend reversal alerts with smart signals & custom alerts.
インジケーター
Forex
BTCUSD
+7
🚀 TMAX RBA Indicator - The Ultimate Multi-Timeframe Momentum System 🚀
インジケーター
VWAP
Volume
+5
Session VWAP with standard deviation bands, previous session level, custom anchor time, and crossover alerts.
インジケーター
ATR
Prop
+6
🟢 Strength-ranked S/R zones with MTF levels and Pro labels. Nearest-zone band and HUD for faster, cleaner entries. 🔴

価格

28.78M
取引数量
68.13K
獲得pips
78
販売
17.1K
無料インストール