Description
Indicator for cTrader that displays the high and low prices of a specified Bar.
The line will be drawn starting from the Bar where the high and low prices were made.
It can display the daily, weekly, and monthly highs and lows at the same time.
--Changeable parameters--
・Hide/Show
・Bar to be displayed
・Line color, style, thickness, transparency, line extension
・Line name, display position, font size, price display and non-display
Price:$5
機能紹介
指定したローソク足の高値・安値を表示するインジケーターです。
線の開始位置は高値と安値を作ったローソク足を起点に線が描かれます。
同時に日足・週足・月足の高値・安値を表示できます。
--変更可能パラメーター--
それぞれの時間足の表示非表示
表示させるローソク足の指定
線の色・スタイル・太さ・透明度・線の延長
ライン名称・表示位置・フォントサイズ・価格の表示非表示
価格:$5
Another indicators:
--free--
Upper TF Heikin-ashi Bull Bear
--paid--
MTF OHLCFP Lines Candles Before
cBot:
using System;
using cAlgo.API;
using cAlgo.API.Internals;
using cAlgo.API.Indicators;
using cAlgo.Indicators;
namespace cAlgo
{
[Indicator(IsOverlay = false, TimeZone = TimeZones.UTC, AccessRights = AccessRights.None)]
public class MWDHighLowProsample : Indicator
{
protected override void Initialize()
{
}
public override void Calculate(int index)
{
Chart.DrawText("Please download above link", "", index, 100, Color.Black);
}
}
}
yomm0401
Joined on 11.04.2020
- Distribution: Paid
- Language: C#
- Trading platform: cTrader Automate
- File name: MWD High Low Pro sample.algo
- Rating: 3.75
- Installs: 1185
- Modified: 21/12/2021 09:27