how to create filter for inside day ?
high less than yesterday's, low greater than yesterday's
with huge volumes
high less than yesterday's, low greater than yesterday's
with huge volumes
Here is a script that detects an "inside day".
(lag($HighBar) >$HighBar) and ($LowBar > lag($LowBar)) and (lag($CloseBar) >
lag($OpenBar))
mxt