チャート垂直線

概要

Vertical Line チャートオブジェクトを表します。X軸の特定の時間値に設定できるY軸に平行な線です。

署名

1
public abstract interface ChartVerticalLine

 

名前空間

cAlgo.API

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
 using cAlgo.API;
 namespace cAlgo
 {
     // このサンプルは、Chart.DrawVerticalLineメソッドを使用してチャートに垂直線を描画する方法を示しています
     [Indicator(IsOverlay = true, TimeZone = TimeZones.UTC, AccessRights = AccessRights.None)]
     public class ChartVerticalLineSample : Indicator
     {
         protected override void Initialize()
         {
             var verticalLine = Chart.DrawVerticalLine("vertical_line", Chart.LastVisibleBarIndex, Color.Red, 2, LineStyle.DotsRare);
             verticalLine.IsInteractive = true;
         }
         public override void Calculate(int index)
         {
         }
     }
 }

参照

  • cAlgo.API.ChartObject

プロパティ

Time

概要

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

署名

1
public abstract DateTime Time {get; set;}

 

戻り値

DateTime

Color

概要

線の色を取得または設定します。

署名

1
public abstract Color Color {get; set;}

 

戻り値

Color

Thickness

概要

線の太さを取得または設定します。

署名

1
public abstract int Thickness {get; set;}

 

戻り値

int

関連チュートリアル

  • Controls

LineStyle

概要

線のスタイルを取得または設定します。

署名

1
public abstract LineStyle LineStyle {get; set;}

 

戻り値

LineStyle

  • Chart Objects/Drawings
目次

このページについて