This is a strategy file for Chart Logic that implements a dashboard display of RSI values. This file requires Chart Logic version 1.5 or later.

Strategy
For a Dashboard you first need to define variables in a Chart Logic Strategy. Each column in the dashboard shows a variable, and you see the value for this variable for each symbol enabled in the strategy.

In the Options Logic Set we define how RSI is configured:

If you want to be alerted when an RSI high/low value has been exceeded you can enable the last two Logic Sets in the strategy. The “bAlertedToday” variable is used to limit the number of alerts that you get; by default you’ll get only one alert per symbol per day.

In the “RSI” Logic Set we get the H1 RSI value, and then we test the value to set some variables for the colors to use. Note how we use an OR set to check for different RSI values, from the default colors to the more extreme colors.

Finally, the last two Logic Sets control the alerts. You can disable these Logic Sets completely if you don’t want to get alerts; in the Strategy Dialog simply click the “y” in the first column (”Enabled”) to turn them off.
Dashboard Configuration
To get to the Dashboard configuration, first open the Strategy Viewer by clicking the strategy name in the main Chart Logic window.

When the strategy is not active this brings up the Strategy Viewer:

Click the “D” to the left of the title row (to the left of “RSI Dashboard”) to toggle to the Dashboard view.

We have one column defined to show the RSI variable. We’ve set the foreground and background colors for this value based on variables we set. And we are not showing a total row, because it wouldn’t make any sense to get a sum or count of RSI values.
Dashboard
Activate the strategy (click the little red circle to the left of the strategy name in the main Chart Logic window), and now when you click the strategy name in this list it will open the viewer in Dashboard mode:

You can change how the columns are sorted by clicking the column headers. Click the “RSI” header to sort by RSI values, ascending. Click again to toggle to a descending sort. Or click the “Symbol” header to switch to sorting by symbol names. The little suffix in the column header will show you which column is sorted and in which direction. “^” means ascending (low to high) and “v” means descending (high to low).

That’s it! A very simple RSI dashboard that you can use to monitor and get alerts for RSI values.