Hey all,
I've recently taken an interest in monitoring some market internals while intraday trading the ES. I've set up a chart plotting the TICK.Z with candles and I'd like to add a cumulative tick histogram similar to "Shadow Trader's" below it. I think I need to add a custom indicator using SESSION STATISTICS to filter out some of the noise so that the bars don't just constantly shoot up and down but I'm not sure how to configure the indicator specifically?
Has anyone tried something like this or have any suggestions?
Any help would be greatly appreciated
Scott
I've attached an example
Hi,
not sure you even need the session stat indicator
Just create a regular custom indicator with the following syntax and apply it to the TICK instrument
SUM(CL,POS) with POS defined as "bar since start of session"
It should provide the histogram that you need
Eddy