Gatekeeper
Member
Here a net change indicator for Watchlist, tells you the dollar amount change , only issue is TOS wouldn't let it go active until Market open.
#### Net Change from yesterday close XXXXXXXXXXXXX
def yesterdayclose = close ("period" = AggregationPeriod.DAY)[1];
AddLabel(yes, AsText(close - yesterdayclose, NumberFormat.TWO_DECIMAL_PLACES) , if close - yesterdayclose > 0 then Color.Green else Color.RED);[/CODE]
#### Net Change from yesterday close XXXXXXXXXXXXX
def yesterdayclose = close ("period" = AggregationPeriod.DAY)[1];
AddLabel(yes, AsText(close - yesterdayclose, NumberFormat.TWO_DECIMAL_PLACES) , if close - yesterdayclose > 0 then Color.Green else Color.RED);[/CODE]
Last edited: