Topics
18 Jan 2023, 04:33
 1885
 13
25 May 2022, 04:55
 1109
 3
18 Jan 2022, 23:22
 1316
 3
26 May 2020, 09:05
 1181
 3
Replies

noppanon
31 Aug 2018, 04:22 ( Updated at: 21 Dec 2023, 09:20 )

Hi There,

   In a few minute later, same Bot, same code section, it could submit another open stop order. Bot was not restarted to submit another order. 

Regards,

 

Noppanon

 

 


@noppanon

noppanon
10 Jul 2018, 10:23

Hi Andrey,

   That's help. Thank you for your suggestion.

 

Regards,

Noppanon


@noppanon

noppanon
24 Feb 2018, 15:28

Hi,

   Feel free to modify the code to fit your expection.

Noppanon


@noppanon

noppanon
22 Feb 2018, 08:07 ( Updated at: 21 Dec 2023, 09:20 )

Hi Hamidrtafx,

   You may try to cut and past the code to notepad and save as ANSI text file to clean any encoding.

   I modified the code so that you can change how many periods you want to check for flating. 

   Here is sample if flat periods is 3.

TK Flat parameters

 

 

Here is the code.

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 TKFlat : Indicator
    {
        [Parameter("Tenkan Sen Period", DefaultValue = 9)]
        public int TenkanPeriod { get; set; }

        [Parameter("Kijun Sen Period", DefaultValue = 26)]
        public int KijunPeriod { get; set; }

        [Parameter("Senkou Span B Period", DefaultValue = 52)]
        public int SenkouPeriod { get; set; }

        [Parameter("Flat Period", DefaultValue = 3)]
        public int FlatPeriod { get; set; }

        private IchimokuKinkoHyo Cloud;
        private Random ChartID;

        protected override void Initialize()
        {
            ChartID = new Random();
            Cloud = Indicators.IchimokuKinkoHyo(TenkanPeriod, KijunPeriod, SenkouPeriod);
        }

        public override void Calculate(int index)
        {
            for (int i = 0; i < FlatPeriod; i++ )
            {                
                if (Cloud.TenkanSen[index - i] != Cloud.TenkanSen[index - i - 1])
                {
                    return;
                }
            }

            for (int j = 0; j < FlatPeriod; j++)
            {
                if (Cloud.KijunSen[index - j] != Cloud.KijunSen[index - j - 1])
                {
                    return;
                }
            }
            ChartObjects.DrawVerticalLine("Flat_" + ChartID.Next(0, 100000).ToString(), index, Colors.Aqua, 2, LineStyle.Solid);
        }
    }
}

Happy trading,

Noppanon

 


@noppanon