シンボル

cBots (自動売買)

Summary

すべてのシンボルのリストを表し、シンボル名は文字列として扱われます。

署名

1
public abstract interface Symbols

Namespace

cAlgo.API

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
 using cAlgo.API;
 namespace cAlgo
 {
     // このサンプルでは、Symbols コレクションを使用してシンボル データを取得する方法を示します。
     [Indicator(IsOverlay = true, TimeZone = TimeZones.UTC, AccessRights = AccessRights.None)]
     public class SymbolsSample : Indicator
     {
         protected override void Initialize()
         {
             var scrollViewer = new ScrollViewer
             {
                 HorizontalAlignment = HorizontalAlignment.Center,
                 VerticalAlignment = VerticalAlignment.Center,
                 BackgroundColor = Color.Gold,
                 Opacity = 0.7,
                 HorizontalScrollBarVisibility = ScrollBarVisibility.Auto,
                 VerticalScrollBarVisibility = ScrollBarVisibility.Visible,
                 Height = 300
             };
             var grid = new Grid(Symbols.Count + 1, 2)
             {
                 BackgroundColor = Color.Gold,
                 HorizontalAlignment = HorizontalAlignment.Center,
                 VerticalAlignment = VerticalAlignment.Center,
             };
             scrollViewer.Content = grid;
             grid.AddChild(new TextBlock
             {
                 Text = "Name",
                 Margin = 5,
                 ForegroundColor = Color.Black,
                 FontWeight = FontWeight.ExtraBold
             }, 0, 0);
             grid.AddChild(new TextBlock
             {
                 Text = "Description",
                 Margin = 5,
                 ForegroundColor = Color.Black,
                 FontWeight = FontWeight.ExtraBold
             }, 0, 1);
             for (int iSymbol = 1; iSymbol < Symbols.Count + 1; iSymbol++)
             {
                 var symbolName = Symbols[iSymbol];
                 var symbol = Symbols.GetSymbol(symbolName);
                 if (!symbol.MarketHours.IsOpened()) continue;
                 grid.AddChild(new TextBlock
                 {
                     Text = symbolName,
                     Margin = 5,
                     ForegroundColor = Color.Black,
                     FontWeight = FontWeight.ExtraBold
                 }, iSymbol, 0);
                 grid.AddChild(new Button
                 {
                     Text = symbol.Description,
                     Margin = 5,
                     ForegroundColor = Color.Black,
                     FontWeight = FontWeight.ExtraBold
                 }, iSymbol, 1);
             }
             Chart.AddControl(scrollViewer);
         }
         public override void Calculate(int index)
         {
         }
     }
 }

Methods

GetSymbolInfo

署名

1
public abstract SymbolInfo GetSymbolInfo(string symbolName)

パラメータ

NameTypeDescription
symbolNamestring 

戻り値

SymbolInfo

GetSymbolInfos

署名

1
public abstract SymbolInfo[] GetSymbolInfos(string[] symbolNames)

パラメータ

NameTypeDescription
symbolNamesstring[] 

戻り値

SymbolInfo[]

GetSymbol

概要

特定のシンボルを取得します。

署名

1
public abstract Symbol GetSymbol(string symbolName)

パラメータ

NameTypeDescription
symbolNamestring取得したいシンボルの名前

戻り値

Symbol

GetSymbols

概要

複数のシンボルを一度に取得します。

署名

1
public abstract Symbol[] GetSymbols(string[] symbolNames)

パラメータ

NameTypeDescription
symbolNamesstring[]取得したいシンボルの名前

戻り値

Symbol[]

Exists

概要

特定のシンボル名がリストに存在するかどうかを定義します。

署名

1
public abstract bool Exists(string symbolName)

パラメータ

NameTypeDescription
symbolNamestringチェックしたいシンボルの名前

戻り値

bool

Properties

Item

署名

1
public abstract string Item {get;}

戻り値

string

Count

概要

リスト内のシンボルの総数を取得します。

署名

1
public abstract int Count {get;}

戻り値

int

目次

このページについて