Login Page - Create Account

Support Board


Date/Time: Tue, 09 Sep 2025 12:16:42 +0000



Post From: Indicators not scaled correctly in Chart Region?

[2025-08-05 14:06:17]
neevaksama - Posts: 61
Hello SC,

Preface
- ID20.SG1 = 20 Volume SMA
- Formula below means alert if "Volume is more than 20SMA and Average of previous 3 candles OR Volume more than previous candle which fulfills the condition I just said)"
- Formula: =OR(
AND(V > ID20.SG1, V >= 1.5 * AVERAGE(V[-1], V[-2], V[-3])),
AND(V > V[-1], V[-1] > ID20.SG1[-1], V[-1] >= 1.5 * AVERAGE(V[-2], V[-3], V[-4]))
)

- Logged output = OR(
AND(13748 > 12664.1, 13748 >= 1.5 * AVERAGE(12022, 6798, 7862)),
AND(13748 > 12022, 12022 > 12307.95, 12022 >= 1.5 * AVERAGE(6798, 7862, 6482))
)

Issue
- Alert works
- However, it is supposed to work when Volume > 20SMA. Numbers-wise, it's correct
- Visually, volume looks lower than 20SMA which is confusing

Chart Region Settings
- Interactive Scale Range
- Scale Range: Automatic

Indicator's Scale Settings
- Default (I.e Scale Range: Automatic Zero-Based, Scale Type: Linear)


Any explanation why this happens?
imagesc-visual.png / V - Attached On 2025-08-05 14:01:10 UTC - Size: 21.47 KB - 50 views