ケルトナー・チャンネル

cBots (自動売買)

概要

Keltner Channels(ケルトナーチャンネル)は、指数移動平均の上と下に設定されたボラティリティベースのエンベロープです。

シグネチャー

1
public abstract interface KeltnerChannels

 

名前空間

cAlgo.API.Indicators

 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
 using cAlgo.API;
 using cAlgo.API.Indicators;
 namespace cAlgo.Robots
 {
     // このサンプルcBotはKeltner Channelsインジケーターの使用方法を示しています
     [Robot(TimeZone = TimeZones.UTC, AccessRights = AccessRights.None)]
     public class KeltnerChannelsSample : Robot
     {
         private double _volumeInUnits;
         private KeltnerChannels _keltnerChannels;
         [Parameter("Volume (Lots)", DefaultValue = 0.01)]
         public double VolumeInLots { get; set; }
         [Parameter("Label", DefaultValue = "Sample")]
         public string Label { get; set; }
         [Parameter("Source")]
         public DataSeries Source { get; set; }
         public Position[] BotPositions
         {
             get
             {
                 return Positions.FindAll(Label);
             }
         }
         protected override void OnStart()
         {
             _volumeInUnits = Symbol.QuantityToVolumeInUnits(VolumeInLots);
             _keltnerChannels = Indicators.KeltnerChannels(20, MovingAverageType.Exponential, 10, MovingAverageType.Simple, 2);
         }
         protected override void OnBar()
         {
             if (Bars.LowPrices.Last(1) < _keltnerChannels.Lower.Last()
             )
             {
                 if (BotPositions.Length == 0)
                 {
                     var position = Trade.OpenPosition(Symbol.Bid, _volumeInUnits, Label);
                     Print("Long position opened at: " + position.EntryPrice);
                 }
             }
             else
             {
                 if (Bars.HighPrices.Last(1) > _keltnerChannels.Upper.Last()
                 )
                 {
                     if (BotPositions.Length > 0)
                     {
                         var position = BotPositions[0];
                         Trade.ClosePosition(position);
                         Print("Position closed at: " + position.ClosePrice);
                     }
                 }
             }
         }
     }
 }

関連項目

目次

このページについて