Custom lables watch list

Hiii,

Is it possible to compare column to column in watch list and assign colours.

Regards,
Deepak

Hi,

Do you mean scripted columns in a Watchlist? If so, you can compare them. The easiest way to do this is to have them setup as saved scripts in the script manager. You can then use the Script() function to reference their values and compare them in other columns.

For example if i had 2 saved scripts referencing two different MA values, i could use Script() to reference them (rather than having to enter all the script code again for both).

V1 = SCRIPT(SCRIPTNAME=50SMA) ;
V2 = SCRIPT(SCRIPTNAME=150EMA);
V1 - V2

Example:

Ex1

For more information on the Script() function please refer to the following article:

https://help.optuma.com/kb/faq.php?id=723