Login Page - Create Account

Support Board


Date/Time: Mon, 23 Dec 2024 10:45:39 +0000



Post From: ACSIL - sc.AreRenkoBars() - true for delta bars

[2015-09-21 16:47:09]
ejtrader - Posts: 688
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