Login Page - Create Account

Support Board


Date/Time: Mon, 20 Jan 2025 04:10:25 +0000



Post From: Hiding Studies

[2018-05-21 14:01:22]
@sstfrederik - Posts: 405
In your custom study you need to check sc.HideStudy before starting to draw. If this condition is not checked the study will draw regardless of the hide study toggle.

if (sc.HideStudy)//do nothing if study is hidden
  return;

or if (!sc.HideStudy)//draw when hiding is unchecked
  //Drawsomthing