Cancel Alert  [SOLVED]

Questions about MultiCharts and user contributed studies.
Wouter
Posts: 1
Joined: 23 Mar 2018
Has thanked: 2 times

Cancel Alert

Postby Wouter » 23 Mar 2018

Dear Multicharts friends,

made an indicator that indicates on the chart true dots under my candlesticks and indicates on the watch- list, and its full of multiple IF...THEN...ALERT. :D

On the chart it indicates multiples times in a row when it gives one of its rare indications :(

I only would like to use the first indication on the chart and leave it at that. ( so skip the following dots after the first indication dot)

I found out I probably have to use the cancel alert function, but can not find out how to use it.

For example, since it only indicates rarely) and an IF......one of the last 20 candles had an alert.....THEN CANCEL ALERT would be sufficient.

However it doesnt work unfortunately.

Coulkd anyone be of help?

Thanks very much all,

Wouter :)

User avatar
TJ
Posts: 7740
Joined: 29 Aug 2006
Location: Global Citizen
Has thanked: 1033 times
Been thanked: 2221 times

Re: Cancel Alert

Postby TJ » 23 Mar 2018

Please post your codes if you need coding help.

MAZINGUER
Posts: 75
Joined: 06 Jan 2017
Has thanked: 9 times
Been thanked: 25 times

Re: Cancel Alert  [SOLVED]

Postby MAZINGUER » 23 Mar 2018

Hi
I do not know what you want to say, but if what you mean is that after fulfilling a condition, mark a point but only once, even if the condition continues to be fulfilled, maybe you'll be worth the following

Code: Select all


If Condition then begin
If Condition<>Condition[1] then
Plot1 (low,, "Name")
Else
NoPlot(1);
end;


Return to “MultiCharts”