lowtrade
Member
Thanks @Len20 . I just added this watchlist column. It is showing the % change from the previous close not the % change after the market close.
Please check the ticker EVOK and it showing 2.6% and it is same as default % change column.
The formula would be Market % Change - % Change will be the correct value to identify the AH price change.
Here is another set of code found from Hahn site. I hope this okay to be shared here.
Please check the ticker EVOK and it showing 2.6% and it is same as default % change column.
The formula would be Market % Change - % Change will be the correct value to identify the AH price change.
Here is another set of code found from Hahn site. I hope this okay to be shared here.
Code:
input marketClose = 1555;
def closeCounter = SecondsTillTime(marketClose);
def regSessEnd = closeCounter == 0;
rec priorDayClose = if regSessEnd then close else priorDayClose[1];
def change = ((close-priorDayClose) / priorDayClose) * 100;
def con1 = change >= 3 or change <= -3;
plot scan = con1;
Last edited: