Market Scanner Plot

Questions about MultiCharts and user contributed studies.
iso
Posts: 204
Joined: 08 Feb 2006
Has thanked: 1 time
Been thanked: 1 time

Market Scanner Plot

Postby iso » 08 Feb 2009

Hello,

I am trying to have the market scanner plot when a specific event occurs. For some reason it plots the last event that occurs, so if this event happen 2 days ago it will be plotting it. I only want it to plot when it is happening in the moment. I have done this in TS radar screen for a number of years now but can't get it to work in Multicharts.

ex.

plot1(0);
if cci(50) > 200 then plot1(1);
if cci(50) < 200 then plot1(2);


It seems like there are differences in coding between TS and MC. Does anyone know how this works in MC?

Thanks

User avatar
Marina Pashkova
Posts: 2758
Joined: 27 Jul 2007

Postby Marina Pashkova » 11 Feb 2009

Hi iso,

Code: Select all

plot1(0);
if cci(50) > 200 then plot1(1);
if cci(50) < 200 then plot1(2);
The scanner shows the latest plot value (the current value). If the latest CCI(50) value is greater than 200, it'll show 1, if it's less than 200, the scanner will show 2, if it equals 200 you'll see 0.

iso
Posts: 204
Joined: 08 Feb 2006
Has thanked: 1 time
Been thanked: 1 time

Postby iso » 11 Feb 2009

I agree that it what is supposed to happen, but it isn't.......

User avatar
Marina Pashkova
Posts: 2758
Joined: 27 Jul 2007

Postby Marina Pashkova » 12 Feb 2009

Hi iso,

Do you think you'd be able to contact our support for a remote connection session to demonstrate the problem to us?

Thank you.


Return to “MultiCharts”