Mirror Candle free

by yomm0401 in category Other at 20/08/2021
Description
Formula / Source Code
Language: C#
Trading Platform: cAlgocTrader
using System;
using cAlgo.API;
using cAlgo.API.Internals;
using cAlgo.API.Indicators;
using cAlgo.Indicators;

namespace cAlgo
{
    [Indicator(IsOverlay = false, TimeZone = TimeZones.UTC, AccessRights = AccessRights.None)]
    public class Mirrorcandlesample : Indicator
    {
        protected override void Initialize()
        {
        }
        public override void Calculate(int index)
        {
            Chart.DrawText("Please download above link", "", index, 100, Color.Black);
        }


    }
}
Comments

xiao-linlong - September 09, 2021 @ 17:39

この反転ツールが別のスクリーンに映し出されるといいですね。

yomm0401 - September 10, 2021 @ 08:25

As far as I know,currently it is not possible to paint directly on the chart.

I hope it can do it too.

xiao-linlong - September 10, 2021 @ 08:28

Dear Sir.
I have composed an email to your yahoo mailbox, please check it, thank you.

xiao-linlong - September 10, 2021 @ 08:32

I mean there are two or three monitors and this mirror image can be placed on the second monitor so that it does not affect the layout. You will be a great developer and product manager as well as a trader in the future.

0