Login Page - Create Account

Support Board


Date/Time: Wed, 08 Oct 2025 08:22:21 +0000



Post From: Up Bars Only

[2025-10-07 16:05:05]
Tony - Posts: 640
I am not aware of existing studies to do that.

It might be able to achieve by spreadsheet that I have no knowledge, we will wait Sierra or other users' feed back.

With ACSIL, you could hide the Main Graph first:
Chart -> Chart Draw Type -> Blank

and have 2 subgraphs as Bar Top and Bar Bottom (skip zeros), the condition to draw any bar is "Open is lower than Close":


for (int IndexCount {0}; IndexCount<=sc.Index; IndexCount++) {
if (sc.Open[IndexCount] < sc.Close[IndexCount]) {
MyBarTop[IndexCount] = sc.High[IndexCount];
MyBarBottom[IndexCount] = sc.Low[IndexCount];
}
else {
MyBarTop[IndexCount] = 0.0;
MyBarBottom[IndexCount] = 0.0;
}
}

Date Time Of Last Edit: 2025-10-07 16:06:54