Search found 5 matches

by nightkid00
24 Jun 2014
Forum: MultiCharts .NET
Topic: Multicharts.net build in function
Replies: 8
Views: 3140

Re: Multicharts.net build in function

Thanks. I have another question x = StdDev(MA-MA[1], Period) * z; How can I translate this into MC.Net? fltr_result.Value = PublicFunctions.StandardDeviation(f_result[0]) * z; I used the PublicFunctions.StandardDeviation but the parameter need the double[] nightkid00, please use PublicFunctions.Sta...
by nightkid00
23 Jun 2014
Forum: MultiCharts .NET
Topic: Multicharts.net build in function
Replies: 8
Views: 3140

Re: Multicharts.net build in function

Thanks.

I have another question

x = StdDev(MA-MA[1], Period) * z;

How can I translate this into MC.Net?

fltr_result.Value = PublicFunctions.StandardDeviation(f_result[0]) * z;


I used the PublicFunctions.StandardDeviation
but the parameter need the double[]
by nightkid00
09 Jun 2014
Forum: MultiCharts .NET
Topic: Multicharts.net build in function
Replies: 8
Views: 3140

Re: Multicharts.net build in function

Bars.Close.Summation (in a strategy)

Thanks
What if I want to calculate only current bar and the previous bar , like this :

Diff = AbsValue(Close - Close[1]);
Result = Summation(Diff, Period);

How can I translate this into MC.Net?
by nightkid00
08 Jun 2014
Forum: MultiCharts .NET
Topic: Multicharts.net build in function
Replies: 8
Views: 3140

Re: Multicharts.net build in function

Bars.Close.Summation (in a strategy)

Thanks
But what if I want to calculate this :

Diff = AbsValue(Close - Close[1]);
nb = Summation(Diff, Period);

Is there a way to use the summation function in MC.net?
by nightkid00
05 Jun 2014
Forum: MultiCharts .NET
Topic: Multicharts.net build in function
Replies: 8
Views: 3140

Multicharts.net build in function

Hi
I would like to use the "Summation" function in MC.net
is there any build in function for this ? or I need to build one on my own ?

By the way, where can I see all the build in function and description in MC.net.

Thanks

Go to advanced search