WinLossBackground

Modified on 2021/01/02 11:15 by Eugene — Categorized as: Community Components

Syntax

public static void WinLossBackground(this WealthScript obj, int mode)

public void WinLossBackground( int mode )

Parameter Description

modemode selects the color scheme: 0 standard (light red, light green), 1 strong (red, light red, yellow, light green green)

Description

Originally developed for WL4 by Dr.Koch and coded for WL5 by thodder.

Paints background according to profit. Handles overlapping positions. With overlapping positions the worst trade determines the background color. Trades better than 0.5 percent are marked green. Trades worse than -0.5 percent are marked red. The trades between -0.5% and +0.5 % are marked yellow. In mode 1 trades better/worse than +5%/-5% are marked with a stronger green/red color.

Usage

Add a call to WinLossBackground(mode) after the main (trading) loop i.e. at the end of your Strategy.

Example

Here is an example illustrating how to use the method in your Strategy code:

Example using C# extension methods:


// after the main (trading) loop

this.WinLossBackground(1);

Image