MULTICHARTS .NET 8.8 BETA 1

Questions about MultiCharts .NET and user contributed studies.
User avatar
admin
Posts: 79
Joined: 13 Jul 2005
Has thanked: 41 times
Been thanked: 122 times

MULTICHARTS .NET 8.8 BETA 1

Postby admin » 01 Oct 2013

MultiCharts .NET 8.8 Beta 1 contains many of the new features that you have been waiting for, Advanced Market Scanner, MultiCharts .NET Desktops that allows you to save MultiCharts layouts on each monitor, Dynamic Order Name that generates an order name based on script calculation. Now you have the flexibility in plotting daily data with different session templates at the same time because daily bars can be formed out of minute data. An indicator can base on values of another indicator and Limit Order Execution Assumptions is available in Portfolio Backtester. MultiCharts .NET 8.8 Beta 1 also has an improved optimization process, improved dialog windows and broker connection from new brokers working through CQG.

Make sure you ask our support if you have any questions.

Learn more

Fabrice
Posts: 182
Joined: 14 Jun 2011
Has thanked: 44 times
Been thanked: 30 times

Re: MULTICHARTS .NET 8.8 BETA 1

Postby Fabrice » 17 Oct 2013

Hello,

Can you give us an example of code about this feature :

- "Now objects of one study are accessible from another one"

Thanks.

User avatar
Dave Masalov
Posts: 1712
Joined: 16 Apr 2010
Has thanked: 51 times
Been thanked: 489 times

Re: MULTICHARTS .NET 8.8 BETA 1

Postby Dave Masalov » 18 Oct 2013

Hello Fabrice,

Please see the code example below.

Code: Select all

namespace PowerLanguage.Indicator{
public class a1 : IndicatorObject {
public a1(object _ctx):base(_ctx){}
private IPlotObject plot1;
private ADX m_adx_indic;
protected override void Create() {
plot1 = AddPlot();
m_adx_indic = (ADX)AddIndicator("ADX");
m_adx_indic.length = 20;
}

protected override void CalcBar(){
plot1.Set(m_adx_indic.Plots[0].Values[0]);
}
}
}

User avatar
admin
Posts: 79
Joined: 13 Jul 2005
Has thanked: 41 times
Been thanked: 122 times

Re: MULTICHARTS .NET 8.8 BETA 1

Postby admin » 18 Oct 2013



Return to “MultiCharts .NET”