changing crossover into " greater than " signal

Questions about MultiCharts .NET and user contributed studies.
shanemcdonald
Posts: 196
Joined: 08 Aug 2012
Has thanked: 41 times
Been thanked: 41 times

changing crossover into " greater than " signal

Postby shanemcdonald » 27 Oct 2013

hi
I changed a keltner signal from a "crossover" to "> greater than" in regular Multicharts, But I cant figure out how to do it in .net.

I want to use the keltner signal with smaller profit targets, which requires a new signal, and the crossover wont work for this.

I cannot see which line to change for this. Any ideas ?


thank you

shane

User avatar
JoshM
Posts: 2195
Joined: 20 May 2011
Location: The Netherlands
Has thanked: 1544 times
Been thanked: 1565 times
Contact:

Re: changing crossover into " greater than " signal

Postby JoshM » 28 Oct 2013

I changed a keltner signal from a "crossover" to "> greater than" in regular Multicharts, But I cant figure out how to do it in .net.

(...)

I cannot see which line to change for this. Any ideas ?
Like this?

Code: Select all

if (10 > 5)
{
Output.WriteLine("10 is greater than 5");
}

if (1 < 20)
{
Output.WriteLine("1 is less than 20");
}


Return to “MultiCharts .NET”