NO
Topics
25 Feb 2025, 15:23
118
1
17 Jul 2024, 13:08
509
3
10 Nov 2023, 05:31
654
5
18 Jan 2023, 04:33
1885
13
19 Jun 2022, 16:13
1390
3
25 May 2022, 04:55
1109
3
04 Apr 2022, 11:54
1059
4
18 Jan 2022, 23:22
1316
3
03 Nov 2021, 04:46
1451
1
04 Mar 2021, 05:52
1281
3
27 Feb 2021, 13:39
1718
4
02 Oct 2020, 06:42
1284
3
01 Jul 2020, 17:39
1535
5
11 Jun 2020, 04:12
1210
5
26 May 2020, 09:05
1181
3
01 Oct 2019, 10:29
1154
5
28 Jun 2019, 03:59
1121
2
28 Jun 2019, 03:48
1754
4
20 Jun 2019, 15:10
1811
4
22 Mar 2019, 06:24
1662
4
Replies
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.
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
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