Support Board
Date/Time: Sun, 16 Mar 2025 02:39:06 +0000
Post From: Volume By Price -- Until Future Intersection
[2022-08-02 22:26:25] |
QnReally - Posts: 188 |
Hello, Is it possible to extract the extended VPOCs and Valleys out of the Volume By Price study using the following mechanism? int numLines = sc.GetNumLinesUntilFutureIntersection(sc.ChartNumber, studyID);
for (int i = 0; i < numLines; i++) { int r_LineIDForBar, r_StartIndex, r_EndIndex; float r_LineValue; sc.GetStudyLineUntilFutureIntersectionByIndex(sc.ChartNumber, studyID, i, r_LineIDForBar, r_StartIndex, r_LineValue, r_EndIndex); } Thanks. |