Support Board
Date/Time: Thu, 01 Jan 2026 15:19:59 +0000
Post From: ACSIL - sc.AreRenkoBars() - true for delta bars
| [2015-09-21 16:47:09] |
| ejtrader - Posts: 689 |
|
Ended up being the code issue. This can be Closed. Not sure why though :) Just by changing the following code - seems to have fixed the issue - but don't know why it would fix the issue (one of those things - have to check back at a later time during code review). sg1[i] = sc.BaseData[SC_OPEN][i]; sg2[i] = sc.BaseData[SC_CLOSE][i]; The same code changed to below(no other changes) and it fixed the issue. sg1[i] = sc.Open[i]; sg2[i] = sc.Close[i]; Date Time Of Last Edit: 2015-09-21 16:47:39
|
