Login Page - Create Account

Support Board


Date/Time: Sat, 04 May 2024 03:00:38 +0000



Post From: Volume By Price study get VPOC, VAH, VAL

[2018-12-13 06:22:34]
User564250 - Posts: 8
When pulling data from the subgraphs using ACSIL from the Volume By Price study what does the 0 and 4 values get? Do the subgraphs correspond to the Subgraphs tab of the indicator?

SCFloatArray StudyReference;
  sc.GetStudyArrayUsingID(StudyID.IntValue, 0, StudyReference);
  float dumm = StudyReference[sc.Index];
  sc.GetStudyArrayUsingID(StudyID.IntValue, 1, StudyReference);
  float vpoc = StudyReference[sc.Index];
  sc.GetStudyArrayUsingID(StudyID.IntValue, 2, StudyReference);
  float VAH = StudyReference[sc.Index];
  sc.GetStudyArrayUsingID(StudyID.IntValue, 3, StudyReference);
  float VAL = StudyReference[sc.Index];
  sc.GetStudyArrayUsingID(StudyID.IntValue, 4, StudyReference);
  float dummy4 = StudyReference[sc.Index];