Login Page - Create Account

Support Board


Date/Time: Fri, 22 Nov 2024 03:35:17 +0000



Post From: Market Profile (TPO) Chart Alert

[2022-03-25 02:13:12]
User587930 - Posts: 13
Hello, I'm trying to create an alert on a Market Profile (TPO) chart. I want to be able to run a scan shortly after the market opens to determine whether the opening price was above the previous day's VPOC price value by some number of ticks (e.g. 10 ticks).

My chart has two studies:
1) TPO Profile Chart
2) Volume By Price


Below is what I have so far but it doesn't appear to be working
=AND(SG1 - ID2.SG2[-1] >= TICKSIZE, SG1 - ID2.SG2[-1] <= (TICKSIZE * 10))

SG1 -> Today's Open price (TPO Profile Chart study)
ID2.SG2[-1] -> Yesterday's Point of Control price value (Volume By Price study)
TICKSIZE -> 0.10

So the condition the above I'm attempting to express with the above is to scan symbols where "today's open is above yesterday's vpoc price by anywhere between 1 and 10 ticks)