tempestlight
New member
Hi,
Currently, i have the following custom script in a column in the scan tab. So when i scan, i get all the dollar values and then I go by descending order to search the highest amount.
def A = hl2;
def highestvolofday = highestall(if GetLastDay() == GetDay() and highestall(volume) then (volume) else double.nan);
def High_vol_Price = if volume == highestvolofday then A else High_vol_Price[1];
Plot scan = (High_vol_Price*100) * highestvolofday;
Is there a way to have this as an "add filter" study instead where i can specify that i only want values that are higher than 1000000?
Thanks!
Currently, i have the following custom script in a column in the scan tab. So when i scan, i get all the dollar values and then I go by descending order to search the highest amount.
def A = hl2;
def highestvolofday = highestall(if GetLastDay() == GetDay() and highestall(volume) then (volume) else double.nan);
def High_vol_Price = if volume == highestvolofday then A else High_vol_Price[1];
Plot scan = (High_vol_Price*100) * highestvolofday;
Is there a way to have this as an "add filter" study instead where i can specify that i only want values that are higher than 1000000?
Thanks!