Support Board
Date/Time: Sun, 12 Jan 2025 07:43:18 +0000
Post From: Retrieve the date of the opening and closing of a candlestick
[2017-01-30 13:18:40] |
User210074 - Posts: 63 |
Hello, I would like to know if there is a function already built to retrieve the date of the opening and closing of a candlestick I already recovers the opening, closing, the highest and lowest of a bar with the code below double Bar = sc.Index; double High = sc.High[Bar];//High double Low = sc.Low[Bar];//Low double Open = sc.Open[Bar];//Open double Close = sc.Close[Bar];//Close /*double DateTimeOpen = ...[Bar];//I don't find*/ /*double DateTimeClose= ...[Bar];//I don't find*/ I find this : http://www.sierrachart.com/index.php?page=doc/ACSIL_Members_Variables_And_Arrays.html Does the function exist? |