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
Joined on 10.08.2020
- Distribution: Paid
- Language: C#
- Trading platform: cTrader Automate
- File name: Perfect Order Indicator Sample.algo
- Rating: 0
- Installs: 1073
- Modified: 13/10/2021 09:55
Note that publishing copyrighted material is strictly prohibited. If you believe there is copyrighted material in this section, please use the Copyright Infringement Notification form to submit a claim.
Comments
Log in to add a comment.
Looks interesting