Search found 5 matches

by WildWex
26 Mar 2019
Forum: MultiCharts
Topic: compile error:"line 0, column 0" - Low(0) [SOLVED]
Replies: 4
Views: 6772

Re: compile error:"line 0, column 0" - Low(0) [SOLVED]

If I recall correctly, in my case, this happened when I was attempting to pass in a 0 value which created a divide by zero error. Your situation may be different and you may have to slowly undo some code or settings or indicators that you may have been building in order to ferret out what may be cau...
by WildWex
26 Mar 2019
Forum: MultiCharts
Topic: LineBreak Chart with Wicks (seeking community to vote)
Replies: 0
Views: 704

LineBreak Chart with Wicks (seeking community to vote)

Greetings MC Community - I'm seeking your vote on the following feature request that asks the MC Development Team to expand upon the existing LineBreak chart to include Wicks (similar to how they already accomplish such with FlexRenko charts). There are certain indicators which can work very well an...
by WildWex
01 Feb 2019
Forum: MultiCharts .NET
Topic: Color.FromArgb() Alpha parameter useless ? [SOLVED]
Replies: 6
Views: 5438

Re: Color.FromArgb() Alpha parameter useless ? [SOLVED]

Hi, WildWex. You have to blend the color with the background color of your chart. :) // Method public static Color BlendColor( Color MainColor, Color BGColor, double Opacity ) { Opacity = Opacity * 2.55; byte R = (byte)( ( MainColor.R * Opacity / 255 ) + BGColor.R * ( 255 - Opacity ) / 255 ); byte ...
by WildWex
21 Jan 2019
Forum: MultiCharts .NET
Topic: Color.FromArgb() Alpha parameter useless ? [SOLVED]
Replies: 6
Views: 5438

Re: Color.FromArgb() Alpha parameter useless ? [SOLVED]

Hello Verbose,

Color.FromArgb() Alpha parameter cannot be used in MultiCharts.
When Color is used in Plot, Alpha channel is ignored.
I'd really like to see MC implement Alpha channel into color so we can have transparency in our indicators.
by WildWex
14 Jan 2019
Forum: MultiCharts
Topic: Read values from Strategy Properties
Replies: 1
Views: 782

Read values from Strategy Properties

Hello - Are there variables that store information from the Strategy Properties window? For example if I wanted to know the Position Limits that are specified in terms of number of entry orders allowed in the same direction or the associated checkbox value and/or radio button value in that window, w...

Go to advanced search