チャート矩形

概要

矩形チャートオブジェクトを表します。任意のサイズと回転の矩形をチャート上に直接描画することができ、X-Y 軸に固定されています。

シグネチャー

1
public abstract interface ChartRectangle

 

名前空間

cAlgo.API

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
 using cAlgo.API;
 namespace cAlgo
 {
     // このサンプルは、Chart.DrawRectangle メソッドを使用して矩形を描画する方法を示します
     [Indicator(IsOverlay = true, TimeZone = TimeZones.UTC, AccessRights = AccessRights.None)]
     public class ChartRectangleSample : Indicator
     {
         protected override void Initialize()
         {
             var period = Chart.LastVisibleBarIndex - Chart.FirstVisibleBarIndex;
             var rectangle = Chart.DrawRectangle("rectangle_sample", Chart.FirstVisibleBarIndex, Bars.LowPrices.Minimum(period), Chart.LastVisibleBarIndex, Bars.HighPrices.Maximum(period), Color.FromArgb(100, Color.Red));
             rectangle.IsFilled = true;
             rectangle.IsInteractive = true;
         }
         public override void Calculate(int index)
         {
         }
     }
 }

関連項目

  • cAlgo.API.ChartShape

プロパティ

Time1

概要

Timeライン上の値 1 を取得または設定します。

シグネチャー

1
public abstract DateTime Time1 {get; set;}

 

戻り値

DateTime

Time2

概要

Timeライン上の値 2 を取得または設定します。

シグネチャー

1
public abstract DateTime Time2 {get; set;}

 

戻り値

DateTime

Y1

概要

Y軸上の値 1 を取得または設定します。

シグネチャー

1
public abstract double Y1 {get; set;}

 

戻り値

double

Y2

概要

Y軸上の値 2 を取得または設定します。

シグネチャー

1
public abstract double Y2 {get; set;}

 

戻り値

double

  • チャートオブジェクト/描画
目次

このページについて