Trading Blox Color Selection Dialog:
All BPV Series will provide access to the Trading Blox Color Selection Dialog when the BPV series uses a System, Test or Simulation Scope setting with a BPV numeric series.
To display the color selection dialog, follow the click steps in this next image:
When the "More Colors..." button is clicked the dialog in this next image will appear:
Just about any color's RGB value can be discovered using this dialog. However, if the chart image where this color is to be used will appear in a report generated with a HTML Browser process that is used to create Trading Blox reports, picking a color from the Basic Color Matrix Table will keep the colors used within the Safe-Color range that are easily reproduced using a HTML process.
Applying the RGB, (Red, Green, Blue) values to the Trading Blox ColorRGB function requires, place the color numbers using Blue, Green and Red as the first, second and third parameter locations
Script Color Assignment Examples:
' Red Green Blue
PlotColor1 = ColorRGB( 255, 0, 0 ) ' Plot Red Color
PlotColor2 = ColorRGB( 0, 255, 0 ) ' Plot Green Color
PlotColor3 = ColorRGB( 0, 0, 255 ) ' Plot Blue Color
' Trade Color Preference Settings Color Numbers values
PlotColor1 = ColorCustom1 ' Use Preference ColorCustom1 Value
PlotColor2 = ColorCustom2 ' Use Preference ColorCustom2 Value
PlotColor3 = ColorCustom3 ' Use Preference ColorCustom3 Value