Category Trend  Published on 09/10/2020

Perfect Order Indicator

Description

↓ダウンロードはこちらからどうぞ!​​​​(Please Download it here!)

https://summertrader.booth.pm/items/2438564

​​​

  • パーフェクトオーダーのマーカーを表示するインジケーターです。
  • 短期、中期、長期の移動平均線を設定できます
  • 上昇時は赤丸、下降時は青丸を表示します。

 

  • This indicator shows the markers of a perfect order.
  • Short, medium and long term moving averages can be set.
  • A red circle is displayed for ascending and a blue circle for descending.

using System;
using cAlgo.API;
using cAlgo.API.Internals;
using cAlgo.API.Indicators;
using cAlgo.Indicators;

namespace cAlgo
{
    [Indicator(IsOverlay = true, TimeZone = TimeZones.UTC, AccessRights = AccessRights.None)]
    public class PerfectOrderIndicatorSample : Indicator
    {
        [Parameter()]
        public DataSeries Source { get; set; }

        protected override void Initialize()
        {
            //サンプルです。↓からダウンロードしてください。
            //https://summertrader.booth.pm/items/2438564
        }

        public override void Calculate(int index)
        {
            //サンプルです。↓からダウンロードしてください。
            //https://summertrader.booth.pm/items/2438564
        }
    }
}


summer's avatar
summer

Joined on 10.08.2020

  • Distribution: Paid
  • Language: C#
  • Trading platform: cTrader Automate
  • File name: Perfect Order Indicator Sample.algo
  • Rating: 0
  • Installs: 1073
Comments
Log in to add a comment.
matfx's avatar
matfx · 3 years ago

Looks interesting