Login Page - Create Account

Support Board


Date/Time: Thu, 28 Nov 2024 15:33:48 +0000



Post From: Reference to the average value of OHLC

[2023-04-25 21:13:11]
JohnR - User831573 - Posts: 306
They are part of the base data coming into your study.

sc.BaseData[SC_OPEN] or sc.Open[]: The array of opening prices for each bar.
sc.BaseData[SC_HIGH] or sc.High[]: The array of high prices for each bar.
sc.BaseData[SC_LOW] or sc.Low[]: The array of low prices for each bar.
sc.BaseData[SC_LAST] or sc.Close[]: The array of closing/last prices for each bar.

ACSIL Interface Members - Variables and Arrays: sc.BaseDataIn[][] / sc.BaseData[][]

Hope that helps
JohnR