tempestlight
New member
Hi there, i have this as a column in my scanner but i was wondering if i could add say an in if statement that would only provide results that are over $500,000? Is that possible to add this to this script? I just have the free ToS so i'm restricted in some senses. Thanks!
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;
This doesn't work but wondering if anyone has a workaround.
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 = if(((High_vol_Price*100) * highestvolofday)>500000);
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;
This doesn't work but wondering if anyone has a workaround.
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 = if(((High_vol_Price*100) * highestvolofday)>500000);
Last edited: